moved media streams to the database

This commit is contained in:
Luke Pulverenti
2013-12-05 22:39:44 -05:00
parent ebe483db9a
commit 5f0d8000a5
39 changed files with 657 additions and 332 deletions

View File

@@ -102,7 +102,7 @@ namespace MediaBrowser.Server.Implementations.BdInfo
Width = videoStream.Width,
Height = videoStream.Height,
Codec = videoStream.CodecShortName,
ScanType = videoStream.IsInterlaced ? "interlaced" : "progressive",
IsInterlaced = videoStream.IsInterlaced,
Type = MediaStreamType.Video,
Index = streams.Count
};
@@ -146,7 +146,7 @@ namespace MediaBrowser.Server.Implementations.BdInfo
{
stream.Channels = audioStream.ChannelCount + 1;
}
streams.Add(stream);
}