Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (63)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (6166)

  • How to run ffplay as a window-less process ?

    22 août 2019, par S B

    I am running ffplay as a background process which supplies image data to my main UI process. I have set "SDL_VIDEODRIVER = dummy" to suppress the ffplay video being shown in a SDL window.

    The issue is that the ffplay process still appears as an application window (dock, CMD+TAB entries etc.) even if the video output window is not displayed. How can I avoid that ?

  • Number ffmpeg process running

    29 octobre 2022, par GoAmGo

    I'm making a application to create hls channels, my problem is what no can running more than six ffmpeg process at time and i dont know becouse it.

    


    You can see in this video https://www.youtube.com/watch?v=G24KuYMLjsM

    


    The server is apache with php-fpm fcgid and the cuestion is what i can runnig more process whitout problem but i don`t know becouse it limited ffmpeg to six process.

    


    I'm probe all but i think can be a limit in the ffmpeg compitated version ?

    


    When I exec the seven ffmpeg process, ffmpeg say : Conversion Falied !

    


    But I can run others process more with not be ffmpeg , is not a server limit.

    


  • c# Process Arguments and Missing Output

    8 décembre 2017, par Tawm

    I’m using an FFMPEG Process to gather some information on a file :

    private void GatherFrames()
    {
       Process process = new Process();
       process.StartInfo.FileName = "ffmpeg";
       process.StartInfo.Arguments = "-i \"" + filePath + "\"";
       process.StartInfo.RedirectStandardError = true;
       process.StartInfo.UseShellExecute = false;

       if (!process.Start())
       {
           Console.WriteLine("Error starting");
           return;
       }
       StreamReader reader = process.StandardError;
       string line;
       while ((line = reader.ReadLine()) != null)
       {
           outputRichTextBox.AppendText(line + "\n");
       }
       process.Close();
    }

    This seems to works fine. Now I want to get just the FrameRate, and thanks to other posts, I’ve found that ffprobe can be used to do just that :

    public void GetFrameRate()
    {
       Process process = new Process();
       process.StartInfo.FileName = "ffprobe";
       process.StartInfo.Arguments = "-v 0 -of compact=p=0 -select_streams 0 -show_entries stream = r_frame_rate \"" + filePath + "\"";
       Console.WriteLine(process.StartInfo.Arguments);
       process.StartInfo.RedirectStandardError = true;
       process.StartInfo.RedirectStandardOutput = true;
       process.StartInfo.UseShellExecute = false;
       process.StartInfo.CreateNoWindow = false;
       Console.WriteLine(process.StartInfo);

       if (!process.Start())
       {
           Console.WriteLine("Error starting");
           return;
       }

       StreamReader reader = process.StandardError;
       string line;
       while ((line = reader.ReadLine()) != null)
       {
           Console.WriteLine(line);
       }
       process.Close();
    }

    This does not seem to work at all. The process starts, but does not return what I expect to be returned.

    If I run the command manually, I do the following in cmd.exe :

    > e:
    > cd "FILE_PATH"
    > ffprobe -v 0 -of compact=p=0 -select_streams 0 -show_entries stream=r_frame_rate "FILE_NAME.mp4"
    r_frame_rate=60/1

    Note : -show_entries stream = r_frame_rate does not work, only -show_entries stream=r_frame_rate without the spaces.


    I’m not sure how to properly go about doing this with a Process.