How to Play Youtube Video in My Android Application

How to embed and play a YouTube video in android

The Answer is Simple "YES".

Please look at to following link,

How to play YouTube video in my Android application?

Streaming Youtube Videos

How to auto play youtube video on my app?

In order to auto play Youtube video, use

player.loadVideo(value, 0) //replace 0 with milliseconds for delay in autoplay

instead of

player.cueVideo(value)

please refer the below link for more information

https://developers.google.com/youtube/android/player/reference/com/google/android/youtube/player/YouTubePlayer#loadVideo(java.lang.String,%20int)

Play private YouTube video using YoutubePlayerView from YoutubeAndroidPlayerAPI?

This is not possible with the Android Player API. The only way to play private videos on a device is to implement a WebView in your app, have the user log into their YouTube account, and then play back the Private video in that specific browser session only. YouTube suggests marking videos as Unlisted rather than Private for playback on mobile devices.

More info in this Google Groups post about playing back private videos using the embedded player.

Playing back a private video in an embedded player will only work if
you have a YouTube login cookie in your browser that corresponds to an
account that is permissioned to watch that video. Otherwise, it will
fail. Authentication with the Data API has nothing to do with whether
you can play the video back in an embedded player.

...

There's no programmatic way to create a login cookie. The user
actually has to login to YouTube.com using the same browser instance
that's using the embed, and that can't be scripted.



Related Topics



Leave a reply



Submit