mirror of
https://github.com/samsonjs/media.git
synced 2026-03-29 10:05:48 +00:00
Support H262 video in MP4
This commit is contained in:
parent
b9ead4b7d1
commit
44fa0b446e
1 changed files with 4 additions and 0 deletions
|
|
@ -1027,6 +1027,10 @@ import java.util.List;
|
|||
case 0xAB:
|
||||
mimeType = MimeTypes.AUDIO_DTS_HD;
|
||||
return Pair.create(mimeType, null);
|
||||
case 0x60: /* Visual 13818-2 Simple Profile */
|
||||
case 0x61: /* Visual 13818-2 Main Profile */
|
||||
mimeType = MimeTypes.VIDEO_MPEG2;
|
||||
break;
|
||||
default:
|
||||
mimeType = null;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue