gpt4 book ai didi

android - 从我的 Android 应用程序播放 MP4 时断断续续

转载 作者:行者123 更新时间:2023-11-29 01:59:12 25 4
gpt4 key购买 nike

我的 Hackberry board 和 Android 4.0.4 有一个奇怪的问题,我必须全屏播放视频,但视频非常不稳定,如果从我的应用程序播放则非常慢。如果我在默认媒体播放器上播放相同的 mp4 视频,一切都很好而且很快。我的三星 S3 上的相同 apk 在应用程序内部和媒体播放器中也很快。

这是我的布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<VideoView
android:id="@+id/surface_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"/>

</RelativeLayout>

这是我用来播放视频的代码

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

mVideoView = (VideoView) findViewById(R.id.surface_view);
mVideoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() +"/"+R.raw.decart));
mVideoView.setMediaController(new MediaController(this));
mVideoView.requestFocus();
mVideoView.start();

和 list

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="15" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:persistent="true"
android:largeHeap="true" >

<activity
android:name=".MainActivity"
android:screenOrientation="landscape"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>

有什么想法吗?

我也做了测试,如果我把我的视频放在SD卡里就没问题,如果我使用原始资源文件夹里的文件,我的视频就有问题。以下似乎是解决方案,但对我来说不是一个好的解决方案。

//NOT OK
mVideoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() +"/"+R.raw.decart));

// OK
mVideoView.setVideoURI(Uri.parse(new File("/sdcard/decart.mp4").toString()));

向大家致以最诚挚的问候

最佳答案

据我所知,这里的问题与视频本身无关。这只是您可以从这两个来源获得的吞吐量。 android.resource://的东西似乎有性能问题,简单的文件访问没有。

您可以尝试简单地从两个来源读取文件,测量读取速度并查看罪魁祸首是否真的是 I/O 吞吐量。

关于android - 从我的 Android 应用程序播放 MP4 时断断续续,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13530631/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com