Jump to content

Recommended Posts

Posted (edited)

Moved to its own post

Edited by sebasmiles
  • 4 weeks later...
Posted

As no one seems to care about the other thread, here a link to it:

An updated or downgraded FFmpeg to me should help here. Can't seem to get it done on my own.

Come on guys...

Posted
6 hours ago, ahrendt said:

As no one seems to care about the other thread, here a link to it:

An updated or downgraded FFmpeg to me should help here. Can't seem to get it done on my own.

Come on guys...

Hi there, one posting is enough. You will get a response. Thanks !

Posted

Interesting I've just updated the docker image (unRaid) and now I don't see any media on the homepage. The server version shows as 4.5.2.0 as it did both before and after the update.

Posted
8 hours ago, nomisco said:

Interesting I've just updated the docker image (unRaid) and now I don't see any media on the homepage. The server version shows as 4.5.2.0 as it did both before and after the update.

You should include the relevant log files, as they need a place to start to diagnose.

BAlGaInTl
Posted
On 12/1/2020 at 1:52 PM, nomisco said:

Interesting I've just updated the docker image (unRaid) and now I don't see any media on the homepage. The server version shows as 4.5.2.0 as it did both before and after the update.

I'm running Emby on Unraid without issues.  Do you know which container you are using?  I believe I'm using the official Emby one.

Posted
On 11/27/2020 at 3:32 PM, ahrendt said:

As no one seems to care about the other thread, here a link to it:

An updated or downgraded FFmpeg to me should help here. Can't seem to get it done on my own.

Come on guys...

For anyone following, Intel's just updated their iHD driver to resolve the hardware encoding/decoding issues with Gemini Lake (see #930)

https://github.com/intel/media-driver/pull/1078 

adminExitium
Posted

Slightly off-topic, but is it fine to override the included iHD driver with a newer version when intel releases them?

Posted (edited)
32 minutes ago, adminExitium said:

Slightly off-topic, but is it fine to override the included iHD driver with a newer version when intel releases them?

Probably yes, but your mileage may vary. You'll need the driver to at least be built against the same major release of libva that we ship, maybe even minor release depending on intel's requirements on newer drivers. Note that libva 2.9.0 just came out, and if Intel decides to go 3.0 instead of 2.10 after that, this will be a breaking change, drivers built for libva 2.x won't work with libva 3.x.

Edited by alucryd
adminExitium
Posted

Thanks for the reply. Can you please let me know how to check the libva version that Emby was built with?

Posted
2 hours ago, adminExitium said:

Thanks for the reply. Can you please let me know how to check the libva version that Emby was built with?

You can check /lib in the docker container, you will find a file similar to libva.so.2.1000.0, this means we ship 2.10, and yes, 2.10 is out so 3.0 isn't on the horizon yet. Next emby betas will likely ship 2.10.

  • Like 1
  • 4 weeks later...
Posted (edited)

The latest version of the driver (with libva 2.10) has resolved many encode/decode issues on Gemini Lake. Not all of them (yet) but still a big improvement.

Edited by Anon28109
Posted
5 hours ago, Anon28109 said:

The latest version of the driver (with libva 2.10) has resolved many encode/decode issues on Gemini Lake. Not all of them (yet) but still a big improvement.

Thanks for the feedback !

Posted
1 hour ago, Luke said:

Thanks for the feedback !

Oh sorry, I should have been clear I was referring to a different container - have you integrated the latest Intel driver into Emby? It's not in my stable version.

Posted
10 hours ago, Anon28109 said:

Oh sorry, I should have been clear I was referring to a different container - have you integrated the latest Intel driver into Emby? It's not in my stable version.

The beta version ships with the very latest libva and intel drivers, they will land in the next stable.

  • Like 1
Posted
12 hours ago, alucryd said:

The beta version ships with the very latest libva and intel drivers, they will land in the next stable.

That's great news! Thank you!

  • 2 weeks later...
Posted (edited)

Would someone be able to tell me why my docker container runs /system/EmbyServer as user bin with id 2 ?

My docker compose PUID setting  is set to 1000

Im baffled.

 

EDIT

Solved. Ignore me.

Edited by embyben
Posted

Hi, I'm using emby on a raspberry pi2 with docker.
I run the container with this command:
 

