diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-07-24 20:53:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-24 20:53:06 +0000 |
| commit | 44acb9f7d92920d26590dbac6757aef8537da736 (patch) | |
| tree | 9f65860893b6864a326f774989faf6d87ced66cd /Emby.Server.Implementations | |
| parent | 583e4ef97f6c126b1e35cef754dd8a6fd7d0de52 (diff) | |
| parent | ca3dcc3db03d531457b4b60cc3ecdebd57a0157e (diff) | |
Merge pull request #3592 from Ullmie02/api-audio
Migrate AudioService to Jellyfin.Api
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 17208d97d..ad6cbe167 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -4,7 +4,6 @@ using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; -using System.Globalization; using System.IO; using System.Linq; using System.Net; @@ -46,6 +45,7 @@ using Emby.Server.Implementations.Session; using Emby.Server.Implementations.SyncPlay; using Emby.Server.Implementations.TV; using Emby.Server.Implementations.Updates; +using Jellyfin.Api.Helpers; using MediaBrowser.Api; using MediaBrowser.Common; using MediaBrowser.Common.Configuration; @@ -633,6 +633,8 @@ namespace Emby.Server.Implementations serviceCollection.AddSingleton<EncodingHelper>(); serviceCollection.AddSingleton<IAttachmentExtractor, MediaBrowser.MediaEncoding.Attachments.AttachmentExtractor>(); + + serviceCollection.AddSingleton<TranscodingJobHelper>(); } /// <summary> |
