mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-28 04:52:18 +00:00
fixes #697 - Support xbmc offline discs
This commit is contained in:
parent
2db452f68f
commit
6efb78b8b2
27 changed files with 154 additions and 45 deletions
|
|
@ -84,6 +84,11 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder
|
|||
/// <returns><c>true</c> if [is eligible for chapter image extraction] [the specified video]; otherwise, <c>false</c>.</returns>
|
||||
private bool IsEligibleForChapterImageExtraction(Video video)
|
||||
{
|
||||
if (video.IsPlaceHolder)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (video is Movie)
|
||||
{
|
||||
if (!_config.Configuration.EnableMovieChapterImageExtraction)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue