cpillsbury / mse.js

MSE-related cross-browser support conforming to the W3C specification.
1 stars 1 forks source link

MSE API #1

Open heff opened 9 years ago

heff commented 9 years ago

I just did a check of the latest browser versions and their MSE API, and they all use MediaSource not WebkitMediaSource or any other prefixed API. The also use appendBuffer() over append(). This includes Chrome 39+, Firefox (nightly), IE11, and Safari 8.

Any other ones I should be checking? Does that mean we can simplify most of this process?

cpillsbury commented 9 years ago

As long as we aren't worried about support of the earlier versions, yes it does. Also, those are the only two that stand out to me right now. I'll remove the browser-specific stuff and see how things look in the different browser environments for the DASH Source Handler. If all's well, I'll remove the dependencies/relevant code.

heff commented 9 years ago

Cool, sounds good.