
Recherche avancée
Autres articles (67)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10117)
-
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.