|
@@ -14,6 +14,7 @@ using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Threading.Tasks;
|
|
using CommonIO;
|
|
using CommonIO;
|
|
|
|
+using MediaBrowser.Controller.Library;
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.MediaEncoder
|
|
namespace MediaBrowser.Server.Implementations.MediaEncoder
|
|
{
|
|
{
|
|
@@ -24,6 +25,7 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder
|
|
private readonly ILogger _logger;
|
|
private readonly ILogger _logger;
|
|
private readonly IMediaEncoder _encoder;
|
|
private readonly IMediaEncoder _encoder;
|
|
private readonly IChapterManager _chapterManager;
|
|
private readonly IChapterManager _chapterManager;
|
|
|
|
+ private readonly ILibraryManager _libraryManager;
|
|
|
|
|
|
public EncodingManager(IFileSystem fileSystem,
|
|
public EncodingManager(IFileSystem fileSystem,
|
|
ILogger logger,
|
|
ILogger logger,
|
|
@@ -57,27 +59,38 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
- var options = _chapterManager.GetConfiguration();
|
|
|
|
-
|
|
|
|
- if (video is Movie)
|
|
|
|
|
|
+ var libraryOptions = _libraryManager.GetLibraryOptions(video);
|
|
|
|
+ if (libraryOptions != null && libraryOptions.SchemaVersion >= 2)
|
|
{
|
|
{
|
|
- if (!options.EnableMovieChapterImageExtraction)
|
|
|
|
|
|
+ if (!libraryOptions.EnableChapterImageExtraction)
|
|
{
|
|
{
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- else if (video is Episode)
|
|
|
|
|
|
+ else
|
|
{
|
|
{
|
|
- if (!options.EnableEpisodeChapterImageExtraction)
|
|
|
|
|
|
+ var options = _chapterManager.GetConfiguration();
|
|
|
|
+
|
|
|
|
+ if (video is Movie)
|
|
{
|
|
{
|
|
- return false;
|
|
|
|
|
|
+ if (!options.EnableMovieChapterImageExtraction)
|
|
|
|
+ {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- }
|
|
|
|
- else
|
|
|
|
- {
|
|
|
|
- if (!options.EnableOtherVideoChapterImageExtraction)
|
|
|
|
|
|
+ else if (video is Episode)
|
|
{
|
|
{
|
|
- return false;
|
|
|
|
|
|
+ if (!options.EnableEpisodeChapterImageExtraction)
|
|
|
|
+ {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ if (!options.EnableOtherVideoChapterImageExtraction)
|
|
|
|
+ {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|