mirror of
https://github.com/samsonjs/media.git
synced 2026-04-01 10:35:48 +00:00
Support H262 video in MP4
This commit is contained in:
parent
1829d71d29
commit
469780f7ea
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