Created
May 20, 2017 13:48
-
-
Save frostney/6b12b31e1ea85814f77ce47ba1a83e87 to your computer and use it in GitHub Desktop.
Failed experiment of trying to render Youtube iframes as videos for react-vr. Fails because of cross origin iframes :(
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import YoutubePlayer from 'youtube-player'; | |
import html2canvas from 'html2canvas'; | |
export default class YoutubeVideoPlayer { | |
onMediaEvent: ?(any) => void; | |
videoElement: HTMLVideoElement; | |
_muted: boolean; | |
_volume: number; | |
static supportedFormats: ?Array<string> = ['youtube']; | |
constructor() { | |
this.videoElement = document.createElement('canvas'); | |
this.iframeElement = document.createElement('div'); | |
this.iframeElement.id = 'youtube-video-player'; | |
this.iframeElement.style.display = 'none'; | |
if (document.body) { | |
document.body.appendChild(this.iframeElement); | |
} | |
this.player = null; | |
this._volume = 1.0; | |
this._muted = false; | |
this.onMediaEvent = undefined; | |
(this: any)._onMediaEvent = this._onMediaEvent.bind(this); | |
} | |
_convertToCanvas(callback) { | |
const convert = () => { | |
if (this.videoElement !== null) { | |
html2canvas('youtube-video-player').then(function(canvas) { | |
this.videoElement = canvas; | |
}); | |
} | |
window.requestAnimationFrame(convert); | |
} | |
convert(); | |
} | |
initializeVideo(src: string, metaData: any) { | |
this.player = YoutubePlayer('youtube-video-player', { | |
videoId: src | |
}); | |
this._bindMediaEvents(); | |
this.play(); | |
} | |
hasEnoughData(): boolean { | |
return true; | |
} | |
_onMediaEvent(event: any) { | |
if (typeof this.onMediaEvent === 'function') { | |
this.onMediaEvent(event); | |
} | |
} | |
play() { | |
this.player.playVideo().then(() => { | |
this._convertToCanvas(); | |
}); | |
} | |
pause() { | |
this.player.stopVideo(); | |
} | |
dispose() { | |
this.pause(); | |
if (document.body) { | |
document.body.removeChild(this.iframeElement); | |
} | |
this._unbindMediaEvents(); | |
this.onMediaEvent = undefined; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment