Recherche avancée

Médias (91)

Autres articles (39)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip 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, par

    Cette 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, par

    Les 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 mankoff

    To 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.ogg

    test.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 DD3R

    I 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 Picture

    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œsch
    avcodec/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.

    • [DH] libavcodec/vp9.c