home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
General Support
Using VLC with mediaportal
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="samundsen" data-source="post: 103061" data-attributes="member: 28303"><p>Here is what I do... I don't use built in MP video player because I need to use different players for different file types (and MP only allows one external player to be set up), so I use a small VB script. The script is called MoviePlayer.vbs, and that is the "program" I set up as an external player in MP. The contents of the script is as follows:</p><p></p><p>Set oArgs = WScript.Arguments</p><p>sFilePath = oArgs(0)</p><p>Set oShell = CreateObject("WScript.Shell")</p><p></p><p>iRC = oShell.Run("""" & sFilePath & """")</p><p></p><p>Wscript.Quit iRC</p><p></p><p>This will take the file name of the movie file and launch it. The beauty of this is two-fold. First, when you use a regular batch file, it opens up a Command prompt window. This does not happen with this script, so your external player gains focus directly.</p><p></p><p>Second, it does not launch the external player directly, it launches the movie file, so you have to use file associations in Windows. I have Zoom Player associated with AVI files in windows, and QuickTime player associated with M4V files (iTunes downloads). </p><p></p><p>So all I do in MP is click on the movie, the script launches the associated movie in the right player. Zoom Player launches directly into full-screen, so you don't even notice it's there. QuickTime launches in a window, but I have mapped a key to my remote that switches it to full-screen with a key press.</p><p></p><p>Btw, I don't take credit for writing that script, I found it using Google, I've just modified it for my needs.</p></blockquote><p></p>
[QUOTE="samundsen, post: 103061, member: 28303"] Here is what I do... I don't use built in MP video player because I need to use different players for different file types (and MP only allows one external player to be set up), so I use a small VB script. The script is called MoviePlayer.vbs, and that is the "program" I set up as an external player in MP. The contents of the script is as follows: Set oArgs = WScript.Arguments sFilePath = oArgs(0) Set oShell = CreateObject("WScript.Shell") iRC = oShell.Run("""" & sFilePath & """") Wscript.Quit iRC This will take the file name of the movie file and launch it. The beauty of this is two-fold. First, when you use a regular batch file, it opens up a Command prompt window. This does not happen with this script, so your external player gains focus directly. Second, it does not launch the external player directly, it launches the movie file, so you have to use file associations in Windows. I have Zoom Player associated with AVI files in windows, and QuickTime player associated with M4V files (iTunes downloads). So all I do in MP is click on the movie, the script launches the associated movie in the right player. Zoom Player launches directly into full-screen, so you don't even notice it's there. QuickTime launches in a window, but I have mapped a key to my remote that switches it to full-screen with a key press. Btw, I don't take credit for writing that script, I found it using Google, I've just modified it for my needs. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
General Support
Using VLC with mediaportal
Contact us
RSS
Top
Bottom