This commit is contained in:
Sean Yesmunt 2020-04-24 16:53:24 -04:00
parent ad8cdd130f
commit 4a6d9c7292

View file

@ -101,6 +101,7 @@ function VideoViewer(props: Props) {
} }
function onPlay() { function onPlay() {
console.log('on play!!!');
setIsLoading(false); setIsLoading(false);
setIsPlaying(true); setIsPlaying(true);
setShowAutoplayCountdown(false); setShowAutoplayCountdown(false);
@ -112,6 +113,7 @@ function VideoViewer(props: Props) {
} }
const onPlayerReady = useCallback(player => { const onPlayerReady = useCallback(player => {
console.log('on player ready!!!');
// https://blog.videojs.com/autoplay-best-practices-with-video-js/#Programmatic-Autoplay-and-Success-Failure-Detection // https://blog.videojs.com/autoplay-best-practices-with-video-js/#Programmatic-Autoplay-and-Success-Failure-Detection
if (autoplaySetting || autoplayIfEmbedded) { if (autoplaySetting || autoplayIfEmbedded) {
const promise = player.play(); const promise = player.play();