Jump to content

Docker [Invalid Reference Format]


max096

Recommended Posts

I´m trying to install emby in docker. I have plex already running in docker (planned to install both simultaniously then choose whatever i turn out to like better). But I cannot install the emby image, because it only comes up with this

[max@[member="Max"] ~]$ sudo docker run -d \
> --name=emby \
> -v /home/max/raid6/Media/Music:/data/music \
> -v /home/max/emby_config:/config \
> -v /home/max/raid6/Media/Animes:/data/animes \
> -v /home/max/raid6/Media/AnimeMovies:/data/anime_movies \
> -v /home/max/raid6/Media/Movies:/data/movies \
> -v /home/max/raid6/Media/TV Shows:/data/tv_shows \
> --publish 8096:8096 \
> --publish 8920:8920 \
> --env UID=1000 \
> --env GID=1000 \
emby/embyserver:latest
docker: invalid reference format.
See 'docker run --help'.

So this part is the error message I get

docker: invalid reference format.
See 'docker run --help'.

The rest is command I was running to try and run the container.

 

Now I know this line in the docker guide I left out

--device /dev/dri/renderD128 \ # To mount a render node for VAAPI

I had it in there before, but I left it out now because I figured maybe that´s the problem. And it does not state that it´s mandatory in the guide.

 

Pulling the image works however.

[max@[member="Max"] ~]$ sudo docker pull emby/embyserver:latest
[sudo] password for max:
latest: Pulling from emby/embyserver
Digest: sha256:6aa2dbfb6b9a109aeae58b72c8453bd194bfe346f5244453d046d79a9c35c2b8
Status: Image is up to date for emby/embyserver:latest

But I can´t get it to actually run.

Edited by max096
Link to comment
Share on other sites

Where did you get latestdocker from? What platform and cpu architecture is this? Is there any terminal output from starting it?

Link to comment
Share on other sites

Where did you get latestdocker from? What platform and cpu architecture is this? Is there any terminal output from starting it?

 

This is where I got it from

 

https://hub.docker.com/r/emby/embyserver/

 

CPU architecture is x86 specifically i7 4790k. Upgraded to ryzen and used the old one to build a NAS and get rid of harddrives in my Desktop. The OS is CentOS (CentOS Linux release 7.5.1804). Should really not matter to docker though what distro i´m running.

 

But docker didn´t exactly gave a very detailed error message at all. Only what´s in the first "code" block. But if you know how to get a detailed error message out of it i´ll gladly do that.

 

So essentially this is the error message part

docker: invalid reference format.
See 'docker run --help'.

Those people here are saying parameter order might be the problem. I don´t really get it yet. But if I figure it out I´ll also post the solution.

 

https://stackoverflow.com/questions/45682010/docker-invalid-reference-format

Edited by max096
Link to comment
Share on other sites

I did find the issue now.

 

Appearelty you cannot have spaces in your path variables when you put it into the terminal. I didn´t notice before, because when I made the plex container I did make it with just one path and then edited/replaced it with portainers web-gui.

 

When you want to include a path with spaces you have to put it into quotes like so.

-v "/home/max/raid6/Media/TV Shows":/data/tv_shows \

I really didn´t think I´ll get this now so quickly, because I already tried it a few days ago and failed at it. When I did setup plex I only tried with one folder. And then added the rest by editing/duplicating it with the portainer gui. So I didn´t run into the same issue even though I was using the exact same paths.

 

Like this it now works fine

sudo docker create \
--name=emby \
-p 8096:8096 \
-p 8920:8920 \
-e VERSION=latest \
-e PUID=1000 -e PGID=1000 -e GIDLIST=39 \
-e TZ=Europe/Vienna \
-v /home/max/emby_config:/config \
-v /home/max/raid6/Media/AnimeMovies:/data/anime_movies \
-v /home/max/raid6/Media/Animes:/data/animes \
-v /home/max/raid6/Media/Movies:/data/movies \
-v "/home/max/raid6/Media/TV Shows":/data/tv_shows \
-v /home/max/raid6/Media/Music:/data/music \
--device /dev/dri/renderD128 \
--restart always \
emby/embyserver

Thread can be closed.

Edited by max096
Link to comment
Share on other sites

Are you up and running now? I would not expect x86 to work as we haven't tested that.

 

Yes it´s running. But it somehow takes an awfully long time for it to load all the artworks and such and a lot of them it does not seem to find at all. Guess I have to play around with what APIs it uses to fetch metadata.

 

