mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-26 18:48:21 +01:00
Enhance Trickplay (#11883)
This commit is contained in:
@@ -24,6 +24,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
EnablePhotos = true;
|
||||
SaveSubtitlesWithMedia = true;
|
||||
SaveLyricsWithMedia = false;
|
||||
SaveTrickplayWithMedia = false;
|
||||
PathInfos = Array.Empty<MediaPathInfo>();
|
||||
EnableAutomaticSeriesGrouping = true;
|
||||
SeasonZeroDisplayName = "Specials";
|
||||
@@ -99,6 +100,9 @@ namespace MediaBrowser.Model.Configuration
|
||||
[DefaultValue(false)]
|
||||
public bool SaveLyricsWithMedia { get; set; }
|
||||
|
||||
[DefaultValue(false)]
|
||||
public bool SaveTrickplayWithMedia { get; set; }
|
||||
|
||||
public string[] DisabledLyricFetchers { get; set; }
|
||||
|
||||
public string[] LyricFetcherOrder { get; set; }
|
||||
|
||||
@@ -33,6 +33,13 @@ namespace MediaBrowser.Model.IO
|
||||
|
||||
string MakeAbsolutePath(string folderPath, string filePath);
|
||||
|
||||
/// <summary>
|
||||
/// Moves a directory to a new location.
|
||||
/// </summary>
|
||||
/// <param name="source">Source directory.</param>
|
||||
/// <param name="destination">Destination directory.</param>
|
||||
void MoveDirectory(string source, string destination);
|
||||
|
||||
/// <summary>
|
||||
/// Returns a <see cref="FileSystemMetadata" /> object for the specified file or directory path.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user