Server Version#: 1.21.1.3830
Docker Image#: linuxserver/plex & plexinc/pms-docker:plexpass
Player Version#: Web
I’m running Plex on an Ubuntu host (20.04 LTS server) running the linuxserver/plex docker image with media library stored on an NFS network mount (Synology box). Recently on new content I’m getting this common error
[Transcoder] [eac3_eae @ 0x22173c0] EAE timeout! EAE not running, or wrong folder? Could not read '/tmp/pms-2926bccf-f43d-4f14-8607-f5836084e658/EasyAudioEncoder/Convert to WAV (to 8ch or less)/8ctyiea5iufon49t9n74vjg8_816-0-2.wav'
As far as I can tell, this error is only occurring on new content added to my library.
Here is my troubleshooting so far:
increasing max_user_watches on host
dockerhost:~$ sudo sysctl -p
fs.inotify.max_user_watches = 32768
ensuring version 4 on nfs mount
10.0.10.42:/volume1/Entertainment /home/user/nfs/Entertainment nfs sec=sys,intr,vers=4,rw,auto,nofail 0 0
use plexinc/pms-docker container instead
Same issue which is really confusing me
use transcoding directory outside of container and ensuring r/rw permissions
dockerhost:~$ ls -alh | grep pms
drwxr-xr-x 3 user user 4.0K Dec 22 17:25 plex_config
drwxrwxrwx 3 user user 4.0K Dec 31 09:34 plex_transcode
ensuring adequate disk space
dockerhost:~$ df -h
Filesystem Size Used Avail Use% Mounted on
udev 16G 0 16G 0% /dev
tmpfs 3.2G 2.6M 3.2G 1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 438G 299G 118G 72% /
tmpfs 16G 0 16G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 16G 0 16G 0% /sys/fs/cgroup
/dev/nvme0n1p2 976M 199M 711M 22% /boot
/dev/nvme0n1p1 511M 7.8M 504M 2% /boot/efi
/dev/loop0 56M 56M 0 100% /snap/core18/1932
10.0.10.42:/volume1/Entertainment 21T 19T 2.5T 89% /home/user/nfs/Entertainment
tmpfs 3.2G 0 3.2G 0% /run/user/1000
I’ve also tried disabling transcoding, mounting the the hosts /tmp directory.
My initial docker container setup was (prior to mounting /tmp & plex_transcode directories
docker run -d \
--name=plex \
--net=host \
-e PUID=1000 \
-e PGID=1000 \
-e VERSION=docker \
-e UMASK_SET=022 \
-v /home/user/plex_config:/config \
-v /home/user/nfs/Entertainment:/tv \
--restart unless-stopped \
linuxserver/plex
I’m not sure what other troubleshooting to do. This error is really common, I’ve looked at dozens of posts but still haven’t found a solution. Any tips would be appreciated.
It is so painful to read people calling them “dockers”.
I tried hosting the videos that were having problems directly on the host machine instead of the NFS mount but I’m having the same issue.