Difference between revisions of "MythTV/Mythstream"
Kynikos.bot (talk | contribs) (remove language suffix from Category:Audio/Video (English), see Talk:Table of Contents#English Category Names: Capitalization and Conflict with i18n) |
(Move to streaming category.) |
||
Line 1: | Line 1: | ||
− | [[Category: | + | [[Category:Streaming]] |
− | |||
Mythstream is an unofficial plugin for MythTV which enables internet audio/video streams. This is a short howto on getting mythstream to work on Arch Linux. | Mythstream is an unofficial plugin for MythTV which enables internet audio/video streams. This is a short howto on getting mythstream to work on Arch Linux. | ||
Line 36: | Line 35: | ||
</button> | </button> | ||
+ | ==Wiki links= | ||
+ | * [[MythTV]] | ||
+ | * [[MythTV_Walkthrough]] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
=External links= | =External links= | ||
− | [http://home.kabelfoon.nl/~moongies/streamtuned.html Mythstream] | + | * [http://home.kabelfoon.nl/~moongies/streamtuned.html Mythstream] |
− | [http://www.mythtv.org/ MythTV] | + | * [http://www.mythtv.org/ MythTV] |
Revision as of 04:37, 6 June 2013
Mythstream is an unofficial plugin for MythTV which enables internet audio/video streams. This is a short howto on getting mythstream to work on Arch Linux.
Requirements
MythTV v. 0.20, Mythstream v. 0.18, runtime versions of wget, perl and the perl modules XML::Simple, XML::DOM, XML::XQL. XML::Simple (perl-xml-simple) and XML::DOM (perl-xml-dom) are available from the perlcpan repository: PerlCPAN_Repository. PKGBUILDs for XML::XQL (perl-xml-xql), fftw2 compiled with single precision (fftw2single) and mythstream have been submitted to AUR/unsupported. Obviously You will be needing Mythtv from extra too.
Installation
Either enable the perlcpan repo in your /etc/pacman.conf or download and install manually. Build and install the packages from AUR, perhaps with Aurbuild.
With perlcpan enabled in /etc/pacman.conf and using aurbuild for PKGBUILDS from AUR:
pacman -S perl-xml-simple perl-xml-dom aurbuild -b perl-xml-xql fftw2single mythstream
From MythTV v. 0.20 and up, support for Mythstream menu entries has been added to MythTV's menu xml files. However, in some cases you might need to add the entries yourself.
In /usr/share/mythtv/themes/blue/theme.xml,
<buttondef name="STREAM"> <image>stream.png</image> <offset>60,30</offset> </buttondef>
In /usr/share/mythtv/themes/MythCenter[-wide]/theme.xml,
<buttondef name="STREAM"> <image>ui/button_off.png</image> <watermarkimage>watermark/stream.png</watermarkimage> <offset>0,0</offset> </buttondef>
In /usr/share/mythtv/mainmenu.xml,
<button> <type>MYTHSTREAM</type> <text>Mythstream</text> <action>PLUGIN mythstream</action> </button>
=Wiki links