Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (13)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • 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 (...)

Sur d’autres sites (3657)

  • Revision 39fe235032 : Merge "SSE2 high precision 32x32 forward DCT"

    13 août 2013, par Jingning Han

    Merge "SSE2 high precision 32x32 forward DCT"

  • 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 = '/opt/local/bin/ffmpeg -h';
    $cmd = escapeshellcmd($cmd) . ' 2>&1';
    $output = shell_exec($cmd);
    var_dump($output);