W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
媒體編解碼能力查詢主要指查詢?cè)O(shè)備所支持的編解碼器的 MIME(Multipurpose Internet Mail Extensions,媒體類型)列表,并判斷設(shè)備是否支持指定 MIME 對(duì)應(yīng)的編碼器/解碼器。
接口名 | 功能描述 |
---|---|
getSupportedMimes() | 獲取某設(shè)備所支持的編解碼器的MIME列表。 |
isDecodeSupportedByMime(String mime) | 判斷某設(shè)備是否支持指定MIME對(duì)應(yīng)的解碼器。 |
isEncodeSupportedByMime(String mime) | 判斷某設(shè)備是否支持指定MIME對(duì)應(yīng)的編碼器。 |
isDecoderSupportedByFormat(Format format) | 判斷某設(shè)備是否支持指定媒體格式對(duì)應(yīng)的解碼器。 |
isEncoderSupportedByFormat(Format format) | 判斷某設(shè)備是否支持指定媒體格式對(duì)應(yīng)的編碼器。 |
List<String> mimes = CodecDescriptionList.getSupportedMimes();
boolean result = CodecDescriptionList.isDecodeSupportedByMime(Format.VIDEO_VP9);
boolean result = CodecDescriptionList.isEncodeSupportedByMime(Format.AUDIO_FLAC);
Format format = new Format();
format.putStringValue(Format.MIME, Format.VIDEO_AVC);
format.putIntValue(Format.WIDTH, 2560);
format.putIntValue(Format.HEIGHT, 1440);
format.putIntValue(Format.FRAME_RATE, 30);
format.putIntValue(Format.FRAME_INTERVAL, 1);
boolean result = CodecDescriptionList.isDecoderSupportedByFormat(format);
result = CodecDescriptionList.isEncoderSupportedByFormat(format);
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: