mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Move transcodes to be under CachePath
Move transcodes to be under CachePath instead of ProgramDataPath. Since transcodes are ephemeral (they're cleaned up periodically and recreated if they don't exist), they're more like cache data than program data. Systems can (and oftentimes do) have the cache directory on a different disk, use a different type of file system, or have a different backup policy for the cache path because it contains ephemeral data.
This commit is contained in:
parent
61a7f69aeb
commit
ac5a4e62f4
@ -32,7 +32,7 @@ namespace MediaBrowser.Common.Configuration
|
|||||||
var transcodingTempPath = configurationManager.GetEncodingOptions().TranscodingTempPath;
|
var transcodingTempPath = configurationManager.GetEncodingOptions().TranscodingTempPath;
|
||||||
if (string.IsNullOrEmpty(transcodingTempPath))
|
if (string.IsNullOrEmpty(transcodingTempPath))
|
||||||
{
|
{
|
||||||
transcodingTempPath = Path.Combine(configurationManager.CommonApplicationPaths.ProgramDataPath, "transcodes");
|
transcodingTempPath = Path.Combine(configurationManager.CommonApplicationPaths.CachePath, "transcodes");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure the directory exists
|
// Make sure the directory exists
|
||||||
|
Loading…
Reference in New Issue
Block a user