diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-05-10 01:16:13 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-05-10 01:16:13 -0400 |
| commit | 2a49fa631abf6743a856f27bdaa3a53aac2e29dc (patch) | |
| tree | 0ba571e2880d93b077923ecb1822002939b0c757 /MediaBrowser.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs | |
| parent | cfb0b96f30755af9526e35a7c78527509fa1ea2f (diff) | |
| parent | 9edda5782b6c6221e1b1def4e209b08c2f94ad9c (diff) | |
Merge pull request #1724 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs b/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs index 54443d9ca3..b21aa904b9 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs +++ b/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs @@ -23,6 +23,11 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV _fileSystem = fileSystem; } + public string GetOutputPath(MediaSourceInfo mediaSource, string targetFile) + { + return targetFile; + } + public async Task Record(MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken) { var httpRequestOptions = new HttpRequestOptions() |
