Stereoscopic Player for 3D as external player
#1
Hi all, I am trying to setup stereoscopic player as an external player to play MVC 3d extracts from makemkv. Can anyone please let me know if stereoscopic player causes any issues with cinavia protection?

Also is there a way to configure play, pause, stop, revind, fastforward to work with my MCE remote? Currently I am using xbmc customregis script.
Reply
#2
You can control stereoscopic player using mce remote. You will need to edit the script file to capture mce commands and send it to stereoscopic player when it is active. For example, I am using the following command to mute TMT5. MCE remote is set to send 'F8' so that it mutes xbmc. The mute command for TMT5 is 'q'.

Code:
#IfWinActive, TotalMedia Theatre 5    
    s::
    SendInput ^x ; close
    return
    
    F8::
    SendInput q ; mute
    return
    
    F10::
    SendInput +{Up} ;vol +
    return
    
    F9::
    SendInput +{Down} ;vol -
    return

    ^d::
    SendInput i ;info
    return
Reply
#3
Hi baijuxavior, thanks for the info, but I realised that stereoscopic player is able to work on basic mce commands like play, pause and stop which work in xbmc too. So I was able to get this working without any changes.
Reply

Logout Mark Read Team Forum Stats Members Help
Stereoscopic Player for 3D as external player0