I want to use a command for mpv
video player that would play the VIDEO_TS folder (which in the case of MPV means starting directly the main video of the DVD. The main advantage of this is that in this way MPV can play a DVD movie with external subtitles.)
Normally this can be achieved by drag&drop VIDEO_TS folder onto the player window, which is similar to mpv file:///media/username/NAME-OF-DVD/VIDEO_TS
.
MPV is not good at using DVD menus and multiple streams: mpv /dev/sr0
plays all DVD contents including menus one after the other as one stream and that beats my purpose.
On the other hand, as the name of the dvd varies, mpv file:///media/username/NAME-OF-DVD/VIDEO_TS
cannot be used as a generic command to start DVD the way I want (namely the VIDEO_TS folder of the DVD).
Is there a such generic path to the VIDEO_TS folder that can be used to have a generic command to play that folder?
There is also the more generic question if it is possible to specify a path in which one of the directory names is variable.
mpv dvd:// --dvd-device=/media/username/*/
– Feb 18 '16 at 17:07mpv /media/username/*/VIDEO_TS
as indicated in my answer.mpv dvd:// --dvd-device=/media/username/*/VIDEO_TS
also doesn't work. – Feb 18 '16 at 17:18