What did you test it with ARM? Is installing it straight to centos tested?

Link to comment
Share on other sites

We no longer have any packages for x86. We have x64 and arm. 

 

Ok then thats good. It´s 64bit ofc. Not 32bit. Also have 16gb of ram on that system. So 32bit really... would be horrible. i just kinda put it into the same bin, because linuxserver.io for instance does not list x64 as a seperate architecture. Witch is where I got the plex container from. Unless "aarch64" is x64 no clue. But there isn´t a whatever "aarch64" is docker image for plex either.

 

Now it at least loaded all the movies, TV shows, music and animes. But there are almost no artworks for anything, witch is a bit disappointing. It´s named about right. I already renamed all the things to work with plex so for TV shows that would be "Movie Name (year)" and for tv shows and animes it would be "Name/Season x/Name SxxExx". But it being a bit more configureable is neat. I´ll try that some day to change the apis for loading metadata. For animes anilist might be good. I´ve used it once myself in a program I made for a friend and it´s really good. So if I can dial that in somehow it should recognize most of the animes there are. For movies, no clue yet. But it also didn´t recognize most of them other than Harry Potter and some others. Plex on the other hand just recognized EVERYTHING out of the box except for a very small amount of animes and I think one movie. So that´s nice ofc. But it´s not the end all be all criterium for me.

 

On a side note do you know of any good fully featured music players that can use emby as a backend?

Edited by max096
Link to comment
Share on other sites

Sounds like there's no network connection in the container, which would prevent it from being and to download anything. Just a guess. The server log would tell us more.

Link to comment
Share on other sites

Sounds like there's no network connection in the container, which would prevent it from being and to download anything. Just a guess. The server log would tell us more.

 

Well then why does it download some of them?

 

Is the server log in the config folder, or somewhere in the docker container? Seems to be in the config folder I´ll try and find something useful in there.

 

I won´t post all if it, because it´s really LOOONG, but yes there seems to be some error going on.

