HDR,即高动态范围技术,可提供更广的色彩范围, 在最亮的白色和最暗的阴影之间形成对比, 更接近于肉眼所感知的品质,
您可以在应用中设置 HDR 视频播放,以便预览和播放 HDR 视频 内容。
本文假定您已经向 。请参阅 ExoPlayer 文档,了解 了解有关播放的更多详情。
设备前提条件
并非所有 Android 设备都支持 HDR 播放。播放 HDR 之前 视频内容,判断您的设备是否符合以下要求 前提条件:
- 以 Android 7.0 或更高版本(API 层 24)为目标平台。
- 具有支持 HDR 的解码器,以及访问支持 HDR 的屏幕。
检查是否支持 HDR 播放
使用 Display.getHdrCapabilities()
查询显示屏的 HDR capability。该方法会返回有关显示屏支持的 HDR 配置文件和亮度范围的信息。
以下代码可检查设备是否支持 HLG10 播放。从 Android 13 开始,如果设备能够播放 HDR 内容,则 HLG10 是设备制造商必须支持的最低标准:
Kotlin
// Check if display supports the HDR type val capabilities = display?.hdrCapabilities?.supportedHdrTypes ?: intArrayOf() if (!capabilities.contains(HDR_TYPE_HLG)) { throw RuntimeException("Display does not support desired HDR type"); }
Java
// Check if display supports the HDR type int[] list = getDisplay().getHdrCapabilities().getSupportedHdrTypes(); Listcapabilities = Arrays.stream(list).boxed().collect(Collectors.toList()); if (!capabilities.contains(HDR_TYPE_HLG)) { throw new RuntimeException("Display does not support desired HDR type"); }
在应用中设置 HDR 播放
如果您的应用使用 ExoPlayer,则它默认支持 HDR 播放。请参阅检查 HDR 播放支持,了解后续步骤。
如果您的应用不使用 ExoPlayer,请通过 SurfaceView
使用 MediaCodec
设置 HDR 播放。
使用 SurfaceView 设置 MediaCodec
使用 SurfaceView
设置标准的 MediaCodec
播放流程。这样,您无需对 HDR 播放进行任何特殊处理即可显示 HDR 视频内容:
MediaCodec
:对 HDR 视频内容进行解码。SurfaceView
:显示 HDR 视频内容。
以下代码会检查编解码器是否支持 HDR 配置文件,然后使用 SurfaceView
设置 MediaCodec
:
Kotlin
// Check if there's a codec that supports the specific HDR profile val list = MediaCodecList(MediaCodecList.REGULAR_CODECS) var format = MediaFormat() /* media format from the container */; format.setInteger(MediaFormat.KEY_PROFILE, MediaCodecInfo.CodecProfileLevel.AV1ProfileMain10) val codecName = list.findDecoderForFormat (format) ?: throw RuntimeException ("No codec supports the format") // Here is a standard MediaCodec playback flow val codec: MediaCodec = MediaCodec.createByCodecName(codecName); val surface: Surface = surfaceView.holder.surface val callback: MediaCodec.Callback = (object : MediaCodec.Callback() { override fun onInputBufferAvailable(codec: MediaCodec, index: Int) { queue.offer(index) } override fun onOutputBufferAvailable( codec: MediaCodec, index: Int, info: MediaCodec.BufferInfo ) { codec.releaseOutputBuffer(index, timestamp) } override fun onError(codec: MediaCodec, e: MediaCodec.CodecException) { // handle error } override fun onOutputFormatChanged( codec: MediaCodec, format: MediaFormat ) { // handle format change } }) codec.setCallback(callback) codec.configure(format, surface, crypto, 0 /* flags */) codec.start() while (/* until EOS */) { val index = queue.poll() val buffer = codec.getInputBuffer(index) buffer?.put(/* write bitstream */) codec.queueInputBuffer(index, offset, size, timestamp, flags) } codec.stop() codec.release()
Java
// Check if there's a codec that supports the specific HDR profile MediaCodecList list = new MediaCodecList(MediaCodecList.REGULAR_CODECS); MediaFormat format = /* media format from the container */; format.setInteger( MediaFormat.KEY_PROFILE, CodecProfileLevel.AV1ProfileMain10); String codecName = list.findDecoderForFormat(format); if (codecName == null) { throw new RuntimeException("No codec supports the format"); } // Below is a standard MediaCodec playback flow MediaCodec codec = MediaCodec.getCodecByName(codecName); Surface surface = surfaceView.getHolder().getSurface(); MediaCodec.Callback callback = new MediaCodec.Callback() { @Override void onInputBufferAvailable(MediaCodec codec, int index) { queue.offer(index); } @Override void onOutputBufferAvailable(MediaCodec codec, int index) { // release the buffer for render codec.releaseOutputBuffer(index, timestamp); } @Override void onOutputFormatChanged(MediaCodec codec, MediaFormat format) { // handle format change } @Override void onError(MediaCodec codec, MediaCodec.CodecException ex) { // handle error } }; codec.setCallback(callback); codec.configure(format, surface, crypto, 0 /* flags */); codec.start(); while (/* until EOS */) { int index = queue.poll(); ByteBuffer buffer = codec.getInputBuffer(index); buffer.put(/* write bitstream */); codec.queueInputBuffer(index, offset, size, timestamp, flags); } codec.stop(); codec.release();
如需查看更多使用 SurfaceView
的 MediaCodec
实现,请参阅 Android 相机示例。
资源
如需详细了解 HDR 播放,请参阅以下资源:
HDR
- HDR 视频拍摄:了解如何使用 Camera2 API 设置 HDR 视频拍摄。
- GitHub 上的 Camera2Video 示例:查看具有 HDR 拍摄和播放功能的有效应用。
媒体
- Media API 参考文档:详细了解 Media API。
- ExoPlayer:了解如何使用 ExoPlayer 库设置应用。