
Recherche avancée
Autres articles (68)
-
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 (8650)
-
fate/ffmpeg : Fix test requirements
25 mai 2022, par Andreas Rheinhardt -
FFMPEG add two mp3s to video, with additional requirements
1er juillet 2022, par VinceI have a sort of unique use case that I need an ffmpeg command for. I have a video, and I need to add two mp3s to it. There are some additional requirements for these files :


- 

- First mp3 : a music file

- 

- loop for the length of the video
- fade out for 2 seconds at the end
- set volume to 30%








- Second mp3 : a voiceover file

- 

- do NOT loop
- do NOT fade out
- volume should be 100%














I have a command that accomplishes everything I need with the first mp3. I'm hoping I can modify this command to accomplish what I need in a single step. But if multiple steps are necessary, that is also ok. Here's the command I'm currently using :


ffmpeg -y -i video.mp4 -stream_loop -1 -i musicFile.mp3 \
 -af apad,afade=type=out:start_time=118:duration=2 \
 -map 0:v -map 1:a -c:v copy -shortest video_final.mp4



- First mp3 : a music file

-
avcodec/pixlet : consider minimum plane header in the minimal packet size
30 avril 2022, par Michael Niedermayeravcodec/pixlet : consider minimum plane header in the minimal packet size
Fixes : Timeout
Fixes : 46956/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PIXLET_fuzzer-5698161106092032Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>