docker run \
    --name=/emby \
    -e PUID=1000 \
    -e PGID=1000 \
    -e TZ=Europe/Rome \
    -p 8060:8096 \
    -p 8062:8920 `#optional` \
    --volume="/local_drive/docker_emby/config:/config:rw" \
    --volume="/local_drive/Film/2D:/data/movies/2D:rw" \
    --volume="/opt/vc/lib:/opt/vc/lib" \
    --restart unless-stopped \
    --detach=true \
    ghcr.io/linuxserver/emby;

container starts, docker log for container says:
 

[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-envfile: executing...
[cont-init.d] 01-envfile: exited 0.
[cont-init.d] 10-adduser: executing...

-------------------------------------
          _         ()
         | |  ___   _    __
         | | / __| | |  /  \
         | | \__ \ | | | () |
         |_| |___/ |_|  \__/


Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid:    1000
User gid:    100
-------------------------------------

[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 30-config: executing...
[cont-init.d] 30-config: exited 0.
[cont-init.d] 40-gid-video: executing...
[emby-init] Pi Libs detected loading
[cont-init.d] 40-gid-video: exited 0.
[cont-init.d] 99-custom-scripts: executing...
[custom-init] no custom files found exiting...
[cont-init.d] 99-custom-scripts: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.

But no response on localhost:8060 and no emby logs found jumping in the container.
Any hints?

Posted
17 minutes ago, mcgyver83 said:

Hi, I'm using emby on a raspberry pi2 with docker.
I run the container with this command:
 


docker run \
    --name=/emby \
    -e PUID=1000 \
    -e PGID=1000 \
    -e TZ=Europe/Rome \
    -p 8060:8096 \
    -p 8062:8920 `#optional` \
    --volume="/local_drive/docker_emby/config:/config:rw" \
    --volume="/local_drive/Film/2D:/data/movies/2D:rw" \
    --volume="/opt/vc/lib:/opt/vc/lib" \
    --restart unless-stopped \
    --detach=true \
    ghcr.io/linuxserver/emby;

container starts, docker log for container says:
 


[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-envfile: executing...
[cont-init.d] 01-envfile: exited 0.
[cont-init.d] 10-adduser: executing...

-------------------------------------
          _         ()
         | |  ___   _    __
         | | / __| | |  /  \
         | | \__ \ | | | () |
         |_| |___/ |_|  \__/


Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid:    1000
User gid:    100
-------------------------------------

[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 30-config: executing...
[cont-init.d] 30-config: exited 0.
[cont-init.d] 40-gid-video: executing...
[emby-init] Pi Libs detected loading
[cont-init.d] 40-gid-video: exited 0.
[cont-init.d] 99-custom-scripts: executing...
[custom-init] no custom files found exiting...
[cont-init.d] 99-custom-scripts: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.

But no response on localhost:8060 and no emby logs found jumping in the container.
Any hints?

Hi, can you try our Docker container and see how that compares?

https://emby.media/docker-server.html

Thanks.

Posted

Hello,

First of all, thanks in advance for any help you can give me and feel free to ask anything else if you need more information.

Emby docker just stop after few seconds, here are some information:

It's a N1 box running Openwrt and it contains docker.

  Quote

docker run -d \
 --volume /mnt/sda3/tmp/emby/config:/config \
 --volume /mnt/sda3/Midia/Filmes:/mnt/share1 \
 --device /dev/dri \
 --publish 8096:8096 \
 --publish 8920:8920 \
 --env UID=0 \
 --env GID=0\
 --env GIDLIST=100 \
 emby/embyserver_arm64v8:latest

Expand  
  Quote
Hostname OpenWrt
Model Phicomm N1 (CpuMark : 18568.665377 Scores)
Architecture ARMv8 Processor rev 4 (v8l) x 4
Firmware Version OpenWrt R20.7.20 / LuCI Master (git-20.190.41443-b753998)
Kernel Version 5.7.10-flippy-40+
Local Time Tue Jan 26 17:59:46 2021
Uptime 6d 2h 9m 58s
CPU状态 1512Mhz / 51.0℃
  Quote

stdout: [s6-init] making user provided files available at /var/run/s6/etc...exited 0.
stdout: [s6-init] ensuring user provided files have correct perms...exited 0.
stdout: [fix-attrs.d] applying ownership & permissions fixes...
stdout: [fix-attrs.d] done.
stdout: [cont-init.d] executing container initialization scripts...
stdout: [cont-init.d] done.
stdout: [services.d] starting services
stdout: [services.d] done.
stderr: Failed to create CoreCLR, HRESULT: 0x80004005
stdout: [cont-finish.d] executing container finish scripts...
stdout: [cont-finish.d] done.
stdout: [s6-finish] waiting for services.
stdout: [s6-finish] sending all processes the TERM signal.
stdout: [s6-finish] sending all processes the KILL signal and exiting.
stdout: [s6-init] making user provided files available at /var/run/s6/etc...exited 0.
stdout: [s6-init] ensuring user provided files have correct perms...exited 0.
stdout: [fix-attrs.d] applying ownership & permissions fixes...
stdout: [fix-attrs.d] done.
stdout: [cont-init.d] executing container initialization scripts...
stdout: [cont-init.d] done.
stdout: [services.d] starting services
stdout: [services.d] done.
stderr: Failed to create CoreCLR, HRESULT: 0x80004005
stdout: [cont-finish.d] executing container finish scripts...
stdout: [cont-finish.d] done.
stdout: [s6-finish] waiting for services.
stdout: [s6-finish] sending all processes the TERM signal.
stdout: [s6-finish] sending all processes the KILL signal and exiting.

Posted
9 hours ago, Luke said:

Hi, can you try our Docker container and see how that compares?

https://emby.media/docker-server.html

Thanks.

Using the docker run command from here (your suggestion) I can see others logs after the lines posted above and emby starts

Posted
On 1/29/2021 at 11:36 AM, ivolanski said:

Hello,

First of all, thanks in advance for any help you can give me and feel free to ask anything else if you need more information.

Emby docker just stop after few seconds, here are some information:

It's a N1 box running Openwrt and it contains docker.

  Quote

docker run -d \
 --volume /mnt/sda3/tmp/emby/config:/config \
 --volume /mnt/sda3/Midia/Filmes:/mnt/share1 \
 --device /dev/dri \
 --publish 8096:8096 \
 --publish 8920:8920 \
 --env UID=0 \
 --env GID=0\
 --env GIDLIST=100 \
 emby/embyserver_arm64v8:latest

Expand  
  Quote
Hostname OpenWrt
Model Phicomm N1 (CpuMark : 18568.665377 Scores)
Architecture ARMv8 Processor rev 4 (v8l) x 4
Firmware Version OpenWrt R20.7.20 / LuCI Master (git-20.190.41443-b753998)
Kernel Version 5.7.10-flippy-40+
Local Time Tue Jan 26 17:59:46 2021
Uptime 6d 2h 9m 58s
CPU状态 1512Mhz / 51.0℃
  Quote

stdout: [s6-init] making user provided files available at /var/run/s6/etc...exited 0.
stdout: [s6-init] ensuring user provided files have correct perms...exited 0.
stdout: [fix-attrs.d] applying ownership & permissions fixes...
stdout: [fix-attrs.d] done.
stdout: [cont-init.d] executing container initialization scripts...
stdout: [cont-init.d] done.
stdout: [services.d] starting services
stdout: [services.d] done.
stderr: Failed to create CoreCLR, HRESULT: 0x80004005
stdout: [cont-finish.d] executing container finish scripts...
stdout: [cont-finish.d] done.
stdout: [s6-finish] waiting for services.
stdout: [s6-finish] sending all processes the TERM signal.
stdout: [s6-finish] sending all processes the KILL signal and exiting.
stdout: [s6-init] making user provided files available at /var/run/s6/etc...exited 0.
stdout: [s6-init] ensuring user provided files have correct perms...exited 0.
stdout: [fix-attrs.d] applying ownership & permissions fixes...
stdout: [fix-attrs.d] done.
stdout: [cont-init.d] executing container initialization scripts...
stdout: [cont-init.d] done.
stdout: [services.d] starting services
stdout: [services.d] done.
stderr: Failed to create CoreCLR, HRESULT: 0x80004005
stdout: [cont-finish.d] executing container finish scripts...
stdout: [cont-finish.d] done.
stdout: [s6-finish] waiting for services.
stdout: [s6-finish] sending all processes the TERM signal.
stdout: [s6-finish] sending all processes the KILL signal and exiting.

Hi, we'll help you in the topic you created. Thanks.

  • 1 month later...
Posted

Hi all. I'm running emby on an unRaid docker with NVIDIA pass through. I also have a 10 series i5 powering the server. Is it possible to pass through 2x gpus (NVIDIA + Intel) to emby? (would emby put them to use?)

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...