Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i check -> if video is deleted / private or embedd not allowed?

DEMO: http://jsbin.com/eyexah/15/edit
YT API DOC: https://developers.google.com/youtube/js_api_reference

JS code

var params = {
    allowScriptAccess: "always"
},
    atts = {
        id: "youtube_player"
    };

swfobject.embedSWF('http://www.youtube.com/v/SJmrqKOsIpM?enablejsapi=1&playerapiid=ytplayer&version=3&autoplay=1', 'youtube', '425', '356', '8', null, null, params, atts);

function onPlayerStateChange(e) {
    if (e !== 1) {
        return;
    }

    var availableQualityLevels = ytp.getAvailableQualityLevels();
    console.log(availableQualityLevels);
}

function onYouTubePlayerReady() {
    window.ytp = document.getElementById("youtube_player");
    ytp.addEventListener('onStateChange', 'onPlayerStateChange')

};
share|improve this question
From this google groups post, it would appear this is not possible in the API. – Rory McCrossan Jan 30 at 13:21

1 Answer

You can do this at play time by listening for the onError callback using the Player API: https://developers.google.com/youtube/iframe_api_reference#onError

This blog post goes into more details about how you can detect for certain restrictions ahead of time using the Data API: http://apiblog.youtube.com/2011/12/understanding-playback-restrictions.html

Domain-level whitelists or blacklists are still not exposed via the Data API>

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.