
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (34)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (5742)
-
How to play random part of mp4 file with vlc or something else ?
13 septembre 2011, par pprzemekI have random part (99,9% somewhere in the middle) of the mp4 file. Problem is that it's not in any container or anything just a binary piece of the file in random offset and send to me... it will keep growing but it'll take a while and I need to play content right away.
I can get all necessary metadata information for that file from other source before I even start receiving those binary data, but :
- How to do this ? I mean what headers do I need and how to get them ?
and - How to later tell vlc (or maybe some other player) that this moov atom (or some other data) that it should use for this part of the file and start playing it ?
- How to do this ? I mean what headers do I need and how to get them ?
-
ffmpeg : cut video but getting the wrong length
2 août 2024, par nathan wuI'm using ffmpeg to cut a video.
Here is the input information :



Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 5113 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)




And this is the command I use :



ffmpeg -y -ss 10 -t 5 -i test.mp4 -c copy output.mp4




But the output duration is about 9.66 seconds.



It worked when I removed the '-c copy' option or the input doesn't contain the 'tv, bt709' tag. But it's slower.



I wonder how I can use '-c copy' and get the right piece of video I need ?


-
Up-mix Stereo to 5.1 with FFMPEG, filtering each channel [closed]
2 octobre 2020, par JimI developed this to transform stereo to 5.1 :


ffmpeg -i d:\man.mp4 -c:v mpeg2video -b:v 8M -maxrate 12M -bufsize 4M -filter_complex "pan=5.1|FL=FL|FR=FR|FCcode>


Note : this also does an mp4 to mpeg2 conversion


The issue is that the dialog is on all the channels and it doesn't sound like real 5.1. What I would like to do is apply a bandpass filter to just the center channel to focus on the dialog piece. I then want to apply an opposite notch filter to the rest of the channels to focus on everything but the dialog.


Been doing a lot of searching and coming up empty. Many thanks for a nudge in the right direction.