
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (72)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...)
Sur d’autres sites (7128)
-
How to use stack filters in fluent-ffmpeg
19 septembre 2018, par AbhilashI have executed the below code with ffmpeg to create an output with two input videos side by side and their audio combined.
ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "[0:v][1:v] hstack=inputs=2[v]; [0:a][1:a] amerge [a]" -map "[v]" -map "[a]" -ac 2 -shortest output.mp4
Can any one please tell me what is it’s equivalent code in fluent-ffmpeg used in nodejs ?
-
How to stack videos horizontally with their audios combined in ffmpeg in nodejs ?
5 novembre 2018, par AbhilashI have a video calling app which I have implemented using Kurento Media Server. With the Recorder Endpoints from kurento I am able to record the videos of caller and callee separately. After the call I want to combine the videos into a single video. I want to stack the videos horizontally and combine their audios. I have done this using ffmpeg from terminal using complex filters but I want to achieve the same thing using ffmpeg nodejs library. Please help me. Thanks in advance.
-
Stack input streams and stagger in ffmpeg
12 décembre 2018, par ChrisI have 3 input videos I want to stack vertically. I want the 3rd to play immediately and have the second start when the 3rd finishes. The command I currently have working is below :
ffmpeg -i test.mp4 -i test2.mp4 -i test3.mp4 -filter_complex "[0:v]scale=320:240[top];[1:v]scale=320:240[mid];[2]scale=320:240[bot];[top][mid][bot]vstack=inputs=3[v]" -map "[v]" -map 1:a -t 60 out.mp4
This works, but all 3 start immediately and only the audio from clip #2 is mapped. I’d like to tell ffmpeg to copy both audio streams but stagger the clips so that clip 3 plays, then clip 2 plays, both with their respective audio. Is this something that ffmpeg filters can do ?