2024-08-21, 04:45 AM
The process I found on this reddit post appears to work. You use both ffmpeg and mp4muxer to create a proper remuxed DV5 file.
https://www.reddit.com/r/ffmpeg/comments...fmpeg_and/
https://github.com/DolbyLaboratories/dlb...n/mp4muxer
https://www.reddit.com/r/ffmpeg/comments...fmpeg_and/
https://github.com/DolbyLaboratories/dlb...n/mp4muxer
Code:
/usr/lib/jellyfin-ffmpeg/ffmpeg -i "/path/to/your/video.mp4" -c copy newFile.hevc
/usr/lib/jellyfin-ffmpeg/ffmpeg -i "/path/to/your/video.mp4" -c copy newFile.eac3
mv newFile.eac3 newFile.ec3 # for some reason mp4muxer doesn't like eac3 for the extension
mp4muxer --dv-profile 5 -i newFile.hevc -i newFile.ec3 --media-lang eng -o newFile.mp4