This commit is contained in:
Frank Skare
2019-03-27 21:41:44 +01:00
parent 636e36583d
commit 3ccb80f359
11 changed files with 178 additions and 110 deletions

View File

@@ -418,6 +418,8 @@ namespace mpvnet
foreach (string i in args)
if (!i.StartsWith("--") && File.Exists(i))
mp.commandv("loadfile", i, "append");
else if (!i.StartsWith("--") && i.StartsWith("http"))
mp.LoadURL(i);
mp.set_property_string("playlist-pos", "0");
@@ -437,6 +439,15 @@ namespace mpvnet
}
}
public static void LoadURL(string url)
{
int count = mp.get_property_int("playlist-count");
mp.commandv("loadfile", url, "append");
mp.set_property_int("playlist-pos", count);
for (int i = 0; i < count; i++)
mp.commandv("playlist-remove", "0");
}
public static void LoadFiles(string[] files)
{
int count = mp.get_property_int("playlist-count");