Normal
I use ZoomPlayer for everything else. The script is very simple, it simply launches the video file by itself, so that whatever player is associated to the file type in Windows is the application that launches.Btw, I didn't write the original script myself, I found it online, I just adapted it for my use.Here is the content of the script (I call it MoviePlayer.vbs, and I have configured MP to launch MoviePlayer.vbs as the external player.Set oArgs = WScript.ArgumentssFilePath = oArgs(0)Set oShell = CreateObject("WScript.Shell")iRC = oShell.Run("""" & sFilePath & """")Wscript.Quit iRC
I use ZoomPlayer for everything else. The script is very simple, it simply launches the video file by itself, so that whatever player is associated to the file type in Windows is the application that launches.
Btw, I didn't write the original script myself, I found it online, I just adapted it for my use.
Here is the content of the script (I call it MoviePlayer.vbs, and I have configured MP to launch MoviePlayer.vbs as the external player.
Set oArgs = WScript.Arguments
sFilePath = oArgs(0)
Set oShell = CreateObject("WScript.Shell")
iRC = oShell.Run("""" & sFilePath & """")
Wscript.Quit iRC