ffmpeg -i inputfile
returns:
Stream #0:0: Video: hevc ..... Stream #0:1(eng): Audio: aac .... Stream #0:2(eng): Subtitle: ... Stream #0:3(fre): Audio: aac .... Stream #0:4(fre): Subtitle: aac ....
ffmpeg -i inputfile.mkv -map 0:0 -map 0:1 -map 0:2 -c:v libx264 -preset fast -crf 25 -c:a copy -c:s copy english-output.mp4
NOTE: This extracts only the Video, English audio and Subtitles; but encodes the video (fast crf 25):