Graxeon Posted May 30, 2010 Share Posted May 30, 2010 There are some video tutorials on YouTube that I'm trying to play in my JW FLV player. However, the videos are split into parts and I'd like for those parts to play right after one another. I know I can make another "track item" in my XML playlist...but how can I send more than 1 URL to my FLV player so that it just plays them back-to-back once the previous one(s) finishes? So let's say I have this: <track> <title>Tutorial 1</title> <location>http://www.youtube.com/watch?v=GOfhmzNLWzY</location> <annotation>Introduction</annotation> <info></info> <meta rel='type'>video</meta> </track> <track> <title>Tutorial 2</title> <location>http://www.youtube.com/watch?v=eUsuuxo3nYo</location> <annotation>Part 1</annotation> <info></info> <meta rel='type'>video</meta> </track> <track> <title>Tutorial 2</title> <location>http://www.youtube.com/watch?v=ouumT9LoMLk</location> <annotation>Part 2</annotation> <info></info> <meta rel='type'>video</meta> </track> <track> <title>Tutorial 2</title> <location>http://www.youtube.com/watch?v=tXjoR0IayMA</location> <annotation>Part 3</annotation> <info></info> <meta rel='type'>video</meta> </track> </track> So instead of having them all in different tracks, how can I play all of the parts for "Tutorial 2" back to back with 1 "<location>"? (I know this relates to XML, but I'm guessing this is more relevant to PHP) Quote Link to comment https://forums.phpfreaks.com/topic/203375-play-parts-in-single-link/ Share on other sites More sharing options...
pornophobic Posted May 30, 2010 Share Posted May 30, 2010 I don't think you'd need any php or mysql for this... I've played with jwplayer and I'm pretty sure that you can autoplay a playlist using the js api. http://www.longtailvideo.com/support/forums/jw-player/javascript-interaction/301/autoplay-playlist Quote Link to comment https://forums.phpfreaks.com/topic/203375-play-parts-in-single-link/#findComment-1065459 Share on other sites More sharing options...
Graxeon Posted May 30, 2010 Author Share Posted May 30, 2010 I know, but that would mean that each youtube link is split into different tracks. I need a way of putting them into 1. Quote Link to comment https://forums.phpfreaks.com/topic/203375-play-parts-in-single-link/#findComment-1065469 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.