Tuesday, 10 September 2013

How to get direct link to video?

How to get direct link to video?

I have a problem with playing video in my app. Basically what I want to do
is getting direct link to video like:
www.embed.videotube.com/player/?id=431436[...].mp4 from:
http://embed.videotube.com/player/?id=431436. I've seen some websites like
www.videotools.12pings.net which will get proper link.
Is there any option how to cope in situation where there is no proper API
? (example: api for youtube)
After clicking on video thumb:
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("www.embed.videotube.com/player/?id=431436[...].mp4"));
myContext.startActivity(intent);

No comments:

Post a Comment