Hey there. I feel like I have been around in circles searching all posts related to hardcoding the MKV soft subtitles onto mp4 or avi. I don't have a separate file for the subtitles. My other option would be to hardcode them from mkv to mkv then just use my normal converter afterwards so I can have it in a format that plays through my tv. It's such a pain but I cannot understand Dutch lol.
I have tried ffmpeg, works great but doesn't include the subtitles. I have tried these:
alsoCode:set videos="C:\Temp\video.mkv" set output="C:\Temp\newfiles\new.mp4" for /r %%f in ("*.mkv") do ffmpeg -i "%%f" -c:v copy -c:a copy -map 0 -c:s copy %output% pause
andCode:for %%a in ("*.mkv") do ffmpeg -i "%%a" -vcodec copy -acodec copy "Temp\newfiles\new.mp4" pause
Code:set videos="C:\Temp\video.mkv" set output="C:\Temp\newfiles\new.mp4" for /r %%f in ("*.mkv") do ffmpeg -i "%%f" -c:v copy -c:a copy -filter_complex "[0:v:0][0:s:0]overlay[v]" -map "[v]" -map 0:s:0 -scodec copy -map 0:a:0 -acodec copy -c:v libx264 -crf 18 -c:s copy %output% pause
Any help appreciated!
+ Reply to Thread
Results 1 to 3 of 3
-
-
Use clever FFmpeg-GUI to burn in your embedded subtitle.
Load your mkv, click main,click encode videostream, click keep size, select the video codec you want (x264 recommended), then do as shown in the video and click encode.
When this is finished, click multiplex, the new video stream with the burned-in subtitle is displayed in green, select it on the left, deselect the original video stream (the blue one), select the audio stream(s) on the left, select mp4 as container and click multiplex.
Done.
[Attachment 75083 - Click to enlarge]Last edited by ProWo; 27th Nov 2023 at 02:45.
Similar Threads
-
High Speed Avi to mkv and mp4 to mkv converter needed
By RBCC in forum Video ConversionReplies: 4Last Post: 8th May 2022, 18:25 -
How to convert mkv (with subtitles) -> mp4 (with subtitles)
By covo in forum Video ConversionReplies: 4Last Post: 18th Oct 2021, 11:42 -
How to batch merge a mp4 video with several subtitles into a single mkv
By javidial in forum Video ConversionReplies: 4Last Post: 2nd Oct 2021, 14:06 -
Convert MKV to MP4 with subtitles hardcoded
By tomasrage in forum SubtitleReplies: 8Last Post: 9th Jan 2020, 22:36 -
How to make exact copy of a mkv/mp4... add subtitles
By jagman911 in forum Video ConversionReplies: 2Last Post: 3rd Dec 2018, 12:29