Questions tagged [ebml]

5 questions
6
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
  • 5,931
  • 1
  • 18
  • 33
4
votes
1 answer

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,…
0
votes
0 answers

Set PART_NUMBER for TRACK (30) using ffmpeg in matroska

I would like to set PART_NUMBER on TRACK (30) level (indicating the track number according to spec) in a matroska file using ffmpeg, and I don't know how to do so. When using -metadata track=7 ffmpeg appears to set PART_NUMBER on Level 40, or at…
Tobias Brohl
  • 402
  • 6
  • 22
0
votes
0 answers

What do the "+"-nodes in a MKV-file mean

EBML-files have a EBML-schema. The EBML-schema is simlilar to a XML-schema but somewhat simpler. The EBML-schema for MKV / Matroska contains the following element defininitions I wondered about:
Bonita Montero
  • 853
  • 4
  • 11
0
votes
0 answers

Webm file could not play when MediaRecorder on Chrome does not provide the cluster?

Background: I need to play each webm file individually which are created by MediaRecorder According to Brad’s suggestion, we need to split the data on the cluster element 0x1F43B675, and prepend everything before the first cluster to a later…
Suman Bogati
  • 5,931
  • 1
  • 18
  • 33