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.
| ||||
|
feedback
|
|
This will work on a device but not the emulator per Lemmy's answer.
| |||||||||||||
feedback
|
|
Here's how I solved this issue:
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. | |||
|
feedback
|
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. | |||||
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 ....
| |||
|
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. | |||||
|
feedback
|
|
Found it:
| |||
|
feedback
|
|
Replying to old question, just to inform you guys that package have changed, heres the update
This works very well, but when you call normal Intent with ACTION_VIEW with valid youtube URL user gets the Activity selector anyways. | |||
|
feedback
|
|
I use the following now:
Where Utility is my own personal utility class with following methode:
First I check if youtube is installed, if it is installed, I tell android which package I prefer to open my intent. | |||||
|
feedback
|
|
You can also just grab the
Worked fine in my app. | ||||
|
feedback
|
|
Try this,
| |||||
feedback
|
|
Play YouTube video In Android with Embedded Script. Here is the Useful code for the play YouTube video In Android App. | |||||
feedback
|
|
Try this:
| ||||
|
feedback
|