
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (110)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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) (...)
Sur d’autres sites (10683)
-
Adding srt to mkv doesnt work if a file has an image attached
7 mai 2022, par Renox92I'm trying to add an srt subtitle to an mkv file, but it doesn't work as expected, unless I omit the stream with poster image.


The command I originally used :


ffmpeg -i 1.mkv -i 2.srt -map 0 -map 1 -c copy 3.mkv



For 1.mkv the streams are :


0:0 video
0:1 audio 1
0:2 audio 2
0:3 srt subtitle
0:4: Video: mjpeg (Baseline), yuvj422p(pc, bt470bg/unknown/unknown), 353x500, 90k tbr, 90k tbn, 90k tbc (attached pic)
 Metadata:
 filename : poster.jpg
 mimetype : image/jpeg



But what I got was a second subtitle only displaying the very first line, and not showing anything after that.


Omitting poster made things work, and and adding it back later didn't break anything either.


ffmpeg -i 1.mkv -i 2.srt -map 0 -map -0:4 -map 1 -c copy 3.mkv
ffmpeg -i 1.mkv -i 3.mkv -map 1 -map 0:4 -c copy 4.mkv 



So I thought it might be an order thing, but running


ffmpeg -i 1.mkv -i 2.srt -map 0 -map -0:4 -map 1 -map 0:4 -c copy 3.mkv



doesn't work. What's the problem here ?


-
Avconv / FFmpeg - VOB to mp4
26 septembre 2017, par 0ne_UpI am using avconv/ffmpeg to convert VOB files copied from a DVD to mp4. The command I’m using is
avconv -i "concat:1.VOB|2.VOB|3.VOB|4.VOB|5.VOB" -c:v libx264 -crf 28 -c:a libvo_aacenc -b:a 128k output.mp4
This is working, but I’ve seen many different commands using different kinds of arguments, and I’m wondering if this is the "right" way to do it, and if someone has suggestions about which arguments I should (not) use and why (not). The file should be compatible with mobile devices and smart TV’s. I’ve also seen "libmp3lame" being used as audio codec, is it better to use AAC or MP3 ?
The file size is 732.6MB for a video lasting 00:58:37, is this reasonable ?
Maybe I can use something to reduce the filesize further without too much quality loss ?I’m also confused about the difference between Avconv and FFmpeg. I thought that FFmpeg is deprecated and Avconv is "newer and better", I have two installations of Linux Mint, when I run "avconv —help" on a 17.1 installations I see
avconv version 9.20-6:9.20-0ubuntu0.14.04.1, Copyright (c) 2000-2014 the Libav developers
And when I run the same command on a 18.1 installation I see
ffmpeg version 2.8.11-0ubuntu0.16.04.1 Copyright (c) 2000-2017 the FFmpeg developers
Is avconv newer than ffmpeg or is it just a different name for the same thing ?
-
Revert "mov : Change DTS-based seek into CTS-based seek."
28 février 2015, par Martin StorsjöRevert "mov : Change DTS-based seek into CTS-based seek."
This reverts commit 4abfa387b8234736f6e0e541951e3d5eb60eb843.
This commit broke playback of fragmented mp4 files with b-frames.
While investigating this, it turned out that the general framework
isn’t ready for a PTS-based index yet. Revert this change until
a better thought out solution is in place.Signed-off-by : Martin Storsjö <martin@martin.st>