Playback error Plex Transcoder signal: Arithmetic exception 1.41.7.9795

What would really help me, which I’m trying to recreate here, is a full FFMPEG invocation command script, writing output to a file, which replicates it.

So far, I’ve replicated with your file but not with other TrueHD → EAC3

All I need is the base framework in a shell script to recreate then I can give it to Chris to run in the debugger ( LLDB )

Kinda looks like this. (I’ve got more work to do in order to test other (arbitrary) video files)

root@plex:~# cat runfpe.sh
#!/bin/bash

# Chuck incus
export PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR="/var/lib/plexmediaserver/Library/Application Support"
export EAE_ROOT=/tmp/pms-c7d2de92-b957-4812-927c-ce5919f4498c/EasyAudioEncoder
export FFMPEG_EXTERNAL_LIBS='/var/lib/plexmediaserver/Library/Application\ Support/Plex\ Media\ Server/Codecs/1c96867-c7c51eae1050ee8a09ae8dc1-linux-x86_64/'

#setup
mkdir -p "$EAE_ROOT"

"/usr/lib/plexmediaserver/Plex Transcoder" -codec:0 h264 -codec:1 truehd_eae -eae_prefix:1 dfbd7676-272c-42a7-97a2-6630eefe3db3-7309_ -ss 16 -noaccurate_seek -analyzeduration 20000000 -probesize 20000000 -i "/glock/media/testfiles/EAC3-FPE-Snippet.mkv" -map 0:0 -metadata:s:0 language=eng -codec:0 copy -filter_complex "[0:1] aresample=async=1:ochl='5.1(side)':rematrix_maxval=0.000000dB:osr=48000[0]" -map "[0]" -metadata:s:1 language=eng -codec:1 eac3_eae -eae_prefix:1 dfbd7676-272c-42a7-97a2-6630eefe3db3-7309_ -b:1 774k -break_non_keyframes 1 -segment_format mpegts -f ssegment -individual_header_trailer 0 -segment_time 1 -segment_start_number 16 -segment_copyts 1 -segment_time_delta 0.0625 -segment_list "http://127.0.0.1:32400/video/:/transcode/session/dfbd7676-272c-42a7-97a2-6630eefe3db3-7309/9842156f-9649-46fc-99c9-2d5dc2ae9c4f/manifest?X-Plex-Http-Pipeline=infinite" -segment_list_type csv -segment_list_size 5 -segment_list_separate_stream_times 1 -segment_list_unfinished 1 -max_delay 5000000 -avoid_negative_ts disabled -map_metadata -1 -map_chapters -1 "media-%05d.ts" -start_at_zero -copyts -y -nostats -loglevel quiet -loglevel_plex error 

If you can help me a bit, I’d greatly appreciate it. I’m overloaded and trying to catch up from being out

1 Like