Basic MythTV plugin configuration: Difference between revisions

From Bitpost wiki
(New page: Plugin support in MythTV is pretty good, but a little rough around the edges. # Add a button to the mythtv project. In my case, I added the following block to [mythtv/programs/mythfronten...)
 
No edit summary
Line 2: Line 2:


# Add a button to the mythtv project.
# Add a button to the mythtv project.
In my case, I added the following block to [mythtv/programs/mythfrontend/library.xml]:
#: In my case, I added the following block to [mythtv/programs/mythfrontend/library.xml]:
 
#:  <button>
  <button>
#:      <type>DJ_PLAY</type>
      <type>DJ_PLAY</type>
#:      <text>Start DJ</text>
      <text>Start DJ</text>
#:      <action>JUMP Start DJ</action>
      <action>JUMP Start DJ</action>
#:      <depends>mythmusic</depends>
      <depends>mythmusic</depends>
#:      <depends>mythdj</depends>
      <depends>mythdj</depends>
#:  </button>
  </button>
# Add a plugin to the mythplugins project.

Revision as of 15:41, 14 November 2008

Plugin support in MythTV is pretty good, but a little rough around the edges.

  1. Add a button to the mythtv project.
    In my case, I added the following block to [mythtv/programs/mythfrontend/library.xml]:
    <button>
    <type>DJ_PLAY</type>
    <text>Start DJ</text>
    <action>JUMP Start DJ</action>
    <depends>mythmusic</depends>
    <depends>mythdj</depends>
    </button>
  2. Add a plugin to the mythplugins project.