Difference between revisions of "AmazonVideo"

From MythTV Official Wiki
Jump to: navigation, search
(Alternatives)
(Prerequisites)
Line 28: Line 28:
  
 
Other packages that should be installed are:
 
Other packages that should be installed are:
* lirc
 
 
* Firefox, (and see [[Firefox#Firefox_configuration]] for some optional configuration options)
 
* Firefox, (and see [[Firefox#Firefox_configuration]] for some optional configuration options)
 
* [https://addons.mozilla.org/en-US/firefox/addon/full-fullscreen/ Full Fullscreen] Firefox add-on, (optional)
 
* [https://addons.mozilla.org/en-US/firefox/addon/full-fullscreen/ Full Fullscreen] Firefox add-on, (optional)

Revision as of 18:37, 8 May 2012

Setting up your MythTV system to watch Amazon Instant Video requires some extensive customization. This topic documents one way to achieve it. A Firefox browser will be launched from within MythTV, and it will respond to the remote control. This setup will also allow convenient viewing of other Internet content, such as Comedy Central shows.

Alternatives

The MythNetvision grabbers are able to display lots of different content from the Internet. For example, see Comedycentral.py. However, there is currently no grabber for Amazon Instant Video. (A promising email thread on the subject exists, but it has trailed off). Also even for content like on Comedy Central, the entire episode is not available, so the grabber is a less desirable option.

The Firefox topic describes several Firefox customizations that make any Internet pages accessible. The instructions on this page follow a similar strategy. The advantage to using this page is that some of the steps have been automated.

Features

  • Mouse acceleration
  • Menu updates
  • Icons for the Terra theme
  • Disabling of display power management during use (DPMS)

Prerequisites

You should install MythTV from source before you follow these instructions. While it would be possible to perform surgery on a binary installation, these instructions assume that you have cloned the MythTV Git repository.

Other packages that should be installed are:

  • Firefox, (and see Firefox#Firefox_configuration for some optional configuration options)
  • Full Fullscreen Firefox add-on, (optional)
  • xdotool, (on many systems: sudo apt-get install xdotool)
  • pylirc, (on many systems: sudo apt-get install python-pylirc)
  • mythnetvision, (while not strictly required for this feature, having it installed made these instructions more convenient)

Installation

The patches are available on GitHub: https://github.com/chadparry/mythtv/tree/firefox. To download everything, just pull down the firefox branch.

cd /usr/local/src/mythtv # Substitute your own MythTV source directory here
git remote add chadparry git@github.com:chadparry/mythtv.git
git pull chadparry firefox

Then build and install MythTV with the regular steps

./configure
make
sudo make install

Customization

The menu options can be customized in your sources at mythplugins/mythnetvision/theme/menus/netvisionmenu.xml.

The following snippet from netvisionmenu.xml shows the Amazon Instant Video option.

    <button>
        <type>AMAZON_VIDEO</type>
        <text>Amazon Instant Video</text>
        <description>Amazon.com: Your Video Library </description>
        <action>EXEC lircfirefox.py 'https://www.amazon.com/gp/video/library'</action>
    </button>

You can add new menu options for different web pages. Just copy those lines and change the descriptions to whatever you want. The action line should start with EXEC lircfirefox.py and then include the URL for your desired page.

After you make any changes, run sudo make install again.