Recherche avancée

Médias (91)

Autres articles (62)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (10143)

  • How can I install specific version of in ubuntu 18.04

    5 juillet 2022, par Jayesh_Joshi

    As mentioned above I am working on installing an older version of FFmpeg for testing. Specifically, I want to install version 3.0.10.

    


    I have tried with below command

    


    sudo apt-get install ffmpeg=3.0.10

    


    but it always returns the below error

    


    E : Version '3.0.10' for 'ffmpeg' was not found.

    


  • ffmpeg using php exec on korean filename exit code 1

    8 avril 2019, par Marc

    I can’t convert a video file. Example :

    exec(ffmpeg -i 01.시대조감.wmv 0001.mp4 -hide_banner, $output, $exit_code);

    Just returns exit code -1

  • Heroku. Flask. App works correct on local machine but works incorrect on Heroku

    19 juin 2016, par andrey durov

    I use ffmpeg buildpack.
    heroku run "ffprobe http://91.192.180.66:1935/tv-channels/stream02/playlist.m3u8" works correct.

    My code :

    <?php
    // require('../vendor/autoload.php');
    function run($url){
       $testArr=[];
       exec("timeout 20s ffprobe $url".' 2>&1',$output);
       foreach ($output as $i) {
           if (strpos($i, 'kb/s') !== false) {
       array_push($testArr,$i);
    }
    print_r("test<br />");
       }
       print_r($testArr);
       if ($testArr){
           return "good";
       }
       else{
           return "bad";
       }
    }

    print_r(run("http://91.192.180.66:1935/tv-channels/stream02/playlist.m3u8"));
    return "ok";


    ?>

    It works correct on local machine, and returns :

    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    test
    Array ( [0] => Stream #0:2: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 108 kb/s ) good

    On heroku it works incorrect and returns :

    test
    Array ( ) bad

    My Procfile :

    web: vendor/bin/heroku-php-apache2 web/

    Source :
    https://github.com/taketa/testStream.git

    I’am new in Flask and has no idea how to fix it. Very need your help
    Thanks.