android - Android 4.2 上 TextureView 的问题

标签 android textureview

有人在 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));

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

一个有趣的地方是,如果播放 Nasa 实时流媒体视频提要和一些其他流媒体 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)

谁有什么指点吗?

最佳答案

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

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

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

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

启动 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);
    }
}

在 fragment 中使用它

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);
        }
    }
}

关于android - Android 4.2 上 TextureView 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21925017/

相关文章:

android - 在 Android 的 TextureView 中的视频出现问题后播放视频

android - 在具有视频纵横比的纹理 View 上播放视频

java - 如何通过单击主 Activity 中的自定义信息窗口来更改不同 Activity 中布局的 TextView

android - 如何去除Button的背景资源?

android - MediaCodec 和 TextureView 的 Z 顺序问题

android - SurfaceTexture 方法并不总是在 Android 7.0 上调用

android - TextureView 和透明度

Android M及以上存储权限问题

java - 在 Android Java 应用程序中嵌入 Groovy

android - 适用于 Android 的 Adob​​e AIR 打包程序如何工作?