Get Multiple Embedded Youtube Videos to Play Automatically in Sequence

前端 未结 6 1935
遇见更好的自我
遇见更好的自我 2021-02-02 03:19

Is there any simple way to have multiple embedded YouTube videos on a page and have them start playing as soon as the page is opened and when the first one finished have the sec

相关标签:
6条回答
  • 2021-02-02 03:59

    I am not good at javascript. But I have some similar question before.

    you could referece

    judgement the first video is finished then run the second. you could set 2 functions.

    <div id="player1"></div>
    <br>
    <object width="425" height="350"><param name="movie" id="player2-param" value="http://www.youtube.com/v/OdT9z-JjtJk"></param><embed src="http://www.youtube.com/v/OdT9z-JjtJk" type="application/x-shockwave-flash" width="425" height="350" id="player2-embed"></embed></object>
    

    then

    function onPlayerStateChange(event) {        
                if(event.data === 0) {          
                    $('#player2-param').attr('value','http://www.youtube.com/v/OdT9z-JjtJkautoplay=1');//jquery
                    $('#player2-embed').attr('src','http://www.youtube.com/v/OdT9z-JjtJkautoplay=1');//jquery
    
                }
            }
    

    hope this could help you and write some nicer code, thanks.

    0 讨论(0)
  • 2021-02-02 04:07

    Based on prev sample code. I have created Basic Vanilla JavaScript Youtube Player- With playlist. Checkout Youtube Player- With playlist

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Basic Vanilla  JavaScript Youtube Player- With playlist</title>
    </head>
    <body>
    <div class="player" style="width: 480px;height:360px;max-width: 50%;margin: 0 auto;">
        <div id="youtube" style="width: 100%;height: 100%"></div>
        <div class="controls" style="text-align: center;margin: 0 auto;">
            <button style="padding: 10px;width: 100px;background-color: #167AC6;"
                    onclick="YouTubePlayer.playPrevious()">Prev
            </button>
            <button style="padding: 10px;width: 100px;background-color: #167AC6;margin-left: 30px;"
                    onclick="YouTubePlayer.playNext()">Next
            </button>
        </div>
    </div>
    <script src="//www.youtube.com/iframe_api"></script>
    <script>
        var YouTubePlayer = {
            current: 0,
            player: null,
            /**
             * Tracks ids here...
             */
            videos: [
                'vQMnaDNw5FQ',
                'Dp6lbdoprZ0',
                'OulN7vTDq1I'
            ],
            currentlyPlaying:function(){
                console.info('Current Track id', YouTubePlayer.videos[YouTubePlayer.current]);
                return YouTubePlayer.videos[YouTubePlayer.current];
            },
            playNext: function () {
                YouTubePlayer.increaseTrack()
                if (YouTubePlayer.player) {
                    YouTubePlayer.currentlyPlaying();
                    YouTubePlayer.player.loadVideoById(YouTubePlayer.videos[YouTubePlayer.current]);
                } else {
                    alert('Please Wait! Player is loading');
                }
            },
            playPrevious: function () {
                YouTubePlayer.decreaseTrack()
                if (YouTubePlayer.player) {
                    YouTubePlayer.currentlyPlaying();
                    YouTubePlayer.player.loadVideoById(YouTubePlayer.videos[YouTubePlayer.current]);
                } else {
                    alert('Please Wait! Player is loading');
                }
    
            },
            increaseTrack: function () {
                YouTubePlayer.current = YouTubePlayer.current + 1;
                if (YouTubePlayer.current >= YouTubePlayer.videos.length) {
                    YouTubePlayer.current = 0;
                }
            },
            decreaseTrack: function () {
                YouTubePlayer.current = Math.max(YouTubePlayer.current - 1, 0);
            },
            onReady: function (event) {
                event.target.loadVideoById(YouTubePlayer.videos[YouTubePlayer.current]);
            },
            onStateChange: function (event) {
                if (event.data == YT.PlayerState.ENDED) {
                    YouTubePlayer.playNext();
                }
            }
        }
        function onYouTubeIframeAPIReady() {
            YouTubePlayer.player = new YT.Player('youtube', {
                height: '350',
                width: '425',
                events: {
                    'onReady': YouTubePlayer.onReady,
                    'onStateChange': YouTubePlayer.onStateChange
                }
            });
        }
    </script>
    </body>
    </html>

    0 讨论(0)
  • 2021-02-02 04:11

    Using the Youtube IFrame API, you can do this easily.

    The only part you need to configure here is the array of youtube IDs. You can retrieve those from the part after the /v/ in the URL (If need be, you can modify the javascript to load URLs instead of IDs. I just like this way better.

    <div id="player"></div>
    <script src="//www.youtube.com/iframe_api"></script>
    
    <script>
        /**
         * Put your video IDs in this array
         */
        var videoIDs = [
            'OdT9z-JjtJk',
            'NlXTv5Ondgs'
        ];
    
        var player, currentVideoId = 0;
    
        function onYouTubeIframeAPIReady() {
            player = new YT.Player('player', {
                height: '350',
                width: '425',
                events: {
                    'onReady': onPlayerReady,
                    'onStateChange': onPlayerStateChange
                }
            });
        }
    
        function onPlayerReady(event) {
            event.target.loadVideoById(videoIDs[currentVideoId]);
        }
    
        function onPlayerStateChange(event) {
            if (event.data == YT.PlayerState.ENDED) {
                currentVideoId++;
                if (currentVideoId < videoIDs.length) {
                    player.loadVideoById(videoIDs[currentVideoId]);
                }
            }
        }
    </script>
    
    0 讨论(0)
  • 2021-02-02 04:15

    Don't be complicated, Simply use iframe

    <iframe width="560" height="315" src="https://www.youtube.com/embed/nWHpU7H7Clc?playlist=b6KzNmLMW6o,qWE6g8puu98" frameborder="0" allow="autoplay; encrypted-media" style="width:900px;height:400px" autoplay="true"></iframe>  
    
    0 讨论(0)
  • 2021-02-02 04:16

    Here is an example using the YouTube Iframe Player API.

    There are two separate embeds (player1 and player2). The video autoplays when player1 has loaded, and it starts player2 when it completes.

    Here is the jfiddle if you want to play around with it.

    And the code:

    <div id="player1"></div>
    <div id="player2"></div>
    <script>
        var tag = document.createElement('script');
        tag.src = "//www.youtube.com/iframe_api";
        var firstScriptTag = document.getElementsByTagName('script')[0];
        firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
    
        var player1;
        var player2;
    
        function onYouTubeIframeAPIReady() {
            player1 = new YT.Player('player1', {
                height: '350',
                width: '425',
                videoId: 'OdT9z-JjtJk',
                events: {
                    'onReady': onPlayerReady,
                        'onStateChange': onPlayerStateChange
                }
            });
            player2 = new YT.Player('player2', {
                height: '350',
                width: '425',
                videoId: 'NlXTv5Ondgs'
            });
        }
    
        function onPlayerReady(event) {
            event.target.playVideo();
        }
    
        function onPlayerStateChange(event) {
            if (event.data == YT.PlayerState.ENDED) {
                player2.playVideo();
            }
        }
    </script>
    
    0 讨论(0)
  • 2021-02-02 04:24

    Use youtube API and put autoplay true;make aplaylist on youtube and give link to that.

    0 讨论(0)
提交回复
热议问题