Difference between revisions of "HDMI-CEC"

From MythTV Official Wiki
Jump to: navigation, search
m
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[THIS IS A WORK IN PROGRESS - BRAINDUMPING MY EXPERIENCE WITH INTEGRATING HDMI-CEC INTO my MythTV Setup]
+
{{wikipedia|HDMI#CEC}}
  
 
HDMI-CEC is a device control protocol that runs over HDMI cables.
 
HDMI-CEC is a device control protocol that runs over HDMI cables.
Line 5: Line 5:
 
It allows rudimentary control over HDMI-CEC aware devices - these devices oftern have vendor-specific names for the protocol, such as AnyNet+ for Samsung devices.
 
It allows rudimentary control over HDMI-CEC aware devices - these devices oftern have vendor-specific names for the protocol, such as AnyNet+ for Samsung devices.
  
HDMI-CEC devices have tow key public properties - a logical address and a physical address.
+
HDMI-CEC devices have two key public properties - a logical address and a physical address.
 
The physical address is determined by the ports a device is plugged into. HDMI is effectively a tree structure, with the TV/Display defaulting to physical address 0.0.0.0 (I understand there should only be 1 display in a HDMI setup, but exceptions apparently can be sometimes tolerated depending on the equipment)
 
The physical address is determined by the ports a device is plugged into. HDMI is effectively a tree structure, with the TV/Display defaulting to physical address 0.0.0.0 (I understand there should only be 1 display in a HDMI setup, but exceptions apparently can be sometimes tolerated depending on the equipment)
  
Line 20: Line 20:
 
There are new devices becoming coming available that support a USB-HDMI bridge - some of these are
 
There are new devices becoming coming available that support a USB-HDMI bridge - some of these are
 
  - RainShadowTech http://www.rainshadowtech.com (used for the purposes of this page).  
 
  - RainShadowTech http://www.rainshadowtech.com (used for the purposes of this page).  
- XBMC also market one (not tested/used)
 
 
  - kwikwai http://www.kwikwai.com/ (not tested)
 
  - kwikwai http://www.kwikwai.com/ (not tested)
 
  - pulse-eight http://www.pulse-eight.com/store
 
  - pulse-eight http://www.pulse-eight.com/store
Line 31: Line 30:
  
 
Useful things that can be done with MythTv and HDMI-CEC:
 
Useful things that can be done with MythTv and HDMI-CEC:
- allowing the TV remote control to send commands to Mythtv (via custom comand-line bridge and Mythfront end remote control socket)
+
- allowing the TV remote control to send commands to Mythtv (via custom comand-line bridge and Mythfront end remote control socket)
- allowing MythTv to automatically set the AV receiver to the correct input whenever playback begins (via MythTV System Event)
+
 
  - allowing Mythtv to translate volume Up/Down key presses to AV Receiver volume control (via irexec)
+
 
 +
- allowing MythTv to automatically set the AV receiver to the correct input whenever playback begins (via MythTV System Event)
 +
The following code (saved to a file and marked executable) will turn on the TV, and set the correct AV input when MythTv starts playback
 +
 
 +
  #!/bin/sh
 +
  # Broadcast active path to every device (Destination Device = f [broadcast message], 0x82 = active path, path is 1300 (3rd device, plugged into 1st device in display)
 +
  echo \!xf 821300~ > /dev/ttyACM0
 +
  # tell active path to AV reciever (Destination Device = 5 [Av receiver], 0x82 = active path, path is 1300 (3rd device, plugged into 1st device in display)
 +
  echo \!x5 821300~ > /dev/ttyACM0
 +
  # Turn on Display (Destination Device = 0 [Display], 0x04 = power on)
 +
  echo \!x0 04~ >  /dev/ttyACM0
 +
 
 +
 
 +
Code to send volume up to av receiver (save it to an executable file, and configure irexec to execute the file on appropriate remote key press)
 +
 
 +
  #!/bin/sh
 +
  # Increase volume (Destination Device = 5 [Av receiver], 0x44 = Send Key, key code is 41 (Vol up)
 +
  echo \!x5 4441~ >  /dev/ttyACM0
 +
 
 +
example lircrc setting
 +
  begin
 +
    prog = irexec
 +
    button = Vol+
 +
    repeat = 0
 +
    config = /home/mythtv/hdmi-cec/volup
 +
  end
 +
 
 +
 
 +
Code to send volume down to AV receiver (save to /home/mythtv/hdmi-cec/voldown, chmod +x)
 +
NOTE - there is a security risk associated with irexec and custom bash files, but if this is your home HTPC, take your chances...
 +
  ----
 +
  #!/bin/sh
 +
  # Decrease volume (Destination Device = 5 [Av receiver], 0x44 = Send Key, key code is 42 (Vol down)
 +
  echo \!x5 4442~ >  /dev/ttyACM0
 +
  ----
 +
 
 +
example lircrc setting
 +
  begin
 +
    prog = irexec
 +
    button = Vol-
 +
    repeat = 0
 +
    config = /home/mythtv/hdmi-cec/voldown
 +
  end
 +
 
  
 
Things that would be nice for MythTv to support in HDMI-CEC:
 
Things that would be nice for MythTv to support in HDMI-CEC:
Line 39: Line 81:
 
  - support recording from non-mythtv TV Mheg display
 
  - support recording from non-mythtv TV Mheg display
  
an abstraction library? http://libcec.pulse-eight.com/
+
There is also implementation in 0.25 of use of http://libcec.pulse-eight.com/ - I will be trying this soon.
 +
 
 +
 
 +
Here are some preliminary observations on libcec and mythtv with a pulse8 device on ubuntu precise:
 +
 
 +
basically I had to install not only libcec1 but also libcec1-dev. Otherwise mythfrontend shows the error "failed to load libcec" error. (I also made sure both my user and mythtv are member of the "dialout" group although not sure this is necessary.)
 +
Apart from that libcec support works kind of out-of-the box on my 2012 phlilips tv, in the sense that I can use the TV remote to control mythtv.
 +
Most keys from the TV remote work instantly. But I manually made some configuration to myth tv key maps via the frontend config dialogue. The OK key which triggers select I had to manually map to SELECT in "global" and I also chose to map the red button (F2) to MENU.
 +
Another effect is that the name of HDMI 1 in the TV changes to mythtv.
 +
 
 +
 
 +
See also:
 +
http://themanfrey.blogspot.de/2012/09/enabling-libcec-on-mythbuntu-1204-with.html
 +
 +
 
 +
[[Category:Glossary]]

Revision as of 16:03, 19 September 2012

Wikipedia-logo-en.png
Wikipedia has an article on:

HDMI-CEC is a device control protocol that runs over HDMI cables.

It allows rudimentary control over HDMI-CEC aware devices - these devices oftern have vendor-specific names for the protocol, such as AnyNet+ for Samsung devices.

HDMI-CEC devices have two key public properties - a logical address and a physical address. The physical address is determined by the ports a device is plugged into. HDMI is effectively a tree structure, with the TV/Display defaulting to physical address 0.0.0.0 (I understand there should only be 1 display in a HDMI setup, but exceptions apparently can be sometimes tolerated depending on the equipment)

If a device with other HDMI ports (referred to as a switch) is plugged in, any devices plugged into that will get a number in the the next "dot range".

So if an AV Receiver is plugged into port 1 of the tv, it would have physical address 1.0.0.0

if the MythTv HDMI out is plugged into port 3 of the AV receiver above, its physical address should be 1.3.0.0

Subsequently, any device directly attached to the switch gets a number based on the port it is plugged into. Typically devices determine their physical address via DDC, but as some CEC bridges are not "inline" with the source device they cannot dynamically determine the physical address. (These devices, such as the RainShadowTech one can have their physical address set to allow them to "impersonate" the non-hdmi-cec device - such as a typical HDMI-capable video card.

Secondly, there is a "Logical Address" which largely determines the type of device - and supports negotiation if multiple instances of the same type are on the HDMI tree (ie two bluray players etc). However, the Logical address is used when addressing devices, not the physical address. The Physical address is used when a "source Device" is in playback mode, and alerts all other devices that it is sending a stream to the display device via the path inherent in its physical address.

There are new devices becoming coming available that support a USB-HDMI bridge - some of these are

- RainShadowTech http://www.rainshadowtech.com (used for the purposes of this page). 
- kwikwai http://www.kwikwai.com/ (not tested)
- pulse-eight http://www.pulse-eight.com/store

These instructions have been developed using the RainshadowTech device - differences will exist.

The RainShadowTech device exposes a device under /dev that can be read from or written to, with a simple "language" that slightly abstracts from the raw HDMI codes.

One very useful site is the www.cec-o-matic.com site, developed by kwikwai (http://www.kwikwai.com/)

Useful things that can be done with MythTv and HDMI-CEC: - allowing the TV remote control to send commands to Mythtv (via custom comand-line bridge and Mythfront end remote control socket)


- allowing MythTv to automatically set the AV receiver to the correct input whenever playback begins (via MythTV System Event) The following code (saved to a file and marked executable) will turn on the TV, and set the correct AV input when MythTv starts playback

 #!/bin/sh
 # Broadcast active path to every device (Destination Device = f [broadcast message], 0x82 = active path, path is 1300 (3rd device, plugged into 1st device in display)
 echo \!xf 821300~ >  /dev/ttyACM0
 # tell active path to AV reciever (Destination Device = 5 [Av receiver], 0x82 = active path, path is 1300 (3rd device, plugged into 1st device in display)
 echo \!x5 821300~ > /dev/ttyACM0
 # Turn on Display (Destination Device = 0 [Display], 0x04 = power on)
 echo \!x0 04~ >  /dev/ttyACM0


Code to send volume up to av receiver (save it to an executable file, and configure irexec to execute the file on appropriate remote key press)

 #!/bin/sh
 # Increase volume (Destination Device = 5 [Av receiver], 0x44 = Send Key, key code is 41 (Vol up)
 echo \!x5 4441~ >  /dev/ttyACM0

example lircrc setting

 begin
   prog = irexec
   button = Vol+
   repeat = 0
   config = /home/mythtv/hdmi-cec/volup
 end


Code to send volume down to AV receiver (save to /home/mythtv/hdmi-cec/voldown, chmod +x) NOTE - there is a security risk associated with irexec and custom bash files, but if this is your home HTPC, take your chances...

 ----
 #!/bin/sh
 # Decrease volume (Destination Device = 5 [Av receiver], 0x44 = Send Key, key code is 42 (Vol down)
 echo \!x5 4442~ >  /dev/ttyACM0
 ----

example lircrc setting

 begin
   prog = irexec
   button = Vol-
   repeat = 0
   config = /home/mythtv/hdmi-cec/voldown
 end


Things that would be nice for MythTv to support in HDMI-CEC:

- setting the hostname for HDMI-CEC device discovery (maybe could be done through System Event?)
- support recording from non-mythtv TV Mheg display

There is also implementation in 0.25 of use of http://libcec.pulse-eight.com/ - I will be trying this soon.


Here are some preliminary observations on libcec and mythtv with a pulse8 device on ubuntu precise:

basically I had to install not only libcec1 but also libcec1-dev. Otherwise mythfrontend shows the error "failed to load libcec" error. (I also made sure both my user and mythtv are member of the "dialout" group although not sure this is necessary.) Apart from that libcec support works kind of out-of-the box on my 2012 phlilips tv, in the sense that I can use the TV remote to control mythtv. Most keys from the TV remote work instantly. But I manually made some configuration to myth tv key maps via the frontend config dialogue. The OK key which triggers select I had to manually map to SELECT in "global" and I also chose to map the red button (F2) to MENU. Another effect is that the name of HDMI 1 in the TV changes to mythtv.


See also: http://themanfrey.blogspot.de/2012/09/enabling-libcec-on-mythbuntu-1204-with.html