View Single Post
Old 20th September 2017, 11:58   #2  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
You need a software to extract. Like ffmpeg or mkvtoolnix. They may or may not already be installed. Open the terminal and navigate to the folder with your mkv file. Then either
ffmpeg -i "inputfile.mkv" -c copy "output.srt"
or
mkvextract tracks "inputfile.mkv" "2:output.srt"
(extracts the second track if track counting starts at 0. You can see the IDs using: mkvmerge -i "inputfile.mkv")
sneaker_ger is offline   Reply With Quote