
Recherche avancée
Autres articles (63)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (...)
Sur d’autres sites (8904)
-
Check for out of bound writes when building tree in bink decoder.
27 septembre 2011, par Laurent AimarCheck for out of bound writes when building tree in bink decoder.
-
Escape 130 (RPL) decoder
16 décembre 2011, par Eli FriedmanEscape 130 (RPL) decoder
Some fixes provided by Paul B Mahol <onemda@gmail.com>
and Michael Niedermayer <michaelni@gmx.at> and me.Signed-off-by : Diego Biurrun <diego@biurrun.de>
Signed-off-by : Kostya Shishkov <kostya.shishkov@gmail.com> -
How do I merge concat and combine script for a single, looping and batch looping script ? [closed]
25 novembre 2020, par code0001Let’s say, I have an audio file Audio1.mp3 in a folder.


I have a script that lists all mp4 files in the same folder into text file i.e concat_list.txt that I use to concat videos.


Normally, to concat the videos I use the script :


ffmpeg -f concat -i concat_list1.txt -c copy -y concatedVideo1.mp4



To join the audio and the concatedVideo1.mp4 I have the following script :


ffmpeg -i audio1.mp3 -i concatedVideo1.mp4 -acodec copy -vcodec copy -shortest newfiles/combinedvideo1.mp4



Questions :


- 

- How do I combine the two scripts (concat and join) ?
- How do I delete the concatedVideo1.mp4 after using it in joining the audio and concated video ?
- How do I change the code if I want to repeat the process for the same mp3 file to loop for example 5 times ? i.e 5 video outputs ? It must be looped because I will use different concat_list.txt not to have the same concatedVideon.mp4.
- How do I change the code if I want to adapt it to second third …mp3 files for example 5 audio files in batch ?
- How do I combine step 3 and 4. i.e run script for five audios each having five video outputs (total 25 video outputs) ?