aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 00:08:27 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 00:08:27 -0500
commit9911df11e8a96d5d7fffcd8618b63a6adb27701f (patch)
treeb7e446296c6b0f61804430cd59beda68aa549065 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parent211d24e66e717f6294840b4f91806a24c1fb2e78 (diff)
extracted provider manager. took more off the kernel
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index fb5f56693..012a55363 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -93,7 +93,7 @@ namespace MediaBrowser.Api.Playback
/// <returns>System.String.</returns>
protected string GetOutputFilePath(StreamState state)
{
- var folder = ApplicationPaths.FFMpegStreamCachePath;
+ var folder = ApplicationPaths.EncodedMediaCachePath;
return Path.Combine(folder, GetCommandLineArguments("dummy\\dummy", state).GetMD5() + GetOutputFileExtension(state).ToLower());
}