admin管理员组文章数量:1415476
This may sound stupid but I looked online for some time and I could not find how to make a YouTube player chromeless. I am making a web app and I am using the YouTube JavaScript API. Wherever I look online for some information on how to actually make the player chromeless, it just gives me information on how to operate with a chromeless player. Nobody addresses this question (it seems to be obvious), but I just can't figure out how to do it. Could someone please explain to me how to do it (do I need to pass a certain parameter somewhere?) Thanks.
This may sound stupid but I looked online for some time and I could not find how to make a YouTube player chromeless. I am making a web app and I am using the YouTube JavaScript API. Wherever I look online for some information on how to actually make the player chromeless, it just gives me information on how to operate with a chromeless player. Nobody addresses this question (it seems to be obvious), but I just can't figure out how to do it. Could someone please explain to me how to do it (do I need to pass a certain parameter somewhere?) Thanks.
Share Improve this question asked Nov 24, 2012 at 21:56 Gershon BallasGershon Ballas 911 silver badge4 bronze badges 3- Is this what you're looking for? developers.google./youtube/flash_api_reference – MacMac Commented Nov 24, 2012 at 22:00
- This is a post about this topic that you may find useful: stackoverflow./questions/2626966/… – Matias Molinas Commented Nov 24, 2012 at 23:32
- Possible duplicate of How do I go about embedding a youtube chromeless player without adding controls? – rogerdpack Commented Sep 10, 2017 at 6:12
2 Answers
Reset to default 5Alright, so I figured it out. So, if you are using JavaScript as I did (I believe it also works for AS3), simply, instead of writig the video ID in the URL (the one that you give to the embedswf() function), write "apiplayer". Then, after the video player has loaded, simply call the function cueVideo() on it (passing it the video ID of the video you want to show). This will make the video player chromeless.
Well first you would the HTML Code
<embed src=""/>
Now this takes the url: http://www.youtube./apiplayer?enablejsapi=1&version=3
This one doesn't take a ID due to the fact you give it one in JS on the function
onYouTubePlayerReady()
Here is a little example
<script>
onYouTubePlayerReady = initializePlayer;
function initializePlayer(){
var video = document.getElementById('video');
video.loadVideoById(String id , int starttime , string quality);
var playbutton = document.getElementById('playbtn');
playbutton.addEventListener('click' , playVideo());
var pausebutton = document.getElementById('psbtn');
pausebutton.addEventListener('click' , pauseVideo());
}
</script>
That is the basic script, hope this works!
本文标签: javascriptHow to make a YouTube chromeless playerStack Overflow
版权声明:本文标题:javascript - How to make a YouTube chromeless player? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745177322a2646302.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论