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="civicoid" data-source="post: 345247" data-attributes="member: 19233"><p>Hello</p><p> </p><p>i am glad to find this mp-plugin.</p><p>i build a htpc with a blue-ray player.</p><p>but there is no playing software inside mp</p><p>so i need another one and choose pdvd8.</p><p> </p><p>i play around with the autohotkey-script</p><p>and think it may be good to replace the</p><p><strong>run </strong>with a <strong>runwait</strong></p><p>so, the script waits until pdvd8 is on and </p><p>switches later</p><p> </p><p>here is my code (i disabled the hotkeys)</p><p> </p><p>[code]</p><p>SetTitleMatchMode, 2</p><p> </p><p>; Start sequence</p><p>IfWinNotExist, CyberLink PowerDVD</p><p>{</p><p> WinActivate, MediaPortal</p><p> ;Stops Media playing in MP</p><p> Send {b} </p><p> </p><p> ;Sends to ATI profile to switch 24hz mode / CTRL+SHIFT+4</p><p> ;Send, ^+4 </p><p> </p><p> [B][COLOR=red]RunWait[/COLOR][/B] "%A_ProgramFiles%\CyberLink\PowerDVD8\PowerDVD8.exe" /FULLSCREEN</p><p> WinActivate, CyberLink PowerDVD</p><p> WinMaximize </p><p> </p><p> Sleep, 500</p><p> WinMinimize, MediaPortal</p><p> WinActivate, CyberLink PowerDVD</p><p>}</p><p>else</p><p>{</p><p> WinActivate, MediaPortal</p><p> ;Stops Media playing in MP</p><p> Send, b </p><p> ;Sends to ATI profile to switch 24hz mode</p><p> ;Send, ^+4 </p><p> </p><p> Sleep, 1000</p><p> WinMinimize, MediaPortal</p><p> WinActivate, CyberLink PowerDVD</p><p>}</p><p>return</p><p> </p><p> </p><p>Escape::</p><p>IfWinExist, CyberLink PowerDVD </p><p>{ </p><p> </p><p> IfWinNotExist, MediaPortal </p><p> {</p><p> Run "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe" </p><p> }</p><p> ;Sends to ATI profile to switch 50hz mode / CTRL+SHIFT+5</p><p> ;Send, ^+5</p><p> </p><p> Sleep, 1000 </p><p> ;WinRestore , MediaPortal</p><p> Run "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe" </p><p> WinClose, CyberLink PowerDVD </p><p> ExitApp</p><p>} </p><p>IfWinExist, MediaPortal </p><p>{</p><p> Send, , Escape, "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe"</p><p>}</p><p>return </p><p> </p><p>;////// Translate MP keys to PowerDVD</p><p>; Stop</p><p>b::s</p><p>return</p><p>; Start playing </p><p>p::Enter</p><p>return</p><p>; Switch audio Streams </p><p>a::h</p><p>return</p><p>; Rewind </p><p>F5::b</p><p>return</p><p>; Fast Forward </p><p>F6::f</p><p>return</p><p>; Play Previous </p><p>F7::p</p><p>return</p><p>; Play Next </p><p>F8::n</p><p>return</p><p>; Home Screen /Disc Home</p><p>h::l</p><p>return</p><p>; Fullscreen</p><p>x:</p><p>return</p><p>; Displays/hides pop-up menu for Blu-ray Disc titles only</p><p>F3::^p</p><p>return</p><p>; Mute volume </p><p>m::q</p><p>return</p><p>; decrease volume </p><p>;-::-</p><p>;return</p><p>; increase volume </p><p>=::+</p><p>return</p><p>[/code]</p></blockquote><p></p>
[QUOTE="civicoid, post: 345247, member: 19233"] Hello i am glad to find this mp-plugin. i build a htpc with a blue-ray player. but there is no playing software inside mp so i need another one and choose pdvd8. i play around with the autohotkey-script and think it may be good to replace the [B]run [/B]with a [B]runwait[/B] so, the script waits until pdvd8 is on and switches later here is my code (i disabled the hotkeys) [code] SetTitleMatchMode, 2 ; Start sequence IfWinNotExist, CyberLink PowerDVD { WinActivate, MediaPortal ;Stops Media playing in MP Send {b} ;Sends to ATI profile to switch 24hz mode / CTRL+SHIFT+4 ;Send, ^+4 [B][COLOR=red]RunWait[/COLOR][/B] "%A_ProgramFiles%\CyberLink\PowerDVD8\PowerDVD8.exe" /FULLSCREEN WinActivate, CyberLink PowerDVD WinMaximize Sleep, 500 WinMinimize, MediaPortal WinActivate, CyberLink PowerDVD } else { WinActivate, MediaPortal ;Stops Media playing in MP Send, b ;Sends to ATI profile to switch 24hz mode ;Send, ^+4 Sleep, 1000 WinMinimize, MediaPortal WinActivate, CyberLink PowerDVD } return Escape:: IfWinExist, CyberLink PowerDVD { IfWinNotExist, MediaPortal { Run "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe" } ;Sends to ATI profile to switch 50hz mode / CTRL+SHIFT+5 ;Send, ^+5 Sleep, 1000 ;WinRestore , MediaPortal Run "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe" WinClose, CyberLink PowerDVD ExitApp } IfWinExist, MediaPortal { Send, , Escape, "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe" } return ;////// Translate MP keys to PowerDVD ; Stop b::s return ; Start playing p::Enter return ; Switch audio Streams a::h return ; Rewind F5::b return ; Fast Forward F6::f return ; Play Previous F7::p return ; Play Next F8::n return ; Home Screen /Disc Home h::l return ; Fullscreen x: return ; Displays/hides pop-up menu for Blu-ray Disc titles only F3::^p return ; Mute volume m::q return ; decrease volume ;-::- ;return ; increase volume =::+ return [/code] [/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