Only run ffprobe on local content

pull/702/head
Eric Reed 12 years ago
parent a3d37fbca7
commit 51e11eb3e3

@ -85,6 +85,11 @@ namespace MediaBrowser.Controller.Providers.MediaInfo
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
public override bool Supports(BaseItem item)
{
if (item.LocationType != LocationType.FileSystem)
{
return false;
}
var video = item as Video;
if (video != null)

Loading…
Cancel
Save