Extract subtitles from movie
If you have the command line ffmpeg installed you can use:
ffmpeg -hide_banner -i Movie.mkv -map 0:s:0 subs.srt
Mapping depends on the subtitle track you want. if its the second one then use:
-map 0:s:1
Works with mp4 too.