Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to randomly play videos in a Youtube playlist. I know that there's a bug in the setShuffle function so I am going to randomly generate a random number and then play that video with the .playVideoAt function.

The problem is that when I execute the .playVideoAt function, it ignores it and just plays the first video. Here's my code to initiate the player (standard stuff):

var player;
    function onYouTubeIframeAPIReady() {
        player = new YT.Player('player', {
            height: '390',
            width: '640',
            playerVars: 
      {
        listType:'playlist',
        list: 'PLmHQS8zAl1Bd5elzBYWqucXDK-wv1Xfha'
      },
            events: {
                'onReady': onPlayerReady,
                'onStateChange': onPlayerStateChange
            }
        });


    }

And my code for to start the player. For testing, I just set it to video 2 (there are a total of 4).

 function onPlayerReady(event) {

        player.setLoop(true);
        event.target.playVideoAt(2);

    }

Is there something about the playVideoAt function I'm missing?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.