Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (45)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (2821)

  • 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 ?

  • LoaderLock error in videoreader [duplicate]

    22 août 2016, par Naseer Ahmed

    This question already has an answer here :

    I am getting Following Error

    enter image description here

    Following is my code

    private void btnVideoBrowse_Click(object sender, EventArgs e)
       {
           string videoPath = @"******\video.mp4";
           VideoFileReader reader = new VideoFileReader();
           reader.Open(videoPath);
           Bitmap videoFrame = reader.ReadVideoFrame();
           pcBoxImage.Image = videoFrame;
           videoFrame.Dispose();
           reader.Close();
       }

    Update

    So I tried to use another method

    VideoFileSource video = new VideoFileSource(@"******\video.mp4");

    But I got the same error.

  • Merge commit 'fd8de7f2d8c31195d309247cb129c0ad787ef76e'

    19 mai 2017, par Clément Bœsch
    Merge commit 'fd8de7f2d8c31195d309247cb129c0ad787ef76e'
    

    * commit 'fd8de7f2d8c31195d309247cb129c0ad787ef76e' :
    dxtory : Convert to the new bitstream reader
    apedec : Convert to the new bitstream reader

    This commit is a noop, see
    http://ffmpeg.org/pipermail/ffmpeg-devel/2017-April/209609.html

    Merged-by : Clément Bœsch <u@pkh.me>