22

When I play videos in mplayer it sometimes shows subtitles. How can I turn them off?

And can I change mplayer.conf so they are off by default?

Colonel Panic
  • 12,549

4 Answers4

29

Try hitting the v on your keyboard.

Devid
  • 6,455
  • 13
  • 58
  • 75
6

There are also CLI options -nosub (for disabling subtitles that come within an .mkv, for example) and -noautosub (for disabling external subtitles from a separate file).

So, to run a video without any subtitles, you can do the following:

mplayer -noautosub -nosub filename.mkv
jojman
  • 483
  • 1
  • 5
  • 18
4

As @Devid said, v is the shortcut for it. But you could also change the mpv.conf file:

sub-visibility=no # Disable display of subtitles, but still load them if available.

Sources:

psygo
  • 176
3

Depends on the video:

  1. Some videos have subtitles hard-coded in (i.e. overlayed on the picture, won't remove).
  2. Others have a separate subtitle track (external file)...
  3. Others still may have a track encoded in it that have them.

But v is the keyboard toggle during playback. Types 2/3 this should work for - type 1 you are "SOL".

nerdwaller
  • 18,014