Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (58)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (9050)

  • Get data from native process on Android

    22 octobre 2013, par Gonzalo Solera

    I´m converting a video with my app, and I got it using the FFmpeg library. I´m using a static compiled version of FFmpeg and I run my command like this :

           //Conversion video
           try {
               Process p = Runtime.getRuntime().exec("data/data/package/cache/ffmpeg -i "   path   " -g "   String.valueOf(keyFrames)   " -s 720x480 -vcodec libx264 -an -y /sdcard/lowResolution.mp4");
               p.waitFor();
           } catch (IOException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
           } catch (InterruptedException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
           }
           Log.d(TAG, "Video convertido");

    It works well but it takes me too much time, so I would like to put a progress bar, so I should need to read output events of the process (the same output I can see when I execute the command in terminal) in order to know how long will it take or something like that.

    Sorry for my english and thanks for help !!

  • Editing and restreaming rtmp stream in python

    31 mai 2020, par REgorion

    There is an nginx rtmp lan server that is being streamed from OBS. There is a Python script that determines whether there is nsfw content on the screen based on a screenshot. The result is calculated in real time and sent over tcp. The task of another script is to Get the result over tcp - it can do this. Receive a stream from an rtmp lan server and overlay the video stream a second before nsfw content appears. In theory, I need to receive the stream and send it with a delay of a second, and if the signal comes over tcp, then overlay the video.

    



    I don't understand how I can implement this buffer, write stream to it, process it, and publish it. The overlay can be applied via opencv, but the issue of implementing the buffer and posting it remains open. I looked in the direction of ffmpeg, but I don't understand how to organize streaming.

    



    What libraries can help me solve this problem ? Is there any related literature ?

    



    Sorry for my english

    


  • getting ffmpeg progress and pid number in sperated files [closed]

    12 décembre 2020, par kadirgecit

    Hello sorry for my bad english.
I need to output file from ffmpeg and ffmpeg's pid number in seperated files. "output.txt" and "pid.txt".

    


    I tried this command, but I guess it's wrong.

    


    ffmpeg -i "input.mkv" {codecsandotherstuf} out.mp4 -y 1> output.txt 2>/dev/null & echo $! >pid.txt


    


    this command gives me nothing.. How can i get theese sperated files ?

    


    Edit : I need an output like this : https://pastebin.pl/view/6bb017a1

    


    What i tried ? :

    


    out.mp4 -y 1>/dev/null 2> output.txt & echo $! > pid.txt
out.mp4 -y 1> output.txt & echo $! > pid.txt
out.mp4 >& output.txt & echo $! >pid.txt


    


    This codes alway giving me an empty output.txt