
Recherche avancée
Autres articles (38)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (6265)
-
lavf : Implement ff_brktimegm using gmtime_r
24 octobre 2014, par Martin Storsjö -
How to loop thorough my text file and call the name of picture
17 août 2022, par Ionut BejinariuI need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.


It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.


- 

- I don't know how to make the loop working for the pictures files.
- Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.






Thank you.


In .txt file my pictures are like this :


1.jpg
2.jpg
3.jpg



And my code looks like this :


@echo off
set "sourcedir=E:\test slideshow imagini" 
set "outputdir=E:\test slideshow imagini\1" 
PUSHD "%sourcedir%"
for /F "tokens=*" %%A in (poze3.txt) do (
 echo %%A
 :: pictures names
 for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" 
 POPD
)



-
How to loop through my text file and call the name of picture
18 août 2022, par Ionut BejinariuI need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.


It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.


- 

- I don't know how to make the loop working for the pictures files.
- Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.






Thank you.


In .txt file my pictures are like this :


1.jpg
2.jpg
3.jpg



And my code looks like this :


@echo off
set "sourcedir=E:\test slideshow imagini" 
set "outputdir=E:\test slideshow imagini\1" 
PUSHD "%sourcedir%"
for /F "tokens=*" %%A in (poze3.txt) do (
 echo %%A
 :: pictures names
 for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" 
 POPD
)