Recherche avancée

Médias (91)

Autres articles (35)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

Sur d’autres sites (5736)

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

  • 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

  • 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