
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (49)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (...)
Sur d’autres sites (6084)
-
libavcodec/jpeg2000dec : Fix codeblock decode check
23 juillet 2020, par Gautam Ramakrishnanlibavcodec/jpeg2000dec : Fix codeblock decode check
The codeblock decoder checks whether the mqc decoder
has decoded the right number of bytes. However, this
check does not account for the fact that the mqc encoder's
flush routine adds 2 bytes of data which does not have to be
read by the decoder. The check is modified to account for
this. This patch solves issue #4827Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
FFmpeg covering H264 to H265 without loosing quality
5 septembre 2022, par drekkaI'm looking to convert some mkv files with H264 streams to mkv with H265 streams to save some space. Currently I'm doing this :


ffmpeg -i test.mkv -map 0:v -map 0:m:language:eng -c:v libx265 -c:a copy -c:s copy test-2.mkv



But I notice that the progress is displaying with a low
q
like this

frame= 484 fps=3.2 q=32.6 size= 2560kB time=00:00:20.70 bitrate=1012.9kbits/s speed=0.136x



Not an expert here, but it's my understanding that high quality is around q22-18 with a lower number being better.


So if I want H265 without any lose of quality should I add a
q
argument to set it lower ? Or is that just going to do nothing because the original material isn't great and it's thatq
I'm seeing in the progress display ?

Follow up : The encoding's now finished and much to my surprise the H265 file is not just smaller, but massively smaller. My original test file was 29G in size, the resulting H265 is 1.5G in size. Way smaller than I was expected.


-
FFMPEG - Concat and Alpha transition
4 juin 2018, par Jacques MarcelI’m looking for a FFMPEG expert to help me with some video editing :)
I want to Add Intro & Outro to a lot of videos but I have a problem with "Concat" trying to use a Alpha transition for the Intro, let me explain :
I have 3 files :
1 - Intro (4s), with an 1s Alpha transition at the end of the file (3s => 4s)
2 - Video (2h)
3 - Outro (20s)
I have succeeded to merge my file with this command :
ffmpeg -i Intro.mov -i Movie.mp4 -i Outro.mov -filter_complex
"[0:v:0][0:a:0][1:v:0][1:a:0][2:v:0][2:a:0]concat=n=3:v=1:a=1[outv][outa]"
-map "[outv]" -map "[outa]" output.mp4But I would like to see my 2nd file under the 1st when the alpha transition begin.
Right now the videos just play one after the other and I got black frames during my alpha transition. (2nd video play after the end of the 1st)
If anyone have the time to give me the tips to play my 2nd video before the 1st end
Thanks for your time !