Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (94)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (10083)

  • 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

  • Could not find class file in terminal

    7 avril 2016, par nav123

    I am trying to run this command in terminal window of android studio

    D :\android_workspace\VideoMaker>"C :\Program Files\Java\jdk1.8.0_65\bin"\javah -d jni -classpath C :\Users\ST_003\AppData\Local\Android\sdk\platforms\android-19\android.jar ;....\buil
    d\intermediates\classes\debug com.videomaker.videomaker.app.MainActivity

    but getting error

    Error : Could not find class file for ’com.videomaker.videomaker.app.MainActivity’.

    Please Help.