
Recherche avancée
Autres articles (40)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...) -
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)
Sur d’autres sites (9254)
-
FFMPEG How to apply subtitles [ass] on a live video stream
19 août 2014, par LewisouI am going to develop a camera recording application.
One of the feature is to apply subtitles while recording. Users can key in subtitles on the camera preview screen when the camera is recording.
I know I can apply the subtitles after the record is finished by running :
ffmpeg -i ./file.mp4 -c:v libx264 -c:a copy -vf "ass=t.ass" out.mp4
but which takes a very long time. So it will be better to do it on the fly (while recording a video).
Notice : the subtitle itself is also a live-stream.
Any one help ?
-
Convert animated GIF to MP4 in PHP [on hold]
26 juillet 2014, par user3878839How do I do that ? I only know that you’d use FFMPEG, but I don’t know exactly how. Also, in the process, can I resize the images and set the video’s frame rate ? By the way, I have imagick if that helps.
-
Add sound tracks to a video file with FFmpeg [on hold]
26 juillet 2014, par user3877422I look this page : https://zoid.cc/ffmpeg-audio-video/ but i don’t understand how to add multiple audio to a video, i have a problem.
My video length : 04:30
My audio1 length : 01:30
My audio2 length : 02:00I tried :
ffmpeg -i vid.avi -i audio1.wav -i audio2.wav -map 0:0 -map 0:1 -map 1:0 -map 2:0 -c:v copy -c:a copy output.avi
FFMpeg set is video length for audio1.wav length (01:30)
I want add audio but not change video length (04:30)
How to fix this problem ?Thanks for help.