3

I want want to play video from my personal account in you tube.

  Intent videoClient = new Intent(Intent.ACTION_VIEW);
  videoClient.setData(Uri.parse("http://www.youtube.com"));
  videoClient.setClassName("com.google.android.youtube","com.google.android.youtube.PlayerActivity");
   startActivity(videoClient);

this code use for only play video in youtube. I want to play video into MY personal account in youtube.. I'm also log in in youtube.I have created my account in youtube and add video in my youtube account... question is this "how to play video on my youtube account"

M. Deinum
  • 115,695
  • 22
  • 220
  • 224
Akash Singh
  • 5,171
  • 2
  • 26
  • 55
  • " i want to play video into MY personal account in youtube.." you mean add to your favorites ? – Reno Nov 07 '11 at 10:16
  • yes i want to play MY personal account in YouTube. This is mean my favorites add in my YouTube account – Akash Singh Jan 27 '12 at 12:32

1 Answers1

3

For playing video from your youtube channel(account) you want to get rtsp URL of your video. And for complete example click here.

Pang
  • 9,564
  • 146
  • 81
  • 122
Hardik Joshi
  • 9,477
  • 12
  • 61
  • 113
  • Whilst this may theoretically answer the question, [it would be preferable](http://meta.stackexchange.com/q/8259) to include the essential parts of the answer here, and provide the link for reference. – Bill the Lizard Jun 25 '12 at 13:24