Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

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

  • Anomalie #2665 : Iterateurs - Boucle YQL - datapath - syntaxe différente en SPIP 2 et SPIP 3

    18 avril 2012, par Fil Up

    c’est un peu plus compliqué car si on utilise un nombre le / initial est obligatoire : /0/truc

  • Differentiate between error and standard terminal log with ffmpeg - nodejs

    9 avril 2017, par Guig

    I’m using ffmpeg in node js. Both the standard terminal output and the error seems to be sent to stdout, so I don’t know how to differentiate between error and success... Here’s my code :

    var convertToMp3 = function(filePath) {
     var ffmpeg = child_process.spawn('ffmpeg',['-i', filePath, '-y', 'output.mp3']);
     var err = '';
     ffmpeg.stderr
       .on('data', function(c) { err += c; })
       .on('end', function() { console.log('stderr:', err); });
     var d = '';
     ffmpeg.stdout
       .on('data', function(c){d +=c;})
       .on('end', function(){ console.log('stdout', d); });
    }

    wether the conversion succeeds or fails, stdout is empty and stderr contains what I’d get if I’d run the corresponding command in the terminal

  • Differentiate between error and standard terminal log with ffmpeg - nodejs

    21 octobre 2018, par Guig

    I’m using ffmpeg in node js. Both the standard terminal output and the error seems to be sent to stdout, so I don’t know how to differentiate between error and success... Here’s my code :

    var convertToMp3 = function(filePath) {
     var ffmpeg = child_process.spawn('ffmpeg',['-i', filePath, '-y', 'output.mp3']);
     var err = '';
     ffmpeg.stderr
       .on('data', function(c) { err += c; })
       .on('end', function() { console.log('stderr:', err); });
     var d = '';
     ffmpeg.stdout
       .on('data', function(c){d +=c;})
       .on('end', function(){ console.log('stdout', d); });
    }

    wether the conversion succeeds or fails, stdout is empty and stderr contains what I’d get if I’d run the corresponding command in the terminal