
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 (39)
-
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 -
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. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (8595)
-
Can't Stream Ogg From ffmpeg Through stdout
16 janvier 2012, par dave mankoffTo get the the crux of it, why does the first command work, but the second command does not. They produce slightly differently sized files with different contents :
ffmpeg -i test.wav -f ogg -acodec libvorbis test.a.ogg
ffmpeg -i test.wav -f ogg -acodec libvorbis - > test.b.oggtest.a.ogg will play properly and has no problems. test.b.ogg starts in the middle of the source audio and has stops and gaps in the audio. It also does not report the length of the track.
I want to transcode source files on the fly into ogg for a program I am writing and I am trying to pipe the stdout from ffmpeg into my program. Putting the results into an intermediary file will kill performance since the transcoding is supposed to happen on demand.
-
ffmpeg very high bitrate when converting with libxvid
8 août 2017, par DD3RI was using this batch file to drag and drop convert mkvs into avi, while letterboxing to 16:9 720p. It worked great, result was about 2-2.5 mbps bitrate file.
Suddenly about two weeks ago it got really slow. Starts at 60000 kbps and quickly descends to about 8000 and then slowly continues going down. after 5 minutes of video it stabilizes at 5200 kbps. edit : after 13 minutes 3200 kbps and speed is still dreadful at 2x. It wasn’t very high before but it was about 5-6x
ffmpeg -i "%~1" -vf "scale=(iw*sar)*min(1280/(iw*sar)\,720/ih):ih*min(1280/(iw*sar)\,720/ih), pad=1280:720:(1280-iw*min(1280/iw\,720/ih))/2:(720-ih*min(1280/iw\,720/ih))/2" -c:v libxvid -qscale:v 3 -c:a libmp3lame -qscale:a 2 "%~1"-ws-va.avi
changing qscale to 10 stabilizes bitrate at about 2300, but quality looks horrible, and speed isn’t increasing much.
I didn’t update ffmpeg, any idea why this sudden change ?
-
avcodec/vp9 : assert on sane size in update_size().
16 novembre 2013, par Clément Bœschavcodec/vp9 : assert on sane size in update_size().
w and h are both read as uint16 + 1 so this can not happen. A similar
change was introduced in 97962b2 / 72ca830, with the
av_log()+AVERROR_INVALIDDATA form, suggesting it could be triggerable
somehow.Change suggested by Ronald S. Bultje.