Recherche avancée

Médias (91)

Autres articles (101)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

Sur d’autres sites (8243)

  • Browser MediaRecorder API - video controls not working / headers set incorrectly ?

    7 avril 2017, par leo

    I’m trying to record a webcam video in the browser and save the stream on a node server.

    Approach with MediaRecorder API

    // CLIENT
    // Init MediaRecorder with camera stream
    recorder = new MediaRecorder(...)
    // Serialize data and send it to backend
    recorder.ondataavailable = (event) => {
      const reader = new FileReader();
      reader.readAsArrayBuffer(event.data);
      reader.onloadend = function (event) {
        socket.emit('message', reader.result);
      };
    }

    // BACKEND
    // Receive data and append it to the file
    client.on('message', (data) => {
     fs.appendFileSync(filePath + fileName + videoFileExtension, data);
     ...
    }

    Problem

    The first time the video is played in the browser the controls for forward and backwards are not working. Once it has been played, controls are ok.

    Assumption

    My assumption is that the headers are somehow broken.

    Question

    Any ideas how to repair the video captured by MediaRecorder and streamed to the NodeJS ? Or how to save the data chunks properly in a video file so that controls work ?

  • Révision 21269 : Ferme #3187 : réparer le in-reply-to des flux rss des forums

    13 mars 2014, par b b

    on trainait une erreur dans ces flux depuis 5 ans, du coup en réparant je me rends compte qu’il manquait un include pour que le filtre |generer_url_forum_parent fonctionne

  • avcodec/dca_parser : Extend DTS core sync word and fix existing check

    29 avril 2015, par foo86
    avcodec/dca_parser : Extend DTS core sync word and fix existing check
    

    Check extended sync word for 16-bit LE and BE core streams to reduce
    probability of alias sync detection. Previously sync word extension was
    checked only for 14-bit streams (and this check did not properly work
    across buffer boundary).

    Use 64-bit parser state to make extended sync word detection work across
    buffer boundary.

    This is sufficient to make the sample in ticket #4492 parse
    successfully.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dca_parser.c