3

有人在 Android 4.2.2 上遇到过 TextureView 和 MediaPlayer 的问题吗?

已解决:请参阅下面的答案以及如何从嵌入式 HTTP 服务器提供文件。

更新:如果嵌入 res/raw 文件夹中的视频无法显示,如果它们是在线托管的,它们就可以正常播放。请参见下面的示例:

// This works
mMediaPlayer.setDataSource("http://someserver.com/test.mp4");
//This does not work. The file is the same as the one above but placed in res/raw.
String vidpath = "android.resource://" + getActivity().getPackageName() + "/" + R.raw.test;
mMediaPlayer.setDataSource(getActivity(), Uri.parse(vidpath));

我们需要一个纹理视图,以便我们可以对其应用一些效果。TextureView 用于显示来自 MediaPlayer 的视频。该应用程序适用于 Android 4.1、4.3 和 4.4(在许多设备上,包括旧的 Nexus S 到 Nexus 10 和 Note 3),但在 4.2.2 上,TextureView 变为黑色。MediaPlayer 没有报告错误或异常,并且报告的视频大小是正确的。在此特定设备上测试 SurfaceView 会显示视频,但是我们无法按照我们需要的方式操作视图。

一个有趣的地方是,如果播放 Nasa Live Streaming Video feed 和其他一些流式 m3u8 文件 ( http://www.nasa.gov/multimedia/nasatv/NTV-Public-IPS.m3u8),TextureView可以在该设备上运行,但我们需要播放原始文件夹中的嵌入视频。然而,我们注意到,在 TextureView 的最顶部,有一条 4x1 像素线,它会非常快速地闪烁一些颜色。我想知道媒体播放器是否正在在那条细线上渲染视频,或者可能是编码问题或硬件问题(这个特定的 4.2.2 设备是 iPad mini 的模仿,称为... haiPad >.<(哪个当然是客户的目标设备-讨厌你墨菲))。

以下是我可以收集的有关无法播放的视频的信息:

MPEG-4 (Base Media / Version 2): 375 KiB, 5s 568ms
1 Video stream: AVC
1 Audio stream: AAC
Overall bit rate mode: Variable
Overall bit rate: 551 Kbps
Encoded date: UTC 2010-03-20 21:29:11
Tagged date: UTC 2010-03-20 21:29:12
Writing application: HandBrake 0.9.4 2009112300
Video: 466 Kbps, 560*320 (16:9), at 30.000 fps, AVC (Baseline@L3.0) (2 ref Frames)

有人有任何指示吗?

4

1 回答 1

3

对于任何面临类似问题的人来说,这对我们有用。

我们仍然不确定为什么无法使用该应用播放嵌入式视频。我们尝试了 res/raw、assets 和复制到内部存储和 sd 卡。

由于它能够从 HTTP 服务器播放视频,我们最终在应用程序中嵌入了一个轻量级的 HTTP 服务器,以直接从资产目录提供文件。这里我使用nanohttpd作为嵌入式服务器。

为了让它工作,我只需要将视频放在资产文件夹中。例如assets/animation/animation1.mp4。引用文件时,您将“animation/animation1.mp4”作为路径传递,服务器将从资产目录提供文件。

应用程序类启动 http 服务器并将其注册为服务。

public class MyApplication extends Application {

    private NanoServer mNanoServer;

    @Override
    public void onCreate() {

        super.onCreate();
        mNanoServer = new NanoServer(0, getApplicationContext());

        try {

            mNanoServer.start();
        } catch (IOException e) {

            Log.e("Unable to start embeded video file server. Animations will be disabled.",
                    "MyApplication", e);
        }
    }

    @Override
    public void onTerminate() {

        mNanoServer.stop();
        super.onTerminate();
    }

    @Override
    public Object getSystemService(String name) {

        if (name.equals(NanoServer.SYSTEM_SERVICE_NAME)) {
            // TODO Maybe we should check if the server is alive and create a new one if it is not.
            // How often can the server crash?
            return mNanoServer;
        }

        return super.getSystemService(name);
    }
}

NanoServer 类

/*
 * TODO Document this.
 */
public class NanoServer extends NanoHTTPD {

    public static final String SYSTEM_SERVICE_NAME = "NANO_EMBEDDED_SYSTEM_HTTP_SERVER";
    private Context mContext;

    public NanoServer(int port, Context context) {
        super(port);
        this.mContext = context;
    }

    public NanoServer(String hostname, int port) {
        super(hostname, port);
    }

    @Override
    public Response serve(IHTTPSession session) {

        try {

            Uri uri = Uri.parse(session.getUri());
            String fileToServe = normalizePath(uri.getPath());

            return new Response(Status.OK, "video/mp4", (InputStream) mContext.getAssets().open(fileToServe));
        } catch (IOException e) {

            return new Response(Status.INTERNAL_ERROR, "", "");
        }
    }

    private String normalizePath(String path) {

        return path.replaceAll("^/+", "");
    }

    public String getUrlFor(String filePath) {

        return String.format(Locale.ENGLISH, "http://localhost:%d/%s", getListeningPort(), filePath);
    }
}

在片段中使用它

if (fileToPlay != null) {

    mTextureView = (TextureView) inflatedView.findViewById(R.id.backgroundAnimation);
    mTextureView.setSurfaceTextureListener(new VideoTextureListener());
}

...

private final class VideoTextureListener implements SurfaceTextureListener {
    @Override
    public void onSurfaceTextureUpdated(SurfaceTexture surface) {

    }

    @Override
    public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {

    }

    @Override
    public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {

        mMediaPlayer.release();
        mMediaPlayer = null;
        return true;
    }

    @Override
    public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {

        Surface s = new Surface(surface);

        try {

            NanoServer server =
                    (NanoServer) getActivity().getApplication().getSystemService(NanoServer.SYSTEM_SERVICE_NAME);
            mMediaPlayer = new MediaPlayer();
            mMediaPlayer.setSurface(s);
            mMediaPlayer.setDataSource(server.getUrlFor(mHotspotTemplate.animation));
            mMediaPlayer.prepareAsync();
            mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
            mMediaPlayer.setVolume(0, 0);

            mMediaPlayer.setOnErrorListener(new OnErrorListener() {

                @Override
                public boolean onError(MediaPlayer mp, int what, int extra) {

                    mMediaPlayer.release();
                    mTextureView.setVisibility(View.INVISIBLE);
                    return true;
                }
            });
            mMediaPlayer.setOnPreparedListener(new OnPreparedListener() {

                @Override
                public void onPrepared(MediaPlayer mp) {

                    mMediaPlayer.start();
                }
            });

            mMediaPlayer.setLooping(true);
            mMediaPlayer.setVolume(0, 0);
        } catch (Throwable e) {

            if (mMediaPlayer != null) {

                mMediaPlayer.release();
            }

            mTextureView.setVisibility(View.INVISIBLE);
        }
    }
}
于 2014-02-21T19:37:24.900 回答