Skip to content

Commit

Permalink
fix m2ts input specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Feb 25, 2017
1 parent daaacf8 commit aa15132
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ public string GetInputFormat(string container)
{
return "mpegts";
}
if (string.Equals(container, "m2ts", StringComparison.OrdinalIgnoreCase))
{
return null;
}

return container;
}
Expand Down

0 comments on commit aa15132

Please sign in to comment.