support for autocreate-playlist, video-exts, audio-exts, image-exts
This commit is contained in:
@@ -236,9 +236,9 @@ public class GuiCommand
|
||||
|
||||
switch (perceivedType)
|
||||
{
|
||||
case "video": extensions = FileTypes.Video; break;
|
||||
case "audio": extensions = FileTypes.Audio; break;
|
||||
case "image": extensions = FileTypes.Image; break;
|
||||
case "video": extensions = FileTypes.GetVideoExts(); break;
|
||||
case "audio": extensions = FileTypes.GetAudioExts(); break;
|
||||
case "image": extensions = FileTypes.GetImgExts(); break;
|
||||
}
|
||||
|
||||
try
|
||||
@@ -284,13 +284,13 @@ public class GuiCommand
|
||||
|
||||
if (File.Exists(path) && osd)
|
||||
{
|
||||
if (FileTypes.Audio.Contains(path.Ext()))
|
||||
if (FileTypes.IsAudio(path.Ext()))
|
||||
{
|
||||
text = Player.GetPropertyOsdString("filtered-metadata");
|
||||
Player.CommandV("show-text", text, "5000");
|
||||
return;
|
||||
}
|
||||
else if (FileTypes.Image.Contains(path.Ext()))
|
||||
else if (FileTypes.IsImage(path.Ext()))
|
||||
{
|
||||
fileSize = new FileInfo(path).Length;
|
||||
|
||||
|
||||
@@ -21,23 +21,11 @@ default = yes
|
||||
option = yes
|
||||
option = no
|
||||
|
||||
name = video-file-extensions
|
||||
file = mpvnet
|
||||
name = image-exts
|
||||
file = mpv
|
||||
directory = General
|
||||
width = 500
|
||||
help = Video file extensions used to create file associations and used by the auto-load-folder feature. (mpv.net option)
|
||||
|
||||
name = audio-file-extensions
|
||||
file = mpvnet
|
||||
directory = General
|
||||
width = 500
|
||||
help = Audio file extensions used to create file associations and used by the auto-load-folder feature. (mpv.net option)
|
||||
|
||||
name = image-file-extensions
|
||||
file = mpvnet
|
||||
directory = General
|
||||
width = 500
|
||||
help = Image file extensions used to create file associations and used by the auto-load-folder feature. (mpv.net option)
|
||||
help = Image file extentions to try to match when using --cover-art-auto, --autocreate-playlist or --directory-filter-types. By mpv.net used to create file associations and used by the auto-load-folder feature.
|
||||
|
||||
name = menu-syntax
|
||||
file = mpvnet
|
||||
@@ -790,6 +778,12 @@ file = mpv
|
||||
directory = Video/Screenshot
|
||||
help = <0-5> Set the filter applied prior to PNG compression. 0 is none, 1 is 'sub', 2 is 'up', 3 is 'average', 4 is 'Paeth', and 5 is 'mixed'. This affects the level of compression that can be achieved. For most images, 'mixed' achieves the best compression ratio, hence it is the default.
|
||||
|
||||
name = video-exts
|
||||
file = mpv
|
||||
directory = Video
|
||||
width = 500
|
||||
help = Video file extentions to try to match when using --autocreate-playlist or --directory-filter-types. By mpv.net used to create file associations and used by the auto-load-folder feature.
|
||||
|
||||
name = volume
|
||||
file = mpv
|
||||
directory = Audio
|
||||
@@ -833,6 +827,12 @@ default = yes
|
||||
option = yes
|
||||
option = no
|
||||
|
||||
name = audio-exts
|
||||
file = mpv
|
||||
directory = Audio
|
||||
width = 500
|
||||
help = Audio file extentions to try to match when using --audio-file-auto, --autocreate-playlist or --directory-filter-types. By mpv.net used to create file associations and used by the auto-load-folder feature.
|
||||
|
||||
name = slang
|
||||
file = mpv
|
||||
directory = Subtitle
|
||||
@@ -1097,10 +1097,19 @@ file = mpv
|
||||
directory = Playback
|
||||
help = <N|inf|force|no> Loops playback N times. A value of 1 plays it one time (default), 2 two times, etc. inf means forever. no is the same as 1 and disables looping. If several files are specified on command line, the entire playlist is looped. The force mode is like inf, but does not skip playlist entries which have been marked as failing. This means the player might waste CPU time trying to loop a file that doesn't exist. But it might be useful for playing webradios under very bad network conditions.
|
||||
|
||||
name = autocreate-playlist
|
||||
file = mpv
|
||||
directory = Playback
|
||||
help = When opening a local file, act as if the parent directory is opened and create a playlist automatically.\n\nno: Load a single file (mpv default).\n\nFilter: Create a playlist from the parent directory with files matching --directory-filter-types. (mpv.net default)\n\nsame: Create a playlist from the parent directory with files matching the same category as the currently loaded file. One of the *-exts is selected based on the input file and only files with matching extensions are added to the playlist. If the input file itself is not matched to any extension list, the playlist is not autogenerated.
|
||||
default = filter
|
||||
option = no
|
||||
option = filter
|
||||
option = same
|
||||
|
||||
name = auto-load-folder
|
||||
file = mpvnet
|
||||
directory = Playback
|
||||
help = For single files automatically load the entire directory into the playlist. (mpv.net option)
|
||||
help = For single files automatically load the entire directory into the playlist. (deprecated mpv.net option, autocreate-playlist can be used instead)
|
||||
default = yes
|
||||
option = yes
|
||||
option = no
|
||||
|
||||
Reference in New Issue
Block a user