Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
muxer: change mime types for mpegts stream to audio|video/mp2t, fixes…
  • Loading branch information
perexg committed Apr 23, 2015
1 parent 3e56c17 commit 84ee616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/muxer.c
Expand Up @@ -43,7 +43,7 @@ static struct strtab container_audio_mime[] = {
{ "audio/x-matroska", MC_AVMATROSKA },
{ "audio/webm", MC_WEBM },
{ "audio/webm", MC_AVWEBM },
{ "audio/x-mpegts", MC_MPEGTS },
{ "audio/mp2t", MC_MPEGTS },
{ "audio/mpeg", MC_MPEGPS },
{ "application/octet-stream", MC_PASS },
{ "application/octet-stream", MC_RAW },
Expand All @@ -59,7 +59,7 @@ static struct strtab container_video_mime[] = {
{ "video/x-matroska", MC_AVMATROSKA },
{ "video/webm", MC_WEBM },
{ "video/webm", MC_AVWEBM },
{ "video/x-mpegts", MC_MPEGTS },
{ "video/mp2t", MC_MPEGTS },
{ "video/mpeg", MC_MPEGPS },
{ "application/octet-stream", MC_PASS },
{ "application/octet-stream", MC_RAW },
Expand Down

0 comments on commit 84ee616

Please sign in to comment.