
Recherche avancée
Autres articles (94)
-
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 (...) -
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 (...) -
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 (...)
Sur d’autres sites (5624)
-
How to convert 4:3 video to 16:9 without stretching the original in ffmpeg
5 novembre 2016, par carvilI would like to convert some 4:3 videos that I took on an iPhone to 16:9, by adding black bars to both sides instead of stretching the video.
I tried something like this without success :
ffmpeg -y -i input.mov -aspect 1.7777777777777777 -s 640x360 output.mp4
Even though the output has the correct size, the video is stretched, which is not what I want.
How can I keep the proportion between the width and height of the original video, and add extra black bars to both sides to avoid stretching ?
This would be similar to how YouTube does it when uploading a video from an iPhone directly to YouTube.
Thanks !
-
Recommendation on the best quality/performance H264 encoder for video encoding ?
20 août 2013, par kheyaI am looking for a video encoder that is fast, requires less CPU power and produces very good quality mp4 video.
The input videos can be in any format and uploaded by users.
Only thing I know is FFMPEG library.
Is there anything else that is better ?
The program must have a batch utility (exe) that I am interested in.
I would appreciate if you kindly share your knowledge.
Thanks
-
How to trim multiple videos and position them to specific position using -filter_complex ?
16 décembre 2023, par Pavlo HolotiukHow do I mix several videos and have them not overlap each other ?
I need to use -filter_complex as I cram many more commands there and seems weird how when I trim video its frames remain and overlap with the other video. I also use tpad to paint the video black where it supposed to be cut but it just makes black images to overlap with other videos instead.


How do I trim and position videos with mix and make sure their frames do not overlap in result ?
Here's the version vithout tpad


./ffmpeg.exe -i input1.mp4 -i input2.mp4 -filter_complex "[0]trim=start=0:end=5[t0];[1]trim=start=5:end=10[t1];[t0][t1]mix=inputs=2" ./output.mp4


It produces such overlapping frames



When adding tpad overlapping changes to mix of frame and black image


./ffmpeg.exe -i input1.mp4 -i input2.mp4 -filter_complex "[0]trim=start=0:end=5[t0];[1]trim=start=5:end=10,setpts=PTS-5/TB,tpad=start_duration=5:start_mode=add:color=black@0x00[t1];[t0][t1]mix=inputs=2" ./output.mp4




The alpha in tpad doesn't seem to do anything either.