turn it back on but ✨head✨
This commit is contained in:
parent
d92f6d3e18
commit
eb398c419a
1 changed files with 25 additions and 25 deletions
|
@ -311,34 +311,34 @@ export default React.memo<Props>(function VideoJs(props: Props) {
|
|||
// $FlowFixMe
|
||||
containerRef.current.appendChild(wrapper);
|
||||
|
||||
// fetch(source).then(response => {
|
||||
// if (response && response.redirected && response.url && response.url.endsWith('m3u8')) {
|
||||
// videoJsOptions.sources[0].type = 'application/x-mpegURL';
|
||||
// }
|
||||
|
||||
player = videojs(el, videoJsOptions, () => {
|
||||
if (player) {
|
||||
player.one('play', onInitialPlay);
|
||||
player.on('volumechange', onVolumeChange);
|
||||
player.on('error', onError);
|
||||
player.on('ended', onEnded);
|
||||
LbryVolumeBarClass.replaceExisting(player);
|
||||
player.mobileUi(); // Inits mobile version. No-op if Desktop.
|
||||
|
||||
onPlayerReady(player);
|
||||
fetch(source, { method: 'HEAD' }).then(response => {
|
||||
if (response && response.redirected && response.url && response.url.endsWith('m3u8')) {
|
||||
videoJsOptions.sources[0].type = 'application/x-mpegURL';
|
||||
}
|
||||
|
||||
player = videojs(el, videoJsOptions, () => {
|
||||
if (player) {
|
||||
player.one('play', onInitialPlay);
|
||||
player.on('volumechange', onVolumeChange);
|
||||
player.on('error', onError);
|
||||
player.on('ended', onEnded);
|
||||
LbryVolumeBarClass.replaceExisting(player);
|
||||
player.mobileUi(); // Inits mobile version. No-op if Desktop.
|
||||
|
||||
onPlayerReady(player);
|
||||
}
|
||||
});
|
||||
|
||||
window.player = player;
|
||||
|
||||
// fixes #3498 (https://github.com/lbryio/lbry-desktop/issues/3498)
|
||||
// summary: on firefox the focus would stick to the fullscreen button which caused buggy behavior with spacebar
|
||||
// $FlowFixMe
|
||||
player.on('fullscreenchange', () => document.activeElement && document.activeElement.blur());
|
||||
|
||||
window.addEventListener('keydown', handleKeyDown);
|
||||
});
|
||||
|
||||
window.player = player;
|
||||
|
||||
// fixes #3498 (https://github.com/lbryio/lbry-desktop/issues/3498)
|
||||
// summary: on firefox the focus would stick to the fullscreen button which caused buggy behavior with spacebar
|
||||
// $FlowFixMe
|
||||
player.on('fullscreenchange', () => document.activeElement && document.activeElement.blur());
|
||||
|
||||
window.addEventListener('keydown', handleKeyDown);
|
||||
// });
|
||||
|
||||
return () => {
|
||||
window.removeEventListener('keydown', handleKeyDown);
|
||||
|
||||
|
|
Loading…
Reference in a new issue