mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Only run ffprobe on local content
This commit is contained in:
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…
x
Reference in New Issue
Block a user