2025-01-12, 04:47 PM
(This post was last modified: 2025-01-12, 04:49 PM by theguymadmax. Edited 1 time in total.)
(2025-01-12, 04:12 PM)TheDreadPirate Wrote:Code:cd C:\Program Files\Jellyfin
ffmpeg.exe -i "C:\path\to\INFILE.mkv" -map 0:v:0 -map 0:a:0 -c copy "C:\OUTFILE.mp4"
On Windows, the correct Jellyfin path should be C:\Program Files\Jellyfin\Server\
Also, the c:\ drive is usually protected, so ensure your output is in another folder.
Code:
Run this from PowerShell:
cd 'C:\Program Files\Jellyfin\Server\'
then
.\ffmpeg.exe -i "C:\path\to\INFILE.mkv" -map 0:v:0 -map 0:a:0 -c copy "C:\temp\OUTFILE.mp4"