diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-12-18 08:54:40 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-18 08:54:40 +0900 |
| commit | bc7cbfb21aced3ad72ddd98183ad457e50b48dc8 (patch) | |
| tree | e9766356fdc2106874f491deab5b67a0964f5a35 /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 0f444c21e9d2e2e8dbb4c454cc7d3dc467de8d32 (diff) | |
| parent | 6464bca791b515cac3059fd6e166149b18b5086f (diff) | |
Merge pull request #1941 from Bond-009/mediaencoding
Make probesize and analyzeduration configurable and simplify circular dependencies
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 60906bdb0..af4d227bc 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -137,7 +137,7 @@ namespace MediaBrowser.Controller.Entities /// <value>The video3 D format.</value> public Video3DFormat? Video3DFormat { get; set; } - public string[] GetPlayableStreamFileNames(IMediaEncoder mediaEncoder) + public string[] GetPlayableStreamFileNames() { var videoType = VideoType; @@ -153,7 +153,8 @@ namespace MediaBrowser.Controller.Entities { return Array.Empty<string>(); } - return mediaEncoder.GetPlayableStreamFileNames(Path, videoType); + + throw new NotImplementedException(); } /// <summary> |
