
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (24)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (3822)
-
Any way to speed up this side by side video merging FFMPEG command ?
25 mai 2022, par JohnI am taking two mp4 videos and putting them side by side with a slight zoom so it looks better. Right now the best I get is speed at 7x which will still take a long time for an hour-long MP4 video (not to mention the size with ultrafast). Is there anything else I can do ? I thought maybe scaling and cropping first, then combining with copying video and audio but that doesn't appear to be faster.


ffmpeg -y -i input1.mp4 -i input2.mp4 -filter_complex "[0]scale=-2:720,crop=640:720[v0];[1]scale=-2:720,crop=640:720[v1];[v0][v1]hstack;[0:a][1:a]amerge[a]" -strict experimental -map 0:v -map '[a]' -ac 1 -preset ultrafast -vsync 0 output.mp4



-
FFmpeg change video speed with -r vs -filter and setpts
6 mai 2022, par simplesystemsIf I want to change the video speed with ffmpeg,


what exactly is the difference changing the fps :


ffmpeg -y -r 10 -i video.mp4 video_new_fps.mp4


or using filter and setpts :


ffmpeg -i video.mp4 -filter:v "setpts=PTS*3" -an video_new_fps.mp4


It seems that with both options I can speed up or slow down the video.


So which one should be used in which case ?


-
Storing high quality video stream (from IP Action Camera) continuously to a Storage Device and issues around Write-Speed bottlenecks
21 mai 2017, par AldoI am looking to get an Action Camera (Eken H8R, or a GoPro) for a project. Let me explain the scenario I have :
I will obtain a live stream from the camera on to a Raspberry Pi (over WiFi) as shown here. Next, I want to continuously segment this live stream into 10-15 minute video clips and store them in an external Hard Drive (which is connected to the RPi). I am considering this thread, and the
avconv
command mentioned in the answer by Alexander.Now, my concern is write-speed limitations. The video stream would probably have a high bitrate, and might be 4k30fps, in which case file sizes would be huge. Would write speed to disk be a bottleneck ? If so, how will the Pi maintain a buffer to achieve this ? Could I run out of space as the memory stick on the Pi would only be around 8 gigs ? If so, what’s a better alternative ? Please correct me if I’m wrong on these as I’m only a beginner.