How to embed youtube videos as playlist -
i have numerous youtube video clips, , wondering if possible embed them on site youtube playlist, next video starts playing automatically once clip finishes. there such functionality either youtube api or without. if not possible, best approach. in advance.
actually there 2 ways embed playlists youtube. in first method can directly specify videos want play in embed player.
<iframe width="720" height="405" src="https://www.youtube.com/embed/video_id?playlist=videoid_1,videoid_2"frameborder="0" allowfullscreen>
each video id must separated using comma.
secondly, can embed playlist present in youtube using playlist id
<iframe width="720" height="405" src="https://www.youtube.com/embed/?listtype=playlist&list=playlist_id" frameborder="0" allowfullscreen>
Comments
Post a Comment