Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (75)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (14148)

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

  • avfilter/af_biquads : add lattice-ladder form

    2 novembre 2020, par Paul B Mahol
    avfilter/af_biquads : add lattice-ladder form
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/af_biquads.c
  • how can a photo list with title at bottom to form a video in ffmpeg

    21 décembre 2019, par shrw

    I a have 500 images in folder with file name.

    I want a video with 5 seconds delay on each image.

    With title and scrolling text at the bottom.