Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (99)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (8239)

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

    


  • static declaration of lrint follows non static declaration "-wfatal errors"

    4 juin 2014, par Smith

    I have trying building ffmpeg library for android from centos (version 6.5). I have download source form ffmpeg-android

    I have follows the command that mentioned in given link to build ffmpeg library. When I have tried to run ./config_make_everything.sh this shell command then I got following error shows in attached screenshot :
    Error

    Please help me what I did wrong ?

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