added live channel playback

This commit is contained in:
Luke Pulverenti
2014-01-02 23:58:22 -05:00
parent a5be2523c5
commit ede84702d1
8 changed files with 167 additions and 31 deletions

View File

@@ -77,15 +77,14 @@ namespace MediaBrowser.Controller.MediaInfo
.Where(f => !string.IsNullOrEmpty(f))
.ToList();
}
/// <summary>
/// Gets the type of the input.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="videoType">Type of the video.</param>
/// <param name="isoType">Type of the iso.</param>
/// <returns>InputType.</returns>
public static InputType GetInputType(string path, VideoType? videoType, IsoType? isoType)
public static InputType GetInputType(VideoType? videoType, IsoType? isoType)
{
var type = InputType.AudioFile;