Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (108)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (11619)

  • getting ffmpeg to work with php website error 500 or access denied

    1er septembre 2015, par user3725395

    I have two ways without success and different results, with exec method the ffmpeg actually works and creates the output file but then the website crashes with error 500.
    if I use the proc_open method then it runs and creates the log file atest.log in the output store folder, but ffmpeg errors at the end with : store\audio_recording_1441120844021u.mp3 : Permission denied and doesn’t write the file out.

    ffmpeg has IUSR full control permissions and those permissions are also on the store folder.

    any ideas ???

    exec method :-

    $cmd = "ffmpeg.exe -i C:\\Windows\\Temp\\recordings\\".$filename." -i watermark.mp3 -filter_complex amerge -c:a libmp3lame -q:a 4 store\\".$filename;
    echo exec($cmd, $o, $v);

    proc_open method :-

    $cmd = "ffmpeg.exe -i C:\\Windows\\Temp\\recordings\\".$filename." -i watermark.mp3 -filter_complex amerge -c:a libmp3lame -q:a 4 store\\".$filename;
    $pipes = array();
    $descriptors = array(2 => array('file', 'store\\atest.log', 'a'));

    $p = proc_open($cmd, $descriptors, $pipes);
    $done = 0;
    while (!$done)
    {
         sleep(1);

         $status = proc_get_status($p);
         if (!$status['running']) $done = 1;

         echo "STEEL RUN\n";
         // some manipulations with "store\\atest.log"

    }
  • lavc/libopenjpegenc : factorize cinema parameters to it’s own function

    28 janvier 2015, par Jean First
    lavc/libopenjpegenc : factorize cinema parameters to it’s own function
    

    Signed-off-by : Jean First <jeanfirst@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/libopenjpegenc.c
  • doc/filters : Fix texi syntax

    26 juin 2013, par Jean Delvare
    doc/filters : Fix texi syntax
    

    Commit f1efaf837117718e3b4c96336fe9b5f686b1fe30 used parentheses
    instead of curly braces in texi syntax, resulting in warnings when
    the documentation is generated. Fix that.

    Signed-off-by : Jean Delvare <khali@linux-fr.org>
    Cc : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/filters.texi