我下载了 googletv-video-player example 并仅选择 VideoPlayerActivity ,因为我只对如何播放流感兴趣。
我修改了它的xml& java文件以全屏模式播放视频。
这就是我现在所拥有的:
player.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="fill_parent" android:padding="10dp">
<VideoView android:id="@+id/videoViewFullScreen"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
player.java
public class player extends Activity implements
AudioManager.OnAudioFocusChangeListener,
MediaPlayer.OnCompletionListener, MediaPlayer.OnErrorListener {
public static final String TAG = "VPActivity";
public VideoView mVideoView = null;
// Handle AudioFocus issues
public void onAudioFocusChange(int focusChange) {
switch (focusChange) {
case AudioManager.AUDIOFOCUS_GAIN:
Log.i(TAG, "AF Gain");
if (mVideoView != null)
mVideoView.resume();
break;
case AudioManager.AUDIOFOCUS_LOSS:
Log.i(TAG, "AF Loss");
if (mVideoView != null)
mVideoView.stopPlayback();
mVideoView = null;
this.finish(); // Let's move on.
break;
case AudioManager.AUDIOFOCUS_LOSS_TRANSIENT:
case AudioManager.AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK:
Log.i(TAG, "AF Transient");
if (mVideoView != null)
mVideoView.pause();
break;
}
}
public void onCompletion(MediaPlayer mp) {
Log.i(TAG, "done.");
mVideoView = null;
this.finish();
}
public boolean onError(MediaPlayer mp, int what, int extra) {
Log.e(TAG, "IO Error e=" + what + " x=" + extra);
return false; // Will call onCompletion
}
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Request Audio Focus
AudioManager am = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
int result = am.requestAudioFocus(this, AudioManager.STREAM_MUSIC,
AudioManager.AUDIOFOCUS_GAIN);
if (result != AudioManager.AUDIOFOCUS_REQUEST_GRANTED) {
Log.e(TAG, "Can't get AudioFocus " + result);
this.finish(); // Just give up.
}
//added the following to make video large, hide title and keep activity alive
//---------------------------------------------------------------------------
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
//----------------------------------------------------------------
setContentView(R.layout.player);
mVideoView = (VideoView) findViewById(R.id.videoViewFullScreen);
mVideoView.setVideoPath("rtsp://stream-url");
mVideoView.setOnCompletionListener(this);
mVideoView.setOnErrorListener(this);
MediaController mc = new MediaController(this, true);
mc.setMediaPlayer(mVideoView);
mc.setAnchorView(mVideoView);
mVideoView.setMediaController(mc);
mVideoView.requestFocus();
mVideoView.start();
}
}
现在我有两个问题
One on Motorola Xoom Tablet and
Second on Google TV
平板电脑问题(Android版本:4.0.3) 这是一个小问题。平板电脑开始正确播放视频它完美播放视频15-20分钟。但一段时间后,视频停止播放。我通过点击屏幕检查了它的状态,我发现玩家自动停止。!
当我再次点击播放时,它开始完美地播放流。 为什么会自动停止???
Google TV上的问题(Android版本:3.1)
这是一个更严重的问题。首先谷歌电视根本没有播放它会给我以下错误:
Cannot Play Video
-----------------------------------------
Sorry, this video cannot be played.
编辑:现在这个问题已经消失,视频播放......我什么也没做。 但是,它是否以这种方式表现?
现在的问题是Google TV屏幕只显示左上角视频的1/4部分,剩下的视频被隐藏......好像 VideoView 对象被拉伸了其他一些对象位于其上方,左上角有一个打开的窗口,它隐藏了 VideoView
并且玩家活动自动完成。
视频甚至可以在模拟器中播放平板电脑,所以我无法粘贴模拟器生成的错误(因为没有错误)来自LogCat。
我的Android应用程序是使用Android 3.1库构建的
答案 0 :(得分:2)
我在GoogleTV上尝试过您的代码,但效果很好。我建议你改变流式网址的唯一方法是这一行:
mVideoView.setVideoPath("rtsp://stream-url");
以上是播放本地文件,流式网址使用以下内容:
mVideoView.setVideoURI(Uri.parse("rtsp://stream-url"));