私のアプリでライブストリーミングのためにExoPlayerでビデオビューを置き換えようとしています。Exoplayer v2、ライブビデオストリーム
ExoPlayerでコードをvideoView.setVideoURI("")
に置き換えてライブビデオを実装する例は見つかりません。
誰でもご利用いただけますか?
//Video Playback library
compile 'com.google.android.exoplayer:exoplayer:r2.5.+'
は、あなたのxmlファイルに行の下に追加します:あなたの活動に
<com.google.android.exoplayer2.ui.SimpleExoPlayerView
android:id="@+id/video_player"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:resize_mode="fill"></com.google.android.exoplayer2.ui.SimpleExoPlayerView>
書き込みcelowコードを
おかげ
https://google.github.io/ExoPlayer/guide.html#getting-started – pskink