我写了重现该问题的示例应用程序:
https://github.com/blundell/VideoRatioProblemPerDevice
该VideoView文档状态:
显示视频文件。 ...负责从视频计算其测量的,以便它可以以任何布局管理器一起使用,并提供了不同的显示选项如缩放
问题是,三星Galaxy S3是做奇怪的事情,以视频和不尊重视频的比例。 (也发生的HTC设备上)。
活动全屏片段:
我所发现的是视频时,在三星Galaxy S3发挥它会在一个不正确的比玩。 它看起来像它已经延伸到视线的高度,而不对原始视频的比率的任何方面。
这里:
但是如果我播放视频在三星Galaxy Nexus的视频是在正确的比例。
这里:
如果我强迫的视频占用,它看起来在S3 OK片段的完整大小(因为屏幕的比例是视频的比例)。 但是我不想这样做,因为它搞砸了的片段在其他地方使用,即片剂 。
该代码是:
与具有VideoView片段的活动。 它可以在这里看到: GitHub的代码链接
如果你想在这里的一些代码是HTE VideoPlayerFragment:
public class VideoPlayerFragment extends Fragment {
private static final String TAG = "VideoPlayer";
private FitVideoView videoView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View root = inflater.inflate(R.layout.fragment_video_player, container, false);
videoView = (FitVideoView) root.findViewById(R.id.surface);
return root;
}
public void playVideo() {
Uri uri = Uri.parse("android.resource://" + getActivity().getPackageName() + "/" + R.raw.test_vid);
Log.d(TAG, "Uri is: " + uri);
setVideoLocation(uri);
if (!videoView.isPlaying()) {
videoView.start();
}
}
private void setVideoLocation(Uri uri) {
try {
videoView.setVideoURI(uri);
} catch (Exception e) {
Log.e(TAG, "VideoPlayer uri was invalid", e);
Toast.makeText(getActivity(), "Not found", Toast.LENGTH_SHORT).show();
}
}
public void pauseVideo() {
if (videoView.isPlaying()) {
videoView.pause();
}
}
}
因此,与此问题发生VideoView
,并用MediaPlayer
+ SurfaceView
。
当系统询问该视频是它返回640×480时,它应该返回852x480宽x高。
即
@Override
public void onPrepared(MediaPlayer mp) {
mp.getVideoWidth();
mp.getVideoHeight();
}
这可能是在一个错误MediaPlayer
视频容器/编解码器的处理或与视频文件本身的问题。
我已经加入了我知道视频的宽度和高度回避它无论哪种方式是我的代码。 我已经更新了Git的回购与此修复程序。 入侵警报
下面就来,我发现了问题的链接我的视频的不同大小的详细信息 。
您可以应用此修复程序到VideoView
直接或MediaPlayer
+ SurfaceView
你的选择。 这里的VideoView
答案:
public class FitVideoView extends VideoView {
private final int mVideoWidth = 853;
private final int mVideoHeight = 480;
private boolean applyFix = true;
public FitVideoView(Context context) {
super(context);
}
public FitVideoView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public FitVideoView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (applyFix) { // A Toggle so I can see both results
// This doesn't ask the video for it's size, but uses my hardcoded size
applyFix(widthMeasureSpec, heightMeasureSpec);
} else {
// This asks the video for its size (which gives an incorrect WxH) then does the same code as below
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
private void applyFix(int widthMeasureSpec, int heightMeasureSpec) {
int width = getDefaultSize(mVideoWidth, widthMeasureSpec);
int height = getDefaultSize(mVideoHeight, heightMeasureSpec);
if (mVideoWidth > 0 && mVideoHeight > 0) {
if (mVideoWidth * height > width * mVideoHeight) {
Log.d("TAG", "image too tall, correcting");
height = width * mVideoHeight / mVideoWidth;
} else if (mVideoWidth * height < width * mVideoHeight) {
Log.d("TAG", "image too wide, correcting");
width = height * mVideoWidth / mVideoHeight;
} else {
Log.d("TAG", "aspect ratio is correct: " + width + "/" + height + "=" + mVideoWidth + "/" + mVideoHeight);
}
}
Log.d("TAG", "setting size: " + width + 'x' + height);
setMeasuredDimension(width, height);
}
}