5

我编写了一个重现该问题的示例应用程序:

https://github.com/blundell/VideoRatioProblemPerDevice

VideoView文档指出:

显示视频文件。... 负责从视频中计算其测量值,以便可以在任何布局管理器中使用,并提供各种显示选项,例如缩放

问题是三星 Galaxy S3 对视频做了奇怪的事情,不尊重视频的比例。(也发生在 HTC 设备上)。

全屏片段的活动:

我发现当视频在三星 Galaxy S3 上播放时,它会以不正确的比例播放。看起来它已经被拉伸到视图的高度,而不考虑原始视频的比例。

这里: s3

但是,如果我在三星 Galaxy Nexus 上播放视频,则视频的比例正确。

这里: n

如果我强制视频占据片段的完整大小,它在 S3 上看起来没问题(因为屏幕的比例就是视频的比例)。但是我不想这样做,因为它搞砸了在其他地方使用的片段,即 tablet

代码是:

带有带有 VideoView 的 Fragment 的 Activity。可以在这里看到:GITHUB CODE LINK

如果你想要一些代码在这里是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();
        }
    }
}
4

1 回答 1

6

所以这个问题VideoViewMediaPlayer+一起出现SurfaceView

当系统询问视频的宽度 x 高度时,它返回 640x480,而它应该返回 852x480。

IE

@Override
public void onPrepared(MediaPlayer mp) {
    mp.getVideoWidth();
    mp.getVideoHeight();
}

这要么是MediaPlayer视频容器/编解码器处理中的错误,要么是视频文件本身的问题。

GSpot 详细信息

无论哪种方式,我都通过将我知道的视频宽度和高度添加到我的代码中来规避它。我已经用这个修复更新了Git Repo 。黑客警报

这是我发现视频的不同尺寸详细信息的问题的链接。

您可以将此修复应用于VideoView或直接应用于MediaPlayerSurfaceView的选择。这是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);
    }
}
于 2013-01-13T11:50:11.173 回答