2018-11-08 23:13:44.944 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:45.328 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:45.948 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:46.669 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:47.424 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:48.054 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:48.527 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:49.060 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:49.612 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:50.519 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:51.020 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:53.115 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:53.732 Error App: Error in TheMovieDb
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        MediaBrowser.Model.Net.HttpException: Cancelling connection to https://api.themoviedb.org/3/configuration?api_key=f6bd687ffa63cd282b6ff2c6877f2669 due to a previous timeout.
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)
        MediaBrowser.Model.Net.HttpException
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
           at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetMovieDbResponse(HttpRequestOptions options)
           at MediaBrowser.Providers.Movies.MovieDbProvider.GetTmdbSettings(CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.MovieDbSearch.GetSearchResults(ItemLookupInfo idInfo, String searchType, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Movies.GenericMovieDbInfo`1.GetMetadata(ItemLookupInfo itemId, CancellationToken cancellationToken)
           at MediaBrowser.Providers.Manager.MetadataService`2.ExecuteRemoteProviders(MetadataResult`1 temp, String logName, TIdType id, IEnumerable`1 providers, CancellationToken cancellationToken)

2018-11-08 23:13:54.076 Info TaskManager: Scan media library Completed after 5 minute(s) and 7 seconds
2018-11-08 23:13:54.080 Info TaskManager: ExecuteQueuedTasks
2018-11-08 23:13:54.124 Info LibraryMonitor: Watching directory /data/movies
2018-11-08 23:14:13.438 Info App: Transcoding kill timer stopped for JobId a58cf362-a366-479e-8c07-56dc5d34054d PlaySessionId 6d24996bcc5540879921ab1e11689e6b. Killing transcoding
2018-11-08 23:14:13.438 Info App: Stopping ffmpeg process with q command for /config/transcoding-temp/35dc3b88dc4953fe220e3feb4b23d692.m3u8
2018-11-08 23:14:13.591 Info App: FFMpeg exited with code 0
2018-11-08 23:14:13.591 Info App: Deleting partial stream file(s) /config/transcoding-temp/35dc3b88dc4953fe220e3feb4b23d692.m3u8
2018-11-08 23:14:24.071 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items?Recursive=true&Limit=3&Filters=IsNotFolder&SortBy=DateCreated&SortOrder=Descending&Ids=429cfa5c1648e89c5f696f08e19b138f%2Cf137a2dd21bbc1b99aa5c0f6bf02a805%2Cafee3ab477b162cb0ce18a78ab97f99e%2Cd690d0c3d19844549c55b9b08caef5c8%2C6fc98a7119321d5de19ef2e40e05b9ce%2C706bcc77e09b3135f1ca7efe1a8e9318%2Ce32772429a633be3d4f397d7c2fd1812%2Cf48daa3750c470146e21aff5575705b7%2C9c87a4628de60f79b90cabcf150f25d3%2Caa07a44ba13a91dbd2cdd07cf8f71629%2Cc6a6b0a57cc507f37e453a07840e6b03%2C570616cc7855d94e2cab1953000cc7d6&MediaTypes=Audio%2CVideo&EnableTotalRecordCount=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:24.075 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 4ms. http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items?Recursive=true&Limit=3&Filters=IsNotFolder&SortBy=DateCreated&SortOrder=Descending&Ids=429cfa5c1648e89c5f696f08e19b138f%2Cf137a2dd21bbc1b99aa5c0f6bf02a805%2Cafee3ab477b162cb0ce18a78ab97f99e%2Cd690d0c3d19844549c55b9b08caef5c8%2C6fc98a7119321d5de19ef2e40e05b9ce%2C706bcc77e09b3135f1ca7efe1a8e9318%2Ce32772429a633be3d4f397d7c2fd1812%2Cf48daa3750c470146e21aff5575705b7%2C9c87a4628de60f79b90cabcf150f25d3%2Caa07a44ba13a91dbd2cdd07cf8f71629%2Cc6a6b0a57cc507f37e453a07840e6b03%2C570616cc7855d94e2cab1953000cc7d6&MediaTypes=Audio%2CVideo&EnableTotalRecordCount=false
2018-11-08 23:14:24.134 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Items/e32772429a633be3d4f397d7c2fd1812/Images/Primary?width=80&tag=a29f6d29db8a27dc2ec7c1c57c78655d&quality=90. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:24.134 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Items/570616cc7855d94e2cab1953000cc7d6/Images/Primary?width=80&tag=e168529f0eaa53da07d0d737d21e79cc&quality=90. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:24.134 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Items/f48daa3750c470146e21aff5575705b7/Images/Primary?width=80&tag=dc0fe6f123a8dcf4294cd38099fea573&quality=90. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:24.137 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 4ms. http://192.168.1.111:8096/emby/Items/570616cc7855d94e2cab1953000cc7d6/Images/Primary?width=80&tag=e168529f0eaa53da07d0d737d21e79cc&quality=90
2018-11-08 23:14:24.140 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 6ms. http://192.168.1.111:8096/emby/Items/f48daa3750c470146e21aff5575705b7/Images/Primary?width=80&tag=dc0fe6f123a8dcf4294cd38099fea573&quality=90
2018-11-08 23:14:24.142 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 8ms. http://192.168.1.111:8096/emby/Items/e32772429a633be3d4f397d7c2fd1812/Images/Primary?width=80&tag=a29f6d29db8a27dc2ec7c1c57c78655d&quality=90
2018-11-08 23:14:34.073 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Video. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:34.073 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Audio. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:34.073 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items?SortBy=SortName&SortOrder=Ascending&IncludeItemTypes=Movie&Recursive=true&Fields=PrimaryImageAspectRatio%2CMediaSourceCount%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&StartIndex=0&Limit=100&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:34.074 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Shows/NextUp?Limit=24&Fields=PrimaryImageAspectRatio%2CSeriesInfo%2CDateCreated%2CBasicSyncInfo&UserId=3e6a9db0d04a418c97a1489c87de2d8d&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&EnableTotalRecordCount=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:34.074 Info HttpServer: HTTP GET http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0
2018-11-08 23:14:34.079 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 6ms. http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Video
2018-11-08 23:14:34.079 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 6ms. http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items/Resume?Limit=12&Recursive=true&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&EnableTotalRecordCount=false&MediaTypes=Audio
2018-11-08 23:14:34.079 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 6ms. http://192.168.1.111:8096/emby/Shows/NextUp?Limit=24&Fields=PrimaryImageAspectRatio%2CSeriesInfo%2CDateCreated%2CBasicSyncInfo&UserId=3e6a9db0d04a418c97a1489c87de2d8d&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&EnableTotalRecordCount=false
2018-11-08 23:14:34.085 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 12ms. http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items/Latest?Limit=16&Fields=PrimaryImageAspectRatio%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CThumb&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805
2018-11-08 23:14:34.092 Info HttpServer: HTTP Response 200 to 172.17.0.1. Time: 19ms. http://192.168.1.111:8096/emby/Users/3e6a9db0d04a418c97a1489c87de2d8d/Items?SortBy=SortName&SortOrder=Ascending&IncludeItemTypes=Movie&Recursive=true&Fields=PrimaryImageAspectRatio%2CMediaSourceCount%2CBasicSyncInfo&ImageTypeLimit=1&EnableImageTypes=Primary%2CBackdrop%2CBanner%2CThumb&StartIndex=0&Limit=100&ParentId=f137a2dd21bbc1b99aa5c0f6bf02a805
2018-11-08 23:14:36.455 Info App: Transcoding kill timer stopped for JobId b1209b73-a86b-400e-8e0e-f5c914cacb8f PlaySessionId b249795255aa47f590cbdd11f06cdae1. Killing transcoding

Edited by max096
Link to comment
Share on other sites

The two ports 8096 and 8920 are only TCP or UDP too? And those are the only once required?

 

I´ll try to run it in the host network and do some firewalld config similar to plex.

 

Essentially, this is what I have right now

<?xml version="1.0" encoding="utf-8"?>
<service>
  <short>embyserver</short>
  <description>Ports required by embyserver.</description>
  <port protocol="tcp" port="8096"></port>
  <port protocol="tcp" port="8920"></port>
</service>

Let´s see if that works. xD

 

Dang it.

[root@[member="Max"] services]# sudo firewall-cmd --add-service=embyserver --permanent
You're performing an operation over default zone ('public'),
but your connections/interfaces are in zone 'trusted' (see --get-active-zones)
You most likely need to use --zone=trusted option.

success

Well... I´ll figure it out eventually I guess. Docker and firewalld sometimes don´t really work all that well togeter... -.-

Edited by max096
Link to comment
Share on other sites

It´s now giving me this error

2018-11-09 20:10:08.922 Error Dlna: Error in BeginListeningForBroadcasts
        *** Error Report ***
        Version: 3.5.3.0
        Command line: /system/EmbyServer.dll -programdata /config -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
        Operating system: Unix 3.10.0.862
        64-Bit OS: True
        64-Bit Process: True
        User Interactive: True
        Processor count: 8
        Program data path: /config
        Application directory: /system
        System.Net.Sockets.SocketException (98): Address already in use
           at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
           at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
           at System.Net.Sockets.Socket.Bind(EndPoint localEP)
           at Emby.Server.Implementations.Net.UdpSocket..ctor(Socket socket, Int32 localPort, IPAddress ip)
           at Emby.Server.Implementations.Net.SocketFactory.CreateUdpMulticastSocket(String ipAddress, Int32 multicastTimeToLive, Int32 localPort)
           at Rssdp.Infrastructure.SsdpCommunicationsServer.ListenForBroadcastsAsync()
           at Rssdp.Infrastructure.SsdpCommunicationsServer.BeginListeningForBroadcasts()
        System.Net.Sockets.SocketException
           at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, String callerName)
           at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
           at System.Net.Sockets.Socket.Bind(EndPoint localEP)
           at Emby.Server.Implementations.Net.UdpSocket..ctor(Socket socket, Int32 localPort, IPAddress ip)
           at Emby.Server.Implementations.Net.SocketFactory.CreateUdpMulticastSocket(String ipAddress, Int32 multicastTimeToLive, Int32 localPort)
           at Rssdp.Infrastructure.SsdpCommunicationsServer.ListenForBroadcastsAsync()
           at Rssdp.Infrastructure.SsdpCommunicationsServer.BeginListeningForBroadcasts()

It´s loading more artwork than before especially animes are starting to show up. Some are wrong. But movies are still missing.

Edited by max096
Link to comment
Share on other sites

if you finished the first time library scan without a network connection, then internet metadata will have failed and the server will not retry. now that you've established a network connection, you will need to either do manual refreshes of items missing images, or do a manual refresh on your entire movie library, or you could just remove the movie library and then add it again.

Link to comment
Share on other sites

Seems to work now I just removed it and added it again.Still what does the error mean I got now?

Edited by max096
Link to comment
Share on other sites

You can ignore that. Thanks.

 

Ok thanks. I read that already elsewhere. But it´s not a particularly satisfying responce. Thought maybe at this time you might have more to say about it. But it´s fine.

 

So now the PLEX vs EMBY war can truly begin i suppose. xD

 

Thank you for your help!

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...