update recording defaults

This commit is contained in:
Luke Pulverenti
2016-10-16 13:11:32 -04:00
parent 401dc39e4c
commit 55f47d2120
16 changed files with 139 additions and 24 deletions

View File

@@ -610,6 +610,11 @@ namespace MediaBrowser.MediaEncoding.Encoder
{
if (video.Protocol != MediaProtocol.File)
{
// If it's mpeg based, assume true
if ((videoStream.Codec ?? string.Empty).IndexOf("mpeg", StringComparison.OrdinalIgnoreCase) != -1)
{
return true;
}
return false;
}