
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (53)
-
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (4406)
-
How to use ffmpeg to concatenate two videos of different aspect ratios ?
10 décembre 2012, par sabesI have two videos, one 640x480 and one 480x640 and I want to use ffmpeg to concatenate them together, but I want the resulting video to be 640x640 with both of the videos letterboxed. Is there a way to do this ?
-
Append two videos without duplicating FFMPEG
10 septembre 2021, par Hasindu LankaLet's say we have 2 video files (X,Y) in the same format, codec and dimensions.


X is a longer video with several gigabytes in size. Y is a short 10 second video. I want to append Y to the end of X without creating another copy of X (Because it's big in size)


I have to repeat this process for hours with many 10 second videos arriving one after another.


Currently, I'm concatenating files using ffmpeg.


ffmpeg -f concat -safe 0 -i chunk.list -c copy final-video.mkv


chunk.list
contains file names of X and several 10 second videos. After this, X will be deleted and replaced byfinal-video.mkv
. Then, repeat.

But this needs twice the storage capacity and I/O operations. How to do this without creating duplicates ?


It's okay to duplicate these 10 second videos. But duplicating that bigger file
X
really hurts performance.

Additional info :


All these videos will be encoded with H264, H265, VP8 or VP9 and contained in MKV or MP4 as they are
codec copy friendly
. Only one of these formats will be used.

This is for a special case screen recorder that's supposed to run on cloud and preemptive remote desktops (Linux).
HTML/JS browser front-end captures the screen and sends to the back-end (Golang) as chunks through HTTP. Network route is undefined and unreliable as there can be firewalls/proxies between the front-end and the back-end. Therefore, we can't use connections like UDP. So the only option is to send video chunks using HTTP.


It's FOSS on https://github.com/HasinduLanka/screencorder


-
How to concatenate two videos and crop only one of them by using ffmpeg
12 septembre 2013, par TetsuI want to concatenate two videos.
First video size is 720x420, and I want to crop 8px each side.
Second Video size is 704x420, and I don't need to crop.And I want to resize the video 640x360 with encoding.
How can I do it ? If both videos should be cropped, I can easily concatenate the videos like this.
ffmpeg -i input1.avi -i input2.avi -filter_complex "concat=n=2:v=1:a=0, crop=704:420:8:0" -s 640x360 -vb 900k -an video.mp4
How can I crop only one of the two videos ?