Log in

View Full Version : FFmpeg Burn In .ass Subtitles Error


jay123210599
6th August 2024, 18:25
In ffmpeg, how do I burn in .ass subtitles if they're embedded in the video?

GeoffreyA
6th August 2024, 19:22
Use the name of the video in the subtitles filter:

ffmpeg -i INPUT.mkv -vf subtitles=INPUT.mkv -c:v libx264 -c:a copy OUTPUT.mp4

jay123210599
6th August 2024, 20:48
Use the name of the video in the subtitles filter:

ffmpeg -i INPUT.mkv -vf subtitles=INPUT.mkv -c:v libx264 -c:a copy OUTPUT.mp4

it worked, thanks.