1.chrome version 77.0.3865.75 64bit
2.in Vue
3.It can be playing a little while then stoped by โ The media playback was aborted due to a corruption problem or because the media used features your browser did not support.โ
4.it works well in IE.
๐ Thanks for opening your first issue here! ๐
If you're reporting a ๐ bug, please make sure you include steps to reproduce it. We get a lot of issues on this repo, so please be patient and we will get back to you as soon as we can.
To help make it easier for us to investigate your issue, please follow the contributing guidelines.
Unfortunately, there is not enough information for us to answer. Preferably, please include a test stream in a live example.
the same issue
same issue on chromecast. that happens when change html5 to youtube tech
I had the same issue
I used the constructor like this to override native
var player = window.player = videojs('video', {
html5: {
hls: {
overrideNative: true
},
nativeAudioTracks: false,
nativeVideoTracks: false
}
});
and also you should use source like the example below if you use "
player.src({
type: 'application/x-mpegURL',
src: '$moviesHls'
});
At least it Solved my Error So i decided to share it.
Most helpful comment
I had the same issue
I used the constructor like this to override native
and also you should use source like the example below if you use "" inside video tag chrome native player may take the control (I think) so it didn't work with just "overrideNative: true" you should use the method below to add source.
At least it Solved my Error So i decided to share it.