0 Members and 1 Guest are viewing this topic.
Are you sure that this is what happened and that you did not just upload the wrong version? Ockham's razor and all that...It seems an extraordinary length for someone to go to over a harmless physics video.
The subtitles may just be a overlay which was lost when the video was transcoded by the video-host.If you burn the subtitles into the video that should solve the problem ... https://trac.ffmpeg.org/wiki/HowToBurnSubtitlesIntoVideo
#!/bin/bashffmpeg -i input.mp4 -vf "drawtext=enable='between(t, 28*60, 30*60)': fontfile=/usr/share/fonts/TTF/DejaVuSans.ttf: text=\'My text here..Something'\: fontcolor=blue: fontsize=22: box=0: x=(w-text_w)/20: y=(h-text_h)/20,drawtext=enable='between(t, 31*60 + 25, 32*60 + 6)': fontfile=/usr/share/fonts/TTF/DejaVuSans.ttf: text=\'Other text.'\: fontcolor=blue: fontsize=22: box=0: x=(w-text_w)/20: y=(h-text_h)/20" -vcodec libx264 -preset fast -crf 24 -codec:a copy output.mp4