You can use ffmpeg if you're familiar with command line:
Install ffmpeg on your computer
Identify Subtitle Streams:
Run:
ffmpeg -i input.mp4
Look for lines like Stream #0:2(eng): Subtitle: subrip or similar to find the subtitle stream index (e.g., 0:2).
Extract the Subtitle Track:
For the...