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
MediaPortal 1 Plugins
Blu-Ray / HD-DVD Player with PowerDVD (a working solution)
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="PVRJunky" data-source="post: 228778" data-attributes="member: 60513"><p>Hi everybody,</p><p>for those who can't wait for this plugin, I want to suggest a solution I have found somewhere (maybe even in this forum) and made it usable for me.</p><p>It is a little work to setup, but the result is a new menu entry in MP that closes or minimizes MP switches to the needed graphic card setup and starts PowerDVD in full screen, after closing PowerDVD it switches back the graphic card and starts MP again. </p><p></p><p>What do you need?</p><p>- <a href="http://www.autoitscript.com/autoit3/downloads.shtml" target="_blank">AutoItv3</a> which is a powerful program for scripting</p><p>- <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1649995&group_id=169721&atid=851496" target="_blank">MultiShortCutPlugin</a> The Plugin which is in the plugin section of the Team-mediaportal site is old. Use this link instead. You'll find the download link at the end of the page. The plugin is able to create menu entries that starts any programm you like from MP</p><p></p><p>How do you set it up?</p><p>If you want to change you graphiccard setup you have to find a way to setup a profile. For ATI cards it is quite simple. Start the ATI Catalyst Controlcenter. Save the standard profle with a specific name like "film" in my example in the profilemanager. Then setup the needed configuration for watching HD-videos in the ATI Catalyst Controlcenter and save the profile with a specific name like "HD24p" in my example . </p><p></p><p>Download AutoItV3 and install it. </p><p>Maybe you want also to download the AutoIt Editor Scite.</p><p></p><p>Run the editor</p><p>Create an script like this:</p><p>[CODE]; PowerDVD Start Skript</p><p></p><p>; close mediaportal</p><p>;ProcessClose("mediaportal.exe")</p><p></p><p>; change the Graphiccards Profile</p><p>$Program="C:\Programme\ATI Technologies\ATI.ACE\Core-Static\CLI.exe" </p><p>$Parameter= "Start Load profilename=" & chr(34) & "HD24p" & Chr(34)</p><p>ShellExecuteWait($Program,$Parameter)</p><p></p><p>; wait a second</p><p>Sleep(1000)</p><p></p><p>; start PowerDVD</p><p>Run("C:\Programme\CyberLink\PowerDVD\PowerDVD.exe")</p><p></p><p>; Maximize PowerDVD and set focus to PowerDVD</p><p>WinWait("CyberLink PowerDVD")</p><p>MouseClick("left", 1200, 540, 2, 1)</p><p>WinActivate("CyberLink PowerDVD")</p><p>MouseMove(1920, 540, 100)</p><p></p><p>; Wait untiul PowerDVD is closed</p><p>WinWaitClose("CyberLink PowerDVD")</p><p></p><p>; Set graphic card back to normal</p><p>$Program="C:\Programme\ATI Technologies\ATI.ACE\Core-Static\CLI.exe" </p><p>$Parameter= "Start Load profilename=" & chr(34) & "Film" & Chr(34)</p><p>ShellExecuteWait($Program,$Parameter)</p><p></p><p>; wait a second</p><p>Sleep(1000)</p><p></p><p>; rerun mediaportal</p><p>;Run("C:\Programme\Team MediaPortal\MediaPortal\Mediaportal.exe")</p><p></p><p>; wait until Mediaportal is open and set focus</p><p>;WinWait("MediaPortal - Hauptmenü")</p><p>;WinActivate("MediaPortal - Hauptmenü")</p><p></p><p>Exit</p><p>[/CODE]</p><p></p><p>Adapt pathes and program names and window names and profile names in the script to your environment.</p><p>If you dont want to change the setup of you graphic card you can spare these lines.</p><p></p><p>Save the skript like "BlueRay.au3"</p><p>Right Click on the script in the explorer and choose compile or choose compile from the edito menu.</p><p>An BlueRay.exe will be created.</p><p></p><p>Install the Plugin MultiShortCut like it is nicely described in the readme of the plugin.</p><p>Configure a link to the BlueRay.exe as described.</p><p>There a lines commented out. If you want MediaPortal to minimize while playing BlueRays leave these lines as their are. An choose MinimizeMP=true in the setup of the MultiShortCut-Plugin. If you want to close Mediaportal, remove the semicolon in front of the lines and choose minimizeMP=false in the setup of the MultiShortCut-Plugin</p><p></p><p>The hardest thing will be, to adjust the skript to your system environment. All other steps a quite easy.</p><p>Have fun.</p></blockquote><p></p>
[QUOTE="PVRJunky, post: 228778, member: 60513"] Hi everybody, for those who can't wait for this plugin, I want to suggest a solution I have found somewhere (maybe even in this forum) and made it usable for me. It is a little work to setup, but the result is a new menu entry in MP that closes or minimizes MP switches to the needed graphic card setup and starts PowerDVD in full screen, after closing PowerDVD it switches back the graphic card and starts MP again. What do you need? - [URL="http://www.autoitscript.com/autoit3/downloads.shtml"]AutoItv3[/URL] which is a powerful program for scripting - [URL="http://sourceforge.net/tracker/index.php?func=detail&aid=1649995&group_id=169721&atid=851496"]MultiShortCutPlugin[/URL] The Plugin which is in the plugin section of the Team-mediaportal site is old. Use this link instead. You'll find the download link at the end of the page. The plugin is able to create menu entries that starts any programm you like from MP How do you set it up? If you want to change you graphiccard setup you have to find a way to setup a profile. For ATI cards it is quite simple. Start the ATI Catalyst Controlcenter. Save the standard profle with a specific name like "film" in my example in the profilemanager. Then setup the needed configuration for watching HD-videos in the ATI Catalyst Controlcenter and save the profile with a specific name like "HD24p" in my example . Download AutoItV3 and install it. Maybe you want also to download the AutoIt Editor Scite. Run the editor Create an script like this: [CODE]; PowerDVD Start Skript ; close mediaportal ;ProcessClose("mediaportal.exe") ; change the Graphiccards Profile $Program="C:\Programme\ATI Technologies\ATI.ACE\Core-Static\CLI.exe" $Parameter= "Start Load profilename=" & chr(34) & "HD24p" & Chr(34) ShellExecuteWait($Program,$Parameter) ; wait a second Sleep(1000) ; start PowerDVD Run("C:\Programme\CyberLink\PowerDVD\PowerDVD.exe") ; Maximize PowerDVD and set focus to PowerDVD WinWait("CyberLink PowerDVD") MouseClick("left", 1200, 540, 2, 1) WinActivate("CyberLink PowerDVD") MouseMove(1920, 540, 100) ; Wait untiul PowerDVD is closed WinWaitClose("CyberLink PowerDVD") ; Set graphic card back to normal $Program="C:\Programme\ATI Technologies\ATI.ACE\Core-Static\CLI.exe" $Parameter= "Start Load profilename=" & chr(34) & "Film" & Chr(34) ShellExecuteWait($Program,$Parameter) ; wait a second Sleep(1000) ; rerun mediaportal ;Run("C:\Programme\Team MediaPortal\MediaPortal\Mediaportal.exe") ; wait until Mediaportal is open and set focus ;WinWait("MediaPortal - Hauptmenü") ;WinActivate("MediaPortal - Hauptmenü") Exit [/CODE] Adapt pathes and program names and window names and profile names in the script to your environment. If you dont want to change the setup of you graphic card you can spare these lines. Save the skript like "BlueRay.au3" Right Click on the script in the explorer and choose compile or choose compile from the edito menu. An BlueRay.exe will be created. Install the Plugin MultiShortCut like it is nicely described in the readme of the plugin. Configure a link to the BlueRay.exe as described. There a lines commented out. If you want MediaPortal to minimize while playing BlueRays leave these lines as their are. An choose MinimizeMP=true in the setup of the MultiShortCut-Plugin. If you want to close Mediaportal, remove the semicolon in front of the lines and choose minimizeMP=false in the setup of the MultiShortCut-Plugin The hardest thing will be, to adjust the skript to your system environment. All other steps a quite easy. Have fun. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Plugins
Blu-Ray / HD-DVD Player with PowerDVD (a working solution)
Contact us
RSS
Top
Bottom