Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (59)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

Sur d’autres sites (8506)

  • How to cut a video in specific start & end time in ffmpeg by Node JS ?

    26 juin 2015, par Nazmul Hossain Bilash

    I want to cut a video in specific start & end time & save it. I am able to copy a full video but cant understand to how to cut specific time of that video by Node JS.

    Video copy code :

     ffmpeg('public/'+req.body.video)
       .on('end', function(err) {  
           if(!err)
           {
             console.log('Done');

           }                

       })
       .on('error', function(err){
           console.log('error: '+err);
           callback(err);
       }).run();
  • configure : Include time.h when checking for gmtime_r and localtime_r

    10 avril 2019, par Martin Storsjö
    configure : Include time.h when checking for gmtime_r and localtime_r
    

    These functions are available in time.h (conditional on posix thread
    safe functions) on mingw.

    Previously, these functions weren't detected by configure, and
    libavutil/time_internal.h provided replacements, even if time.h
    actually contained definitions of them.

    These mingw inline functions are currently defined as
    "extern __inline __attribute__((__gnu_inline__))". In this case,
    redefining a new static inline version of the same function with the
    same name is tolerated.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • download livestream real-time data

    15 juillet 2024, par Chenguang He

    I'm working on a project to design a RTMP server in Java to get livestream data and download to flv file. One requirement is that to capture the real-time data, I need to download the recording for every second instead of downloading entire recording when livestream stop. Is there any way to achieve it ? Thanks

    &#xA;

    tried to download stream into byte array for every second and decode to flv using H.264 but didn't work.

    &#xA;