私はオンラインビデオチャンネルをストリーミングするためのAndroidアプリケーションを開発しています。今、私はからストリーミングしたいと思います、rtsp://62.220.122.4/tv1
そして私はこのリンクからストリーミングするために以下のコードを使用します:
import java.io.IOException;
import android.widget.MediaController;
import android.widget.VideoView;
import android.app.Activity;
import android.content.res.Configuration;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Bundle;
public class TVStreamerActivity extends Activity {
private VideoView mVideoView = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.videoview);
mVideoView = (VideoView) findViewById(R.id.surface_view);
MediaController mediaController = new MediaController(this);
mediaController.setAnchorView(mVideoView);
mVideoView.setVideoURI(Uri.parse("rtsp://62.220.122.4/tv1"));
mVideoView.setMediaController(mediaController);
mVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer arg0) {
mVideoView.start();
Log.e("Runnbale Thread : Run MediaPlayer",
"MediaPlayer Prepared");
}
});
mVideoView.requestFocus();
}
}
そしてであるvideoview.xml
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<android.widget.VideoView
android:id="@+id/surface_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</RelativeLayout>
すべて問題ありませんが、アプリケーションを実行すると、しばらくError (1, -16)
するとが表示され、AndroidデバイスにLogCat
メッセージが表示されます。Sorry, this media cannot be played
誰かが私にこの問題を解決するための解決策を教えてもらえますか?
編集:マニフェストandroid:minSdkVersion="10"
で私はを設定し、それをテストしましたGalaxy Ace S5830 (Android 2.3.6)
前もって感謝します :)