Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (77)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6941)

  • lavf : Use RTP_MAX_PACKET_LENGTH instead of 1500

    5 avril 2013, par Andrew Van Til

    lavf : Use RTP_MAX_PACKET_LENGTH instead of 1500

  • rtsp/rtp_read_header : Use RTP_MAX_PACKET_LENGTH instead of 1500

    5 avril 2013, par Andrew Van Til

    rtsp/rtp_read_header : Use RTP_MAX_PACKET_LENGTH instead of 1500

  • reading ffmpeg output and sending it to a form

    3 juillet 2013, par Aeon2058

    I can run arguments through ffmpeg just fine, but I need to be able to read its output LIVE as it streams (as you may know, ffmpeg can take a while, and it updates its stderr twice a second with current frame, etc).

    I have a form called prog that was declared globally with ProgressForm prog = new ProgressForm(); The user inputs a folder of video files, some data is gathered, and then a button is pushed to start the encoding process with ffmpeg. The button_click event creates a new thread like so :

    runFFMpeg = new Thread(run_ffmpeg);
    runFFMpeg.start();

    runFFMpeg was initialized globally earlier with private Thread runFFMpeg;.

    Now I have the method run_ffmpeg :

    private void run_ffmpeg()
    {
       string program = "C:\\ffmpeg64.exe";
       string args = //some arguments that I know work;

       ProcessStartInfo run = new ProcessStartInfo(program,args);
       run.UseShellExecute = false;
       run.CreateNoWindow = true;
       run.RedirectStandardOutput = true;
       run.RedirectStandardError = true;
       Process runP = new Process();
       runP = Process.Start(run);
       runP.WaitForExit();

       //NOW WHAT?

    }

    I'm not sure what to do now to get the data LIVE, but if I can, I would be updating prog, which has a number of controls, including progress bars, etc. Typical output (that I'm interested in) looks like "frame= 240 fps= 12.8 q=0.0 size= 1273802kB time=00:00:08.008 bitrate=4415.2kbits/s dup=46 drop=0". I know how to parse that to get what I need, I just need that line !