Recherche avancée

Médias (91)

Autres articles (25)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (3781)

  • FFMPEG is dead for Android ? [closed]

    22 avril 2021, par user15672558

    Correct me if I'm wrong,
But After wasting enough time I have come to conclusion that Google trying to Cancel FFMPEG (No More Open Source shit :P),
Almost every existing build for android has failed,
I tried them All,
please check the ones you have worked before and let me know, so that I will move on to something else,

    


    permission denied error 13


    


    Thanks

    


  • dvr rtsp to website (iOS and android)

    25 février 2018, par SMITSEC

    I need help. I have a dvr and I need show my camera at website. Now I transform with ffmpeg rtsp to m3u8 and play with hjs. Show with chrome (pc) but don’t show at IPHONE Android. How can I do that ? P.S I don’t need wowza and another paid media server (too much expensive). I have Centos vps

  • Issues with android-ffmpeg on Anroid Lollipop

    9 janvier 2015, par Unnati

    I am working on an application which mixes audio and video.

    I am following android-ffmpeg guardianproject to solve my purpose. The issue is that it works fine till Android Kitkat. But the process fails on Android Lollipop.

    Here is my code to run the process

    ProcessBuilder pb = new ProcessBuilder(cmd);
    pb.directory(fileExec);

    //  pb.redirectErrorStream(true);
    Process process = pb.start();    

    // any error message?
    StreamGobbler errorGobbler = new
    StreamGobbler(process.getErrorStream(), "ERROR", sc);            

    // any output?
    StreamGobbler outputGobbler = new
    StreamGobbler(process.getInputStream(), "OUTPUT", sc);

    // kick them off
    errorGobbler.start();
    outputGobbler.start();

    int exitVal = process.waitFor();
    sc.processComplete(exitVal);
    return exitVal;

    How can i solve this for Lollipop ? Are there any additional files that i should include for solving this for Lollipop ?