diff options
| author | nicknsy <20588554+nicknsy@users.noreply.github.com> | 2023-02-22 00:08:35 -0800 |
|---|---|---|
| committer | Nick <20588554+nicknsy@users.noreply.github.com> | 2023-06-22 16:19:59 -0700 |
| commit | ca7d1a13000ad948eebbfdeb40542312f3e37d3e (patch) | |
| tree | 6ff31f7f318410c62ba3278aeac71f26e9626603 /Emby.Server.Implementations/Dto | |
| parent | a1eb2f6ea8cd78d527f1ae395378419f016208ab (diff) | |
Trickplay generation, manager, storage
Diffstat (limited to 'Emby.Server.Implementations/Dto')
| -rw-r--r-- | Emby.Server.Implementations/Dto/DtoService.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Dto/DtoService.cs b/Emby.Server.Implementations/Dto/DtoService.cs index 7a6ed2cb8..10352b6ff 100644 --- a/Emby.Server.Implementations/Dto/DtoService.cs +++ b/Emby.Server.Implementations/Dto/DtoService.cs @@ -1058,6 +1058,11 @@ namespace Emby.Server.Implementations.Dto dto.Chapters = _itemRepo.GetChapters(item); } + if (options.ContainsField(ItemFields.Trickplay)) + { + dto.Trickplay = _itemRepo.GetTrickplayManifest(item); + } + if (video.ExtraType.HasValue) { dto.ExtraType = video.ExtraType.Value.ToString(); |
