Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (30)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7497)

  • Documentation updates

    1er août 2011

    m doc/download/index.html m doc/getstarted/index.html m doc/index.html Documentation updates

  • Installer la version actuelle de ffmpeg

    18 août 2011

    La dernière version de FFmpeg stable est la :

    • 0.7.3 ;
    • 0.7.4 ;
    • 0.7.5 ;
    • 0.7.6 (2011-10-02) ;
    • 0.7.7 (2011-11-04) ;
    • 0.7.8 (2011-11-21) ;

    On est encore obligé de rester en 0.7.X car ffmpeg2theora ne supporte pas la nouvelle API de ffmpeg en version 0.8.

    Il faut mettre à jour les scripts d’init pour prendre en compte cette nouvelle version.

    cf : http://ffmpeg.org/download.html

  • How do I use piping with ffmpeg ?

    25 janvier 2016, par DiglettPotato

    My goal is to use wget to download an flv file, and pipe the output to ffmpeg to convert it to an MP3. This way the user can download the MP3 without waiting for the FLV to download to my server first. I’ve been playing around with it, and it seems that ffmpeg can only do piping on raw video. So I was working with something like this :

    wget -O - 'videoinput.flv' | ffmpeg -y -i - -vcodec rawvideo -f yuv4mpegpipe - |  ffmpeg -y -i - -ab 128k audiooutput.mp3

    Anybody have experience with this type of on-the-fly ffmpeg encoding process ?