2025-09-18, 03:46 AM
First of all, it looks like there are multiple runs stored in this file. This is not obvious advice, but you may want to consider deleted the log before you debug, so we only have one run to look at.
With that said, it seems that something is not being found. For troubleshooting purposes, try opening up Powershell, running each the following commands, and reporting back what you get.
The first two will give us some statistics on the files within your two paths (most notably, ownership permissions). The third tests the ffmpeg executable itself, to see that it actually runs.
With that said, it seems that something is not being found. For troubleshooting purposes, try opening up Powershell, running each the following commands, and reporting back what you get.
Code:
dir /Q "C:\Program Files\Jellyfin\Server"
dir /Q "C:\WINDOWS\system32"
"C:\Program Files\Jellyfin\Server\ffmpeg.exe" -L
The first two will give us some statistics on the files within your two paths (most notably, ownership permissions). The third tests the ffmpeg executable itself, to see that it actually runs.