-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose SourceBuffer as an ArrayBuffer #209
Comments
What meaningful data do you expect to see in return? But if you've added different init segment, overwritten others, added multiple init segments for different resolution/encoding. What then? |
Not having viewed what a What am relatively certain of now is that the accumulated data is not retrievable at Would naively anticipate that a file having the MIME type equaling the codecs passed to The media can be seeked, and has a total duration at a The specification states
though the clear, unambiguous interpretation of that sentence, if accurate, would not have lead to this issue being filed - as a developer cannot request the Is there a reason the |
The reason for this issue is that although have no experience using C++ browsed Chromium source code relevant to Am trying to find a way to resolve #190 at Chromium, which still crashes the tab when trying to record a The accumulated data is stored somewhere (https://beaufortfrancois.github.io/sandbox/media/source-buffer-limit.html). That data should be exposed to developers. Am not sure if the original specification anticipated recording a If the decision is made to merge this issue with #190, that is fine. |
Is 1.2 Definitions accurate as to the second paragraph below?
|
@wolenetz When If What exactly is the data structure of a Is there any reason in the speification why a |
Except using |
Currently there does not appear to be any means to get the media accumulated at a
SourceBuffer
at any time (w3c/html#550, w3c/html#555).Provide some means of getting the media resource as a file (
Blob
having MIME type set the the codec set atMediaSource
/SourceBuffer
;ArrayBuffer
) (ideally at any time, before.endOfStream()
is called) at least when.endOfStream()
is called.The text was updated successfully, but these errors were encountered: