Can anyone suggest how I embed a youtube channel into a webpage - I am getting conflicting information from various sites, ideally using the custom player if possible? thanks
相关问题
- Countdown to the end of the HTML5 video
- Python function to read video and convert to frame
- Unable to Full Screen Youtube Video Inside Custom
- Thumbnails from the Vimeo website harder than YouT
- Video Format that Works on Mobile Phones
相关文章
- embed 循环播放MP3文件(loop="2"变成无限循环)
- How to create a MediaClip from RenderTargetBitmap
- Safari blocks play() on video despite being called
- How to dynamically add wmode=transparent to Youtub
- Why MPMoviePlayerController fullscreen button icon
- go tutorial select statement
- Skip UIImagePickerController Preview View?
- Detect or Approximate Bluetooth Latency on Android
I quickly did this for anyone else coming onto this page:
See the jsFiddle.
YouTube supports a fairly easy to use iframe and url interface to embed videos, playlists and all user uploads to your channel: https://developers.google.com/youtube/player_parameters
For example this HTML will embed a player loaded with a playlist of all the videos uploaded to your channel. Replace YOURCHANNELNAME with the actual name of your channel:
Except that YTchannelembed doesn't actually embed the channel, merely linked thumbnails, all of which lead off-site. The Youmax solution for jQuery does actually embed though: http://www.codehandling.com/2013/03/youmax-20-complete-youtube-channel-on.html
In order to embed your channel, all you need to do is copy then paste the following code in another web-page.
Make sure to replace the YourChannelName with your actual channel name.
For example: if your channel name were CaliChick94066 your channel embed code would be:
Please look at the following links:
YouTube on your site
Embed YouTube Channel
You just have to name the URL to your channel name. Also you can play with the height and the border color and size. Hope it helps