Posts

Showing posts from December, 2013

COLLECT CLIPS FROM YOUTUBE.COM TO PLAY

Image
http://play-videos.url.ph/1603/play-paste.htm When our web for playing continuously youtube videos is located on PC, we can't watch many clips. So we need to seek a place for the web page on the Internet. Suppose, that you do not register to a certain web hosting server, but still want to see almost all clips you have selected. In this case, you can use my webpage below (it is located in "hostinger" server). Please do the following steps: - Open Notepad for use as a sheet of paper to take notes. - Open Youtube.com and watch the video clips as you normally do. - If you like a specific clip, copy it's ID ( including 11 letters or numbers, they are at the end of web address ). - Paste the ID into a txt file in Notepad. - After each ID must be a comma. But after last ID don't type down comma . For example : Blx9lHMivQs,PDZcqBgCS74,sFwGI492XCU, h0G1Ucw5HDg,0MNTOOmUMdQ - Choose the file name and save it, for example "my-list1.txt", to your h

API PLAYER FOR YOUTUBE VIDEOS

Image
 Watch the page "api-player.html"  http://http://play-videos.url.ph/1603/api-player1.html The following lines from "api-player1.html" show how to make: ----------------------------------------------------------------------------------------------------- 1 - Videos clips play continuously one after another. 2 - The video clips will be ignored if Youtube does not allow them to be embedded into your website. ----------------------------------------------------------------------------------------------------- var player; wi = '' + 812; hi = '' + 516; function onYouTubePlayerAPIReady() { vId = vid[1] player = new YT.Player('player', { width: wi, height:hi, videoId: vId, playerVars: { 'autoplay': 0, 'rel': 0, 'showinfo': 0, 'egm': 0, 'showsearch': 0, }, events: { 'onStateChange': onPlayerStateChange, 'onError': onPlayerError } }); } function onPlayer