Hi all, I have a video with subtitles (as an srt file). I want to clip a fragment from it, scaling it down to a worse resolution, _and_ put the subtitles in the resulting clip.
This is how I do it now: time ffmpeg -y -i some_film.mp4 -ss 121052ms -to 140392ms -c:v libx264 -c:a copy -vf subtitles=some_film.srt -vf scale=240:-1 clip.mp4 However, this "burns the subtitles into the video", and I'd prefer to have them as a separate track. I tried this: time ffmpeg -y -i some_film.mp4 -i some_film.srt -ss 121052ms -to 140392ms -c:v libx264 -vf scale=240:-1 -c:a copy -c:s mov_text clip.mp4 but it didn't work - the clip was selected correctly, the resolution was correct, but I couldn't see the subtitles. What am I doing wrong? Thanks in advance, -- Marcin Borkowski https://mbork.pl https://crimsonelevendelightpetrichor.net/ _______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".