I have to say I am abit disapointed that this isn't even an option! more disappointed that I paid forthesoftware after loving the free version as its bosted you got a RAW file (not encoded) so I bought it as I use this software mainly for cutting up Anime videos that I have converted from blu ray to .mkv.
Obviously some of these are in Japanese and have subtitles which I need! and the software doesn't support.
I know this wont help but I use FFmpeg to encode to x265 with subtitles is this code compatible with badicut:
SET /A ffmpeg_qv=22
for /R %%A in (*.mp4, *.mkv) do (
echo Processing "%%A"
ffmpeg -hwaccel auto -i "%%A" -pix_fmt p010le -map 0:v -map 0:a -map 0:s -map_metadata 0 -c:v hevc_nvenc -rc constqp -qp %ffmpeg_qv% -b:v 0K -c:a copy -c:s copy -movflags +faststart -movflags use_metadata_tags "M:\%%~nA.mkv"
echo Processed %%A
)
PAUSE
would be really nice if it can be as I really like the software and dont want it to be a total waste of money for me.
Thanks
Chris