Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (58)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7008)

  • avcodec/libvpxenc : Update the "cpu-used" options default to match the "speed" alias

    6 juin 2014, par Rafaël Carré
    avcodec/libvpxenc : Update the "cpu-used" options default to match the "speed" alias
    

    Reviewed-by : James Zern <jzern@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/libvpxenc.c
  • VP8 Codec SDK "Cayuga" Released

    4 août 2011, par noreply@blogger.com (Anonymous)
  • ffmpeg MAMP "dyld : Library not loaded" error

    9 octobre 2013, par benedict_w

    I am using ffmpeg on Mac OSX 10.7.3 in MAMP through PHP's exec() command, I have an absolute path set to call ffmpeg, e.g.

    /opt/local/bin/ffmpeg -i "/sample.avi"

    But I receive the following error -

    dyld: Library not loaded: /opt/local/lib/libjpeg.8.dylib  Referenced from: /opt/local/lib/libopenjpeg.1.dylib  Reason: Incompatible library version: libopenjpeg.1.dylib requires version 13.0.0 or later, but libJPEG.dylib provides version 12.0.0

    N.B. ffmpeg was installed through Macports.

    It works from the command line.

    What to do ?

    EDIT

    I've reopened this - originally thought shell_exec() solved the issue, but infact it should be called differently - and I didn't realise until investigating further today. Here is my code using shell_exec and still giving the error above :

    $cmd = &#39;/opt/local/bin/ffmpeg -h&#39;;
    $cmd = escapeshellcmd($cmd) . &#39; 2>&amp;1&#39;;
    $output = shell_exec($cmd);
    var_dump($output);