Android中的音频支持哪些编解码器?支持G711。但还有其他像G729,......等等吗?
答案 0 :(得分:1)
看看这里:
http://developer.android.com/guide/appendix/media-formats.html
我不确定G.729是否明确可用。但它可能被用作上面页面中列出的其他编解码器中的一个模块
HTH,
斯利拉姆。
答案 1 :(得分:1)
看看:http://developer.android.com/reference/android/media/MediaCodecInfo.html
有一段代码告诉设备中所有可用的编解码器(音频和视频)。
private List<String> mSupportedCodecs;
private void getSupportedCodecs() {
int numCodecs = MediaCodecList.getCodecCount();
mSupportedCodecs = new ArrayList<String>(numCodecs);
for (int i = 0; i < numCodecs; i++) {
MediaCodecInfo codecInfo = MediaCodecList.getCodecInfoAt(i);
mSupportedCodecs.add(codecInfo.getName());
}
}