add remote streaming capabilities

This commit is contained in:
Luke Pulverenti
2013-05-01 16:07:20 -04:00
parent f9ec1ce37f
commit e9cfa6cd26
6 changed files with 73 additions and 12 deletions

View File

@@ -47,6 +47,14 @@ namespace MediaBrowser.Controller.Providers.MediaInfo
}
}
break;
case VideoType.VideoFile:
{
if (video.LocationType == LocationType.Remote)
{
type = InputType.Url;
}
break;
}
}
return inputPath;