Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (50)

  • 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

  • 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

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

Sur d’autres sites (9573)

  • FFMPEG exec exit code 126

    17 mai 2020, par Ali Lord

    here is my code for FFMPEG

    



    $mp3path=realpath("1.mp3");&#xA;$cmd = "/usr/include/ffmpeg -i $mp3path -ab 128 /home/swiftfa1/public_html/output.mp3 2>&amp;1";&#xA;exec($cmd, $output, $value);&#xA;echo &#x27;<pre>&#x27;; print_r($output); echo &#x27;</pre>&#x27;;&#xA;echo &#x27;<pre>&#x27;; print_r($value); echo &#x27;</pre>&#x27;;&#xA;exit;&#xA;

    &#xA;&#xA;

    and here is my result :

    &#xA;&#xA;

    Array&#xA;(&#xA;    [0] => sh: /usr/include/ffmpeg: Is a directory&#xA;)&#xA;126&#xA;

    &#xA;&#xA;

    I used whereis for ffmpeg path and searched a lot but can't solve my issue. any command returns 126 !

    &#xA;

  • editly - Where can I get the return value after a video is created ?

    21 février 2021, par rom

    Quick question...

    &#xA;

    Following along the README of editly, I managed to create videos after calling editly like this :

    &#xA;

        // create video&#xA;    editly(editSpec)&#xA;        .catch(console.error);&#xA;

    &#xA;

    Unfortunately, I am using ExpressJS to do this and I need to send back a response when video creation completes.

    &#xA;

    However, when I tried to extract any value using .then, it returns undefined :

    &#xA;

        // create video&#xA;    editly(editSpec)&#xA;    .then(r => {&#xA;        console.log(`Is this undefined? Probably yes! r: `, r)&#xA;        res.json(r)&#xA;    })&#xA;        .catch(console.error);&#xA;

    &#xA;

    How can I accomplish this ?

    &#xA;

  • wavdec : refactor wav_read_header()

    19 décembre 2014, par Thomas Volkert
    wavdec : refactor wav_read_header()
    

    Make it more readable and display an error message in case an invalid
    header is detected (the current version just returns
    AVERROR_INVALIDDATA)

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/wavdec.c