Glam Prestige Journal

Bright entertainment trends with youth appeal.

GitHub Source Page

i'm using this really amazing video player in ubuntu, i just want to make little change in it's behaviour with subtitles (.srt files)

Default Behaviour

currently MPV shows subtitles which are hard coded in a video file or srt file which is exactly named as the video file, for eg it'll pick up the subtitle file if the name of video file is video.mkv and name of the subtitle file is video.srt , but it won't pick it up if it's different.

What I want to achieve

it should pick up any and all the subtitles which are available in the same folder as the video file, automatically

4 Answers

To provide an actual mpv only answer, you can specify the mechanism by which subtitle tracks are loaded in your mpv.conf file located at .config/mpv.conf as explained here in the mpv manual. In your case you would add sub-auto=all.

0

SMPlayer is a frontend for various media player programs, defaulting in modern versions to mpv. If you don't mind using it (since you'd be using mpv with some niceties), it gives this option for selecting subtitles:

enter image description here

It is available in Ubuntu's repositories, so a sudo apt-get install smplayer is enough to get it.

3

If you use mpv from the terminal you can type mpv [name of your file] --sub-files=[name of your srt file]. Actually you can add a list of srt files type man mpv for more info. Good luck.

In Linux, create a file mpv.conf in ~/.config/mpv and add the following lines:

--sub-auto=all
--sub-file-paths=sub:subtitles:Subs:<any_other_folder_with_subtitle_files>

You can add names of folder where subtitles are (could be a subdirectory within the folder of the movie) separated by :.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy