So spielen Sie eine streaming-video-URL in android?

Ich spielen möchte ein streaming-video in android von einer website.

Zum Beispiel, will ich spielen, das streaming-video von dieser url: http://florotv.com/canal2.html

Verwendung von URL-Helfer, ich habe in der Lage zu erfassen, die rtmp-URL, dass es

rtmp://198.144.153.139:443/kuyo<playpath>ver44?id=acf6f5271f8ce567ed6c8737ce85a044&pid=32342e3136362e37332e323139 <swfUrl>http://yukons.net/yplay2.swf <pageUrl>http://yukons.net/embed/37363635373233343334/eeff74c57593ca38defc902fa6d88005/600/400

Nun, da ich diese URL, ich will wissen, ob es möglich ist, video-Spiel im android.

Ich habe dies ausprobiert, aber es funktioniert nicht, weil ich nicht weiß, wie die swfUrl, pageUrl.....

private static final String MOVIE_URL="rtmp://198.144.153.139:443/kuyo";
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
Uri data = Uri.parse(MOVIE_URL);
intent.setData(data);
startActivity(intent);

Vielen Dank im Voraus....

InformationsquelleAutor user3167333 | 2014-02-07
Schreibe einen Kommentar