I have created a app where you can download YouTube videos for android. Now, I want it so that if you play a video in the YouTube native app you can download it too. To do this, I need to know the Intent that the YouTube native app puts out in order to play the YouTube app.
I could do this easially if I had the YouTube program on my emulator, so my 1st question is:
1. Can I download the YouTube app for my emulator, or...
2. What is the intent used when the user selects a video for playback.

link|improve this question

feedback

12 Answers

This will work on a device but not the emulator per Lemmy's answer.

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.youtube.com/watch?v=cxLG2wtE7TM")));

link|improve this answer
This was the winner for me, if you have the youtube app installed it asks if you want to use that instead. – TreeUK Mar 23 '10 at 16:37
use this code i get the intent chooser for youtube and browser. how to hide it? i just need to directly link up to youtube player. – Praveen May 21 '10 at 14:13
@Praveen Chandrasekaran the youtube app may not be available - it's best to use the Intent, and let the system work out which installed apps support the request. – cofiem Sep 23 '10 at 12:27
2  
You'll need to call setClassName on the Intent before calling startActivity, like this: intent.videoClient.setClassName("com.google.android.youtube", "com.google.android.youtube.PlayerActivity"); See Sana's answer for a working code example. – Symmetric Jan 28 '11 at 15:50
This doesn't work for me, on a real device with youtube app installed. It still opens the web browser. The approach by Bibbity below works though. Or maybe Symmetric's comment, haven't tried that. – Mathias Lin Nov 11 '11 at 8:10
show 2 more comments
feedback

Here's how I solved this issue:

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube://" + video_id);
startActivity(intent);

Now that I've done some more research, it looks like I only needed 'vnd.youtube:VIDEO_ID' instead of two slashes after the colon (':' vs. '://'):

http://it-ride.blogspot.com/2010/04/android-youtube-intent.html

I tried most of the suggestions here and they didn't really work very well with all of the supposed "direct" methods raising exceptions. I would assume that, with my method, if the YouTube app is NOT installed, the OS has a default fallback position of something other than crashing the app. The app is theoretically only going on devices with the YouTube app on them anyway, so this should be a non-issue.

link|improve this answer
This worked for me :) – Warpzit Nov 1 '11 at 13:35
feedback
    Intent videoClient = new Intent(Intent.ACTION_VIEW);
    videoClient.setData(Uri.parse("http://m.youtube.com/watch?v="+videoId));
    videoClient.setClassName("com.google.android.youtube", "com.google.android.youtube.PlayerActivity");
    startActivityForResult(videoClient, VIDEO_APP);

where videoId is the video id of the youtube video that has to be played. This code works fine on Motorola Milestone.

But basically what we can do is to check for what activity is loaded when you start the Youtube app and accordingly substitute for the packageName and the className.

link|improve this answer
I'm getting the following error. ERROR/AndroidRuntime(1519): Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.google.android.youtube/com.google.android.youtube.PlayerActivity}; have you declared this activity in your AndroidManifest.xml? Kindly resolve this. – Vinothkumar Arputharaj Jun 14 '11 at 14:06
What is your device? This activity name is only specific for a Motorola Milestone, but if you want to see the activity name for the youtube activity plug in your device in USB debugging mode and see the LogCat when you click on the Youtube App. It should give you the package name alogn with activity name. – Sana Jun 15 '11 at 2:00
feedback

Use my code .. I am able to play youtube video using this code ... you need to give your own youtube video id in the "videoId" variable ....

String videoId = "Fee5vbFLYM4";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:"+videoId)); 
intent.putExtra("VIDEO_ID", videoId); 
startActivity(intent); 
link|improve this answer
feedback

The Youtube (and Market application) are only supposed to be used with special ROMs, which Google released for the G1 and the G2. So you can't run them in an OpenSource-ROM, like the one used in the Emulator, unfortunately. Well, maybe you can, but not in an officially supported way.

link|improve this answer
Do you know the unsupported way? – Isaac Waller Mar 1 '09 at 7:03
Sorry, no. Just didn't want to rule out the possibility. – Lemmy Mar 1 '09 at 16:12
feedback

Found it:

03-18 12:40:02.842: INFO/ActivityManager(68): Starting activity: Intent { action=android.intent.action.VIEW data=(URL TO A FLV FILE OF THE VIDEO) type=video/* comp={com.google.android.youtube/com.google.android.youtube.YouTubePlayer} (has extras) }
link|improve this answer
feedback

Replying to old question, just to inform you guys that package have changed, heres the update

Intent videoClient = new Intent(Intent.ACTION_VIEW);
videoClient.setData("VALID YOUTUBE LINK WITH HTTP");
videoClient.setClassName("com.google.anddroid.youtube", "com.google.android.youtube.WatchActivity");
startActivity(videoClient);

This works very well, but when you call normal Intent with ACTION_VIEW with valid youtube URL user gets the Activity selector anyways.

link|improve this answer
feedback

I use the following now:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(youtubelink));
                if(Utility.isAppInstalled("com.google.android.youtube", getActivity())) {
                    intent.setClassName("com.google.android.youtube", "com.google.android.youtube.WatchActivity");
                }
                startActivity(intent);

Where Utility is my own personal utility class with following methode:

public static boolean isAppInstalled(String uri, Context context) {
    PackageManager pm = context.getPackageManager();
    boolean installed = false;
    try {
        pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES);
        installed = true;
    } catch (PackageManager.NameNotFoundException e) {
        installed = false;
    }
    return installed;
}

First I check if youtube is installed, if it is installed, I tell android which package I prefer to open my intent.

link|improve this answer
What is Utility? I don't see it as an available import. – Igor G. Apr 3 at 3:49
@IgorG. Thanks for pointing it out, updated answer. – Warpzit Apr 3 at 7:42
feedback

You can also just grab the WebViewClient

wvClient = new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
  if (url.startsWith("youtube:")) {
    String youtubeUrl = "http://www.youtube.com/watch?v="
    + url.Replace("youtube:", "");
  startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(youtubeUrl)));
}
return false;
}

Worked fine in my app.

link|improve this answer
feedback

Try this,

       WebView webview = new WebView(this); 

       String htmlString = "<html> <body> <embed src=\"youtube link\"; type=application/x-shockwave-flash width="+widthOfDevice+" height="+heightOfDevice+"> </embed> </body> </html>";

       webview.loadData(htmlString ,"text/html", "UTF-8");
link|improve this answer
This doesn't work for me. – herbrandson Nov 16 '10 at 23:49
This is also not worked for me. Is there any requiremnt of flash player in emulator. – Pavan More Nov 16 '11 at 6:15
feedback

Play YouTube video In Android with Embedded Script.

Here is the Useful code for the play YouTube video In Android App.

link|improve this answer
1  
Hello Sawan. Welcome to StackOverflow and thank you for your answer. Adding a link in your answer is allowed on StackOverflow, but we appreciate it if you add the useful answer to your answer itself, or explain what is in the link. Answers containing only a link are rarely considered helpful. Thank you! – Konerak Sep 16 '11 at 21:55
feedback

Try this:

public class abc extends Activity implements OnPreparedListener{

  /** Called when the activity is first created. */

  @Override
    public void onCreate(Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.youtube.com/watch?v=cxLG2wtE7TM")));          


    @Override
      public void onPrepared(MediaPlayer mp) {
        // TODO Auto-generated method stub

    }
  }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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