Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (58)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7089)

  • How to avoid child process termination

    10 août 2022, par Akbar Basha

    Basically, I am running one exe file using execFile method from the child process...

    


    That exe file used ffmpeg for some conversion... If ffmpeg throws some error (Basically it won't affect the actual process) my child process is terminated automatically because the error has been captured...

    


     this.recorder = execFile(`"${BIN}"`, command, { shell: true, maxBuffer: (1024 * 1024 * 2) }, (error) => {
                if (error) {
                    log('error', 'Recorder error', error);
                }
            });


    


    Is there any way to prevent this ?

    


  • ffmpeg to get a particular frame number as image with motion vectors drawn into it

    26 février 2018, par helmo

    I am looking for ways to get this output from ffmpeg :

    enter image description here

    Basically, I would like to pass to the shell, a command that allows me to output a particular frame number (say frame number 200) with the motion vectors drawn into it.

    Any clue ? Thanks in advance.

  • Converting a sequences of images to a video with ffmpeg

    3 mars 2014, par lnepal

    I'm trying ffmpeg to convert sequence of images to a single video, but nothing happened and no any error message is shown. Below is the shell command I've used (invoked via PHP's shell_exec) :

    ffmpeg -i events/dream_theatre.jpg events/output.avi &

    I just want to test first with single image and trying this in shared hosting server. No error message or any message is shown with this. I've a root access to server machine.