How to make YouTube Android Player API play only HD Videos Link
@Override
public void onInitializationSuccess(YouTubePlayer.Provider provider,
YouTubePlayer player, boolean wasRestored) {
if (!wasRestored) {
Log.v("Mobile Url", "" + mobile_url);
player.loadVideo(mobile_url);
player.setFullscreen(true);
player.setShowFullscreenButton(false);
player.loadVideo("N1nFoVI3xJM");
}
}
Here I can set the loadVideo
, setFullscreen
, setShowFullscreenButton
I need to load only HD Videos. Is that possible? Is any method available to set play only HD videos? If no HD Video found for that ID then I need to show toast as now playing non-HD Videos how to perform this please give some idea or suggestion to achieve this concept
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…