How to add YouTube videos to watching queue?

10,626

I dont think youtube has a feature to access yt quicklist etc, but you can easily do it with youtube javascript api, if is it ok that the videos gonna be played inside your site.

http://code.google.com/apis/youtube/js_api_reference.html

Embed a youtube player with js api in your site, then you can make a simple js array for queue.

If this solution is ok for you, i gonna write some more details about it, if you're interested in.

Share:
10,626
user2012801
Author by

user2012801

Open source projects: Java HTML compressor/minifier jQuery loading mask plugin Chrome extensions: A whole bunch Feel free to contact me at: [email protected]

Updated on June 04, 2022

Comments

  • user2012801
    user2012801 almost 2 years

    I have a list of youtube video links on a page. I want to let user mark interesting ones, programatically add them to a watching queue, and then forward a user to YouTube where they can watch all those videos in sequence. Is it possible?

  • user2012801
    user2012801 over 13 years
    Thanks. No need for more details, I know about embedded player. If there is no other answers I'll accept it though.