Questions tagged [ebml]

3 questions
9
votes
2 answers

How to play WEBM files individually which are created by MediaRecorder

For recording audio and video, I am creating webm files under the ondataavailable of MediaRecorder API. I have to play each created webm file individually. Mediarecorder api inserts header information into first chunk (webm file) only, so rest of…
Suman Bogati
  • 6,289
  • 1
  • 23
  • 34
7
votes
2 answers

Not able to create seekable video blobs from mediarecorder using EBML.js - MediaRecorder API - Chrome

Using media recorder, I am able to upload and append the video blobs on azure. But combined video is not seekable on download with following code - var chunks =[]; var mediaRecorder = new MediaRecorder(stream,…
Kg7
  • 75
  • 1
  • 6
0
votes
1 answer

Is there any browser API to get codec string from webm video?

I want to extract video track's codec string from a webm video in javascript and pass it to browser's VideDecoder configure method to decode this video. For example: If the codec of video track in webm video is V_VP9 in the EBML formatted file but…