-
-
Notifications
You must be signed in to change notification settings - Fork 66
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
can support blob? #77
Comments
There's no API that does blob yet, but it shouldn't be too hard to introduce a Just to be clear, are you talking about creating a |
Yes exactly like MediaSource var video = document.querySelector('video'); var assetURL = 'frag_bunny.mp4'; if ('MediaSource' in window && MediaSource.isTypeSupported(mimeCodec)) { function sourceOpen () { function fetchAB (url, cb) { But it uses some specific codec formats which are not supported by some mp4 videos. Can you check this and add this in media player so that it automatically checks each codec format for the given video and then show the blob URL in the video src property? Or can we add this option without a specific codec format of the video? |
This MediaSource API works perfectly for this "frag_bunny.mp4" video. I have tried to use other videos but its getting error on every video. Means mostly downloaded videos don't have the same audio and video codec format like this one "avc1.42E01E, mp4a.40.2" |
Can this player support blob url to play private (mp4 or webm) videos ?
can you add this function in this please ?
The text was updated successfully, but these errors were encountered: