Я пытаюсь использовать потоковое видео YouTube в JavaScript для обнаружения объектов. Однако мне удалось только встроить видео на веб-страницу, не имея доступа к самому видео. Есть ли способ получить доступ к видео из программы?
Вот код, который у меня есть сейчас.
<script>
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// 3. This function creates an <iframe> (and YouTube player)
// after the API code downloads.
const video = player;
// When the model is loaded
function modelLoaded() {
console.log('Model Loaded!');
}
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: '390',
width: '640',
videoId: '5_XSYlAfJZM',
events: {
'onReady': onPlayerReady,
}
});
}
// 4. The API will call this function when the video player is ready.
function onPlayerReady(event) {
event.playVideo();
}
function stopVideo() {
player.stopVideo();
}
</script>