Могу ли я получить доступ к видеоэлементу видео на YouTube в JavaScript? - PullRequest
0 голосов
/ 29 мая 2020

Я пытаюсь использовать потоковое видео 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>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...