Androbito
Androbito

Reputation: 329

read streaming videos from Android code

After many research on the net, i'm obliged to ask you about Streaming on Android, how can I read streaming by specifying URL or at least how to integrate youtube videos on my android application? Thanks a lot

Upvotes: 0

Views: 748

Answers (1)

user671253
user671253

Reputation:

You can use this library http://code.google.com/p/android-youtube-player/

The use of the library is very easy.

code example:

Intent lVideoIntent = new Intent(null, Uri.parse("ytpl://"+YOUTUBE_PLAYLIST_ID), this, OpenYouTubePlayerActivity.class);
startActivity(lVideoIntent);

The YouTube Data API allows a program to perform many of the operations available on the YouTube.

Upvotes: 1

Related Questions