
Recherche avancée
Autres articles (94)
-
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 (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
Sur d’autres sites (7240)
-
lavc/videotoolboxenc : support additional options
20 mai 2023, par Rick Kernlavc/videotoolboxenc : support additional options
Added support for more VideoToolbox encoder options :
qmin and qmax options are now used
max_slice_bytes : Max number of bytes per H.264 slice
max_ref_frames : Limit the number of reference frames
Disable open GOP when the cgop flag is set
power_efficient : Enable power-efficient mode
Signed-off-by : Rick Kern <kernrj@gmail.com>
-
Generate and concatenate videos from images with ffmpeg in single command
17 août 2022, par YulkyTulkyMy goal is to generate a video from images. Let's say I have 2 images
1.png
and2.png
.

I can do


ffmpeg -loop 1 1.png -t 3 1.mp4



ffmpeg -loop 1 2.png -t 5 2.mp4



to create a 3 second video from the first image and 5 second video from the second image.


Then, I merge the two videos using


ffmpeg -i 1.mp4 -I 2.mp4 -filter_complex "concat" final.mp4 



to create my final 8 second video.


This process seems extremely inefficient, and I feel I do not have to use all this processing power+disk reading/writing to create 2 intermediary video files when I only want the one final video.


Is there a way to execute this entire process in one ffmpeg command (efficiently) ?


-
How to merge list of videos with frame specifiec order using ffmpeg ?
9 décembre 2015, par Il'ya ZheninI have a list of files :
even_0.avi
odd_0.avi
even_1.avi
odd_1.avi
...
even_n.avi
odd_n.aviAnd I want to merge them in a single video file in such a way, that zero frame would be taken from
even_0.avi
, first frame fromodd_0.avi
, second - fromeven_0.avi
and so on.And if all frames in
even_0.avi
are taken, then next frame we will take fromeven_1.avi
, next fromodd_0.avi
, next again from even_1.avi. Basically, when one video ends, we just start taking frames from the next video with prefix "even_
" or "odd_
".I just started using ffmpeg, know, how to simply merge videos, change resolution, fps and so on, but this is beyond my power, so, please, help.