<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Seer</id>
	<title>LinuxMCE - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Seer"/>
	<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php/Special:Contributions/Seer"/>
	<updated>2026-07-21T22:50:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Seer&amp;diff=25006</id>
		<title>User:Seer</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Seer&amp;diff=25006"/>
		<updated>2010-09-08T19:25:01Z</updated>

		<summary type="html">&lt;p&gt;Seer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi there.  I&#039;m Seer Snively.  I&#039;m running the development version of LMCE 0810, reading lots of code, and thinking about new UI&#039;s and adding some crazy features like a visual calendar to add events, and a nice pretty way to display event notices.&lt;br /&gt;
&lt;br /&gt;
But that&#039;s all future talk.  Right now, I&#039;ve just got my nose buried in code trying to wrap my head around it all.&lt;br /&gt;
&lt;br /&gt;
My home page is [http://www.gamehendge.org/ Gamehendge.org]&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Seer&amp;diff=18277</id>
		<title>User:Seer</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Seer&amp;diff=18277"/>
		<updated>2009-04-02T22:45:08Z</updated>

		<summary type="html">&lt;p&gt;Seer: first draft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi there.  I&#039;m Seer Snively.  My handle on IRC is &amp;quot;Anon of Ibid&amp;quot;.  I&#039;m running the development version of LMCE 0810, reading lots of code, and thinking about new UI&#039;s and adding some crazy features like a visual calendar to add events, and a nice pretty way to display event notices.&lt;br /&gt;
&lt;br /&gt;
But that&#039;s all future talk.  Right now, I&#039;ve just got my nose buried in code trying to wrap my head around it all.&lt;br /&gt;
&lt;br /&gt;
My home page is [http://www.gamehendge.org/ Gamehendge.org]&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Nintendo_WiiMote&amp;diff=18276</id>
		<title>Nintendo WiiMote</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Nintendo_WiiMote&amp;diff=18276"/>
		<updated>2009-04-02T20:42:32Z</updated>

		<summary type="html">&lt;p&gt;Seer: resized image and added caption to wiimote image&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; {| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
[[Category: Hardware]]&lt;br /&gt;
[[Category: Input]]&lt;br /&gt;
[[Category:Infrared]]&lt;br /&gt;
[[category: tutorials]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Wiimote.jpg|right|thumb|The Nintendo Wiimote]]&lt;br /&gt;
&lt;br /&gt;
This device is not out of the box supported by LinuxMCE, but it is known to work [https://help.ubuntu.com/community/CWiiD] [http://forum.linuxmce.com/index.php?topic=1246.0] [http://forum.linuxmce.org/index.php?topic=2411.msg11435].&lt;br /&gt;
&lt;br /&gt;
== Wiimote setup ==&lt;br /&gt;
&lt;br /&gt;
I will try to explain what i have done to make the wiimote work with linuxmce.&lt;br /&gt;
&lt;br /&gt;
The wiimote is a cheap gyration device which could work for linuxmce instead of the chief remote from fiire which i find too expensive!!&lt;br /&gt;
&lt;br /&gt;
= Setup =&lt;br /&gt;
&lt;br /&gt;
Login ([[Logging_In]]) as root to the media director which has a bluetooth stick with ssh.&lt;br /&gt;
Install the cwiid driver as follows&lt;br /&gt;
 apt-get install libcwiid0&lt;br /&gt;
 apt-get install wminput&lt;br /&gt;
&lt;br /&gt;
Make sure the uinput kernel module is loaded at boot-time:&lt;br /&gt;
 echo &amp;quot;uinput&amp;quot; &amp;gt;&amp;gt;/etc/modules&lt;br /&gt;
Load it manually in the mean time:&lt;br /&gt;
 modprobe uinput&lt;br /&gt;
&lt;br /&gt;
create the daemon&lt;br /&gt;
 cat &amp;gt;/usr/sbin/wminputd &amp;lt;&amp;lt;&amp;quot;EOF&amp;quot;&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #read the config file&lt;br /&gt;
 . /etc/wminputd.conf&lt;br /&gt;
 export DISPLAY=:0&lt;br /&gt;
 &lt;br /&gt;
 while true&lt;br /&gt;
 do&lt;br /&gt;
         #check if the Orbiter/OrbiterGL is already running!&lt;br /&gt;
         if [ &amp;quot;$(pidof OrbiterGL)$(pidof Orbiter)&amp;quot; ]&lt;br /&gt;
         then&lt;br /&gt;
 &lt;br /&gt;
                 #check if the wiimote is already connected&lt;br /&gt;
                 if [ -z &amp;quot;$(hcitool con|grep $WIIMOTE_BDADDR)&amp;quot; ]&lt;br /&gt;
                 then&lt;br /&gt;
                         PID=$(pidof wminput)&lt;br /&gt;
                         if [ &amp;quot;$PID&amp;quot; ]&lt;br /&gt;
                         then&lt;br /&gt;
                                 kill -9 $PID&lt;br /&gt;
                         fi&lt;br /&gt;
                         #mouse acceleration, adjust to your liking&lt;br /&gt;
                         #see also: &amp;quot;man xset&amp;quot; and/or &amp;quot;xset -h&amp;quot;&lt;br /&gt;
 #                       xset m 1/2 3&lt;br /&gt;
                         wminput -c ir_ptr $WIIMOTE_BDADDR &amp;amp;&lt;br /&gt;
                 fi&lt;br /&gt;
 &lt;br /&gt;
        fi&lt;br /&gt;
 &lt;br /&gt;
        sleep 5&lt;br /&gt;
 &lt;br /&gt;
 done&lt;br /&gt;
 &lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
Make it executable&lt;br /&gt;
 chmod 755 /usr/sbin/wminputd&lt;br /&gt;
&lt;br /&gt;
*Create the config file ([http://en.wikipedia.org/wiki/Vi vi commands])&lt;br /&gt;
 vi /etc/wminputd.conf&lt;br /&gt;
&lt;br /&gt;
 #this is the config file for the wminputd&lt;br /&gt;
 #enter the wiimote mac address, you can find it with&lt;br /&gt;
 #hcitool scan  and then press the red button&lt;br /&gt;
 #besides the battery&#039;s off the wiimote&lt;br /&gt;
 #Then place the show&#039;n mac address as follows&lt;br /&gt;
 WIIMOTE_BDADDR=&amp;quot;00:AA:00:BB:AA:FF&amp;quot;&lt;br /&gt;
&lt;br /&gt;
you can find your address with hcitool scan&lt;br /&gt;
&lt;br /&gt;
*Edit the file /etc/cwiid/wminput/buttons&lt;br /&gt;
&lt;br /&gt;
 vi /etc/cwiid/wminput/buttons&lt;br /&gt;
And make it suitable to your needs&lt;br /&gt;
below is mine&lt;br /&gt;
 #buttons&lt;br /&gt;
 &lt;br /&gt;
 Wiimote.A       = BTN_LEFT&lt;br /&gt;
 Wiimote.B       = BTN_RIGHT&lt;br /&gt;
 Wiimote.Up      = KEY_UP&lt;br /&gt;
 Wiimote.Down    = KEY_DOWN&lt;br /&gt;
 Wiimote.Left    = KEY_LEFT&lt;br /&gt;
 Wiimote.Right   = KEY_RIGHT&lt;br /&gt;
 Wiimote.Minus   = KEY_F7&lt;br /&gt;
 Wiimote.Plus    = KEY_F8&lt;br /&gt;
 Wiimote.Home    = KEY_F3&lt;br /&gt;
 Wiimote.1       = KEY_F1&lt;br /&gt;
 Wiimote.2       = KEY_F6&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* create the init file&lt;br /&gt;
 vi /etc/init.d/wminputd&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 # Start/stop the wminputd daemon.&lt;br /&gt;
 #&lt;br /&gt;
 ### BEGIN INIT INFO&lt;br /&gt;
 # Provides:          wminputd&lt;br /&gt;
 # Required-Start:    $syslog $time&lt;br /&gt;
 # Required-Stop:     $syslog $time&lt;br /&gt;
 # Default-Start:     2 3 4 5&lt;br /&gt;
 # Default-Stop:      0 1 6&lt;br /&gt;
 # Short-Description: mousemodule&lt;br /&gt;
 # Description:       wminputd&lt;br /&gt;
 #&lt;br /&gt;
 #&lt;br /&gt;
 #&lt;br /&gt;
 ### END INIT INFO&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 test -f /usr/sbin/wminputd || exit 0&lt;br /&gt;
 . /lib/lsb/init-functions&lt;br /&gt;
 &lt;br /&gt;
 case &amp;quot;$1&amp;quot; in&lt;br /&gt;
 start)  log_daemon_msg &amp;quot;Starting wii-remote mousemodule&amp;quot; &amp;quot;wminputd&amp;quot;&lt;br /&gt;
         start-stop-daemon -b --start --quiet --pidfile /var/run/wminputd.pid --name wminputd --startas /usr/sbin/wminputd -- $LSBNAMES&lt;br /&gt;
         log_end_msg $?&lt;br /&gt;
         ;;&lt;br /&gt;
 stop)   log_daemon_msg &amp;quot;Stopping wii-mote mousemodule&amp;quot; &amp;quot;wminputd&amp;quot;&lt;br /&gt;
         start-stop-daemon --stop --quiet --pidfile /var/run/wminputd.pid --name wminputd&lt;br /&gt;
         log_end_msg $?&lt;br /&gt;
         ;;&lt;br /&gt;
 restart) log_daemon_msg &amp;quot;Restarting wii-mote mousemdule&amp;quot; &amp;quot;wminputd&amp;quot;&lt;br /&gt;
         start-stop-daemon --stop --retry 5 --quiet --pidfile /var/run/wminputd.pid --name wminputd&lt;br /&gt;
         start-stop-daemon -b --start --quiet --pidfile /var/run/wminputd.pid --name wminputd --startas /usr/sbin/wminputd -- $LSBNAMES&lt;br /&gt;
         log_end_msg $?&lt;br /&gt;
         ;;&lt;br /&gt;
 *)      log_action_msg &amp;quot;Usage: /etc/init.d/wminputd {start|stop|restart}&amp;quot;&lt;br /&gt;
         exit 2&lt;br /&gt;
         ;;&lt;br /&gt;
 esac&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
Make it executable&lt;br /&gt;
 chmod 755 /etc/init.d/wminputd&lt;br /&gt;
&lt;br /&gt;
run the script and push the red button beside the battery and your wiimote is ready to go&lt;br /&gt;
&lt;br /&gt;
enable the script so that it will start at boot time&lt;br /&gt;
 update-rc.d wminputd defaults&lt;br /&gt;
now start the script and see if it works&lt;br /&gt;
 /etc/init.d/wminputd start&lt;br /&gt;
&lt;br /&gt;
= Troubleshooting =&lt;br /&gt;
&lt;br /&gt;
*Q: When i reload the router then the wiimote will be slow&lt;br /&gt;
*A: Just push the red button besides the wiimote so it will connect again&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Added 3-30-2008 =&lt;br /&gt;
I tried this and it works beautifully!&lt;br /&gt;
&lt;br /&gt;
A couple of other notes...&lt;br /&gt;
&lt;br /&gt;
Its a pain to get to the little red button by the battery. Instead, you can press and hold the &#039;1&#039; and &#039;2&#039; buttons at the same time for the same effect.&lt;br /&gt;
The power button will not start the system, but once the system is started (with either the Red button or the button 1+2 being held down together), holding the power button for a couple of seconds will turn the wiimote off and break the connection.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Troubles Experienced ==&lt;br /&gt;
*I have a Targus bluetooth doggle.  The system recognizes the adapter, but it would not allow the Wiimote to connect.  What I need to do to get it to work is get to a command prompt and execute &#039;&#039;&#039;hciconfig hci0 down; hciconfig hci0 up; hciconfig hci0 piscan&#039;&#039;&#039;.  Then I am able to press the 1 &amp;amp; 2 buttons then it works. An additional change that I need to make was in /usr/sbin/wminputd.  Had the change the line &#039;&#039;wminput -c ir_ptr $WIIMOTE_BDADDR &amp;amp;&#039;&#039; to &#039;&#039;wminput $WIIMOTE_BDADDR &amp;amp;&#039;&#039;.  Otherwise I could not move the cursor, but the buttons works.  Then I also mapped the buttons to how I wanted them.  If I come up with a fix/workaround for executing the hciconfig commands I will update this.  Thanks!&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE_talk:Community_Portal:Category_Proposal&amp;diff=18246</id>
		<title>LinuxMCE talk:Community Portal:Category Proposal</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE_talk:Community_Portal:Category_Proposal&amp;diff=18246"/>
		<updated>2009-03-31T22:48:32Z</updated>

		<summary type="html">&lt;p&gt;Seer: added my comment / stale?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;ve created this page to make a proposal of how to setup the categories for the wiki. Feel free to add/edit/comment.&lt;br /&gt;
&lt;br /&gt;
*Computer Hardware&lt;br /&gt;
**Motherboards &lt;br /&gt;
**Graphic Cards&lt;br /&gt;
**Sound Cards&lt;br /&gt;
**TV-cards &lt;br /&gt;
**Keyboards&lt;br /&gt;
**Mice&lt;br /&gt;
**Remotes&lt;br /&gt;
**Bluetooth Devices&lt;br /&gt;
**Laptops &lt;br /&gt;
&lt;br /&gt;
*PDAs and other Portable Devices except cell phones&lt;br /&gt;
**Webpads&lt;br /&gt;
&lt;br /&gt;
*Software&lt;br /&gt;
**Third party software&lt;br /&gt;
&lt;br /&gt;
*Audio Sources&lt;br /&gt;
**Receivers&lt;br /&gt;
&lt;br /&gt;
*Video Sources&lt;br /&gt;
**Set-top boxes&lt;br /&gt;
***Satellite boxes&lt;br /&gt;
***Cable boxes&lt;br /&gt;
***Digital terrestrial boxes&lt;br /&gt;
***PVR boxes&lt;br /&gt;
**VCR&lt;br /&gt;
**DVD &lt;br /&gt;
**Blu-ray &lt;br /&gt;
**HD-Dvd &lt;br /&gt;
**Cameras&lt;br /&gt;
**TV-cards (also in computer hardware)&lt;br /&gt;
&lt;br /&gt;
*Video Displays&lt;br /&gt;
**LCD &lt;br /&gt;
**Plasma &lt;br /&gt;
**Projectors&lt;br /&gt;
&lt;br /&gt;
*Multimedia&lt;br /&gt;
&lt;br /&gt;
*Networking&lt;br /&gt;
&lt;br /&gt;
*Home Automation&lt;br /&gt;
**Lighting &lt;br /&gt;
**Climate &lt;br /&gt;
**Security (Maybe this should be it&#039;s own main category?)&lt;br /&gt;
&lt;br /&gt;
*Telecom&lt;br /&gt;
**Cellullar phones (Mobile phones?)&lt;br /&gt;
**IP-phones&lt;br /&gt;
**Phone-Providers (or less obvious &amp;quot;Phone-Lines&amp;quot; as in the pluto-admin)&lt;br /&gt;
&lt;br /&gt;
*Development&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Suggestion==&lt;br /&gt;
One thing I think is important is that articles must not appear once in a category and then again in a more general category. For example, Sony Amplifier should not appear once in &#039;audio hardware&#039; and then again in &#039;hardware&#039;. This is consistent with the [http://meta.wikimedia.org/wiki/MediaWiki_User%27s_Guide:_Using_Categories#Category_considerations guidelines for Wikimedia projects], which are very well thought through. [[User:Lozzo|Lozzo]] 13:33, 26 September 2007 (MST)&lt;br /&gt;
&lt;br /&gt;
:I think it&#039;s important for articles to be in as many relevant categories as possible, this helps to navigate and find similar pages much quicker.  Guidlines of other wikis don&#039;t apply here, just because some other unrelated wiki uses that organisation doesn&#039;t mean we have to.  So please don&#039;t remove Categories from pages, they are there for a reason. --[[User:Zaerc|Zaerc]] 04:51, 3 October 2007 (MST)&lt;br /&gt;
&lt;br /&gt;
::With respect, I completely disagree. Categories are there to facilitate an elegant taxonomy - not for things to be appearing twice. Having strict categories (i.e. without repetition and in the style used on wikipedia as the reslt of much community debate) makes things easier to maintain &#039;&#039;and&#039;&#039; to find. [[User:Lozzo|Lozzo]] 00:56, 7 October 2007 (MST)&lt;br /&gt;
&lt;br /&gt;
:::The problem is that this is not the wikipedia (or wikimedia).  And the resulting policy of much community debate there does not automaticly apply here.  Things are not either hardware or a phone or an orbitter, they can be all three at once.  Hence they should appear in all these relevant categories.  Likewise a NAS should go under storage and networking as well as hardware.  I think this makes them much easier to find and I really don&#039;t see how it could hinder maintenance --[[User:Zaerc|Zaerc]] 05:34, 7 October 2007 (MST)&lt;br /&gt;
&lt;br /&gt;
==Expanding the existing structure==&lt;br /&gt;
It seems better to me, for the Hardware section at least, to take into account the existing structure, and expand on that.  Implementing the proposal above will scatter the existing pages and leave many categories empty.  As soon as certain categories become overcrowded they can be split into subcategories.  Therefore with a few adjustments we can mostly leave things the way they are and expand it where needed.  This should ease the pain of a transition as well. &lt;br /&gt;
&lt;br /&gt;
Below is an expanded and slightly modified version of the existing stucture, this should be a lot less intrusive, and yes some categories appear as sub-categories again, I see no problem with that. Categories for future expansion are in brackets, to be created when there are enough pages to justify (fill) them. --[[User:Zaerc|Zaerc]] 04:51, 3 October 2007 (MST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
The above was moved here from the article for reference --[[User:Zaerc|Zaerc]] 07:57, 19 February 2008 (PST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I am concerned about one thing with regards to the follow categories and that is continuity of terms.  &lt;br /&gt;
    * 1 Core&lt;br /&gt;
    * 2 Orbiters&lt;br /&gt;
    * 3 Media Directors&lt;br /&gt;
    * 4 Network Attached Storage&lt;br /&gt;
    * 5 Security&lt;br /&gt;
    * 6 Telecom&lt;br /&gt;
    * 7 Home Automation&lt;br /&gt;
    * 8 Multimedia&lt;br /&gt;
    * 9 Personal Computing&lt;br /&gt;
are the list of options one gets by selecting the read more button on the main page.  This is the terminology that was used by Pluto, so the documentation is going to have references to these different aspects of the LinuxMCE software.  My thoughts would be to work out from the above main categories, because not everyone is going to use the Home Automation, or the Security features built in.  My example:&lt;br /&gt;
    * 1 Core&lt;br /&gt;
    * 2 Orbiters&lt;br /&gt;
    * 3 Media Directors&lt;br /&gt;
    * 4 Network Attached Storage&lt;br /&gt;
    * 5 Security&lt;br /&gt;
    * 6 Telecom&lt;br /&gt;
    * 7 Home Automation&lt;br /&gt;
    * 8 Multimedia&lt;br /&gt;
       *  Audio Sources&lt;br /&gt;
          o Recievers &lt;br /&gt;
       * Video Sources&lt;br /&gt;
          o Set-top boxes&lt;br /&gt;
                + Satellite boxes&lt;br /&gt;
                + Cable boxes&lt;br /&gt;
                + Digital terrestrial boxes&lt;br /&gt;
                + PVR boxes &lt;br /&gt;
          o VCR&lt;br /&gt;
          o DVD&lt;br /&gt;
          o Blu-ray&lt;br /&gt;
          o HD-Dvd&lt;br /&gt;
          o Cameras&lt;br /&gt;
          o TV-cards (also in computer hardware) &lt;br /&gt;
       * Video Displays&lt;br /&gt;
          o LCD&lt;br /&gt;
          o Plasma&lt;br /&gt;
          o Projectors &lt;br /&gt;
    * 9 Personal Computing&lt;br /&gt;
&lt;br /&gt;
just my 2 cents worth.&lt;br /&gt;
&lt;br /&gt;
I think this looks real good. Thumbs up from me. --[[User:Samme|Samme]] 00:03, 28 September 2007 (MST)&lt;br /&gt;
&lt;br /&gt;
::I also like it.  What&#039;s the status of this?  It seems pretty stale, with the last update to this &amp;quot;discussion&amp;quot; in 2007.  Anyone?  [[User:Seer|Seer]] 00:48, 1 April 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=TV_tuner_card&amp;diff=18073</id>
		<title>TV tuner card</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=TV_tuner_card&amp;diff=18073"/>
		<updated>2009-03-22T21:12:23Z</updated>

		<summary type="html">&lt;p&gt;Seer: added note about supported hardware &amp;amp; hardware encoding.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Video| ]]&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;TV tuner card&#039;&#039;&#039; allows television signals to be received by a computer. LinuxMCE systems featuring such cards can stream live TV to any [[media director]] in the home using [[MythTV]]. TV tuners are available as PCI-bus expansion card, PCIe (PCI Express) bus or USB devices.&lt;br /&gt;
&lt;br /&gt;
Please see also:&lt;br /&gt;
*[[:Category:TV Cards|TV cards category]]&lt;br /&gt;
*[http://www.mythtv.org/wiki/index.php/Category:Video_capture_cards MythTV tuner cards category]&lt;br /&gt;
*[http://www.mythtv.org/wiki/index.php/Video_capture_card MythTV tuner cards article]  This is a good place to start if you are wondering which cards are supported by MythTV, one of two PVR programs used by LinuxMCE.  &lt;br /&gt;
&lt;br /&gt;
==Types of tuner card on the market==&lt;br /&gt;
* Cards for analog TV. Cheaper models output raw tuner data, which requires intensive encoding by another device, normally the system CPU. More expensive models encode the signal to MPEG, relieving the main CPU of this load. This is called &#039;&#039;&#039;Hardware Encoding&#039;&#039;&#039; and is worth every penny.  Many cards also have analog input (composite video or S-Video). and many also provide FM radio reception.&lt;br /&gt;
&lt;br /&gt;
* Cards for digital TV, including satellite TV. Digital TV is broadcast as an MPEG stream, so no encoder is necessary; instead, the digital cards must extract the correct PIDs from the transport stream, which requires much less processing power.&lt;br /&gt;
&lt;br /&gt;
* Hybrid tuners that handle both analog and digital inputs. A Hybrid tuner has one tuner that can be configured to act as an analog tuner or a digital tuner. Switching in between the systems is fairly easy, but can not be done &amp;quot;on the fly&amp;quot;. The card operates as a digital tuner or an analog tuner until reconfigured.&lt;br /&gt;
&lt;br /&gt;
* Combo tuners that have both analog and digital tuners on one card. This is similar to a hybrid tuner, except there are 2 separate tuners on the card. One can watch analog while recording digital, or visa versa. The card operated as an analog tuner and a digital tuner. The advantages over 2 separate cards are cost and utilization of expansion slots in the computer. As the US converts from analog to digital broadcasts, these tuners are gaining popularity.&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Mirrors_710&amp;diff=18020</id>
		<title>Mirrors 710</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Mirrors_710&amp;diff=18020"/>
		<updated>2009-03-18T02:11:24Z</updated>

		<summary type="html">&lt;p&gt;Seer: /* LinuxMCE 0710 */ added link to DVD install guide&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= LinuxMCE 0710 =&lt;br /&gt;
&#039;&#039;&#039;Before installing, check out the [[Known Issues|Known issues]], and please read the [[Installation Guide]] and/or the [[DVD Installation]] guide.&#039;&#039;&#039; Installing from DVD is the fastest. Installing from CD .iso images on your hard disk is second fastest (you will need to install Kubuntu 7.10 first), and installing from burned CDs is slowest.&lt;br /&gt;
&lt;br /&gt;
== What you have to download ==&lt;br /&gt;
To install LinuxMCE you need to download the DVD (which includes everything needed for the installation) or you can download both LinuxMCE CD&#039;s plus a Kubuntu 7.10 CD. You can also choose to download the Dual Layer DVD which includes extra demo media.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Warning: The DVD installation will wipe the entire disk of the machine -- all previous data will be permanently lost!&#039;&#039;&#039;&#039;&#039; &lt;br /&gt;
(Note: There is a new &amp;quot;keep settings&amp;quot; option which will preserve data in the home directory for most, &#039;&#039;&#039;&#039;&#039;but not all&#039;&#039;&#039;&#039;&#039;, installations.  Also, there are instructions on how to use the [[DVD Install And Custom Partitions|DVD Install with custom partitions]])&lt;br /&gt;
&lt;br /&gt;
LinuxMCE 0710 was released on May 7th, 2008. This is also known as LinuxMCE 0710 RC2.&lt;br /&gt;
&lt;br /&gt;
====NOTES:====&lt;br /&gt;
&lt;br /&gt;
- To upgrade from a 0710 beta to 0710, you can use &amp;quot;LinuxMCE Install CDs for i386&amp;quot; or &amp;quot;LinuxMCE Install DVD for i386&amp;quot; with &amp;quot;keep settings&amp;quot; option.  &lt;br /&gt;
&lt;br /&gt;
- To upgrade from 0704, you can use :&lt;br /&gt;
a) &amp;quot;LinuxMCE Install CDs for i386 - 0710 RC2&amp;quot; or &amp;quot;LinuxMCE Install DVD for i386 - 0710 RC2&amp;quot; with &amp;quot;keep settings&amp;quot; option or&lt;br /&gt;
b) the upgrade helper application from [http://www.linuxmce.com/upgrade/gutsy-upgrade-scripts_0.1.0-2_i386.deb gutsy-upgrade-scripts_0.1.0-2_i386.deb] and choose to install from web or from DVD (you must have the double layer DVD).&lt;br /&gt;
&lt;br /&gt;
==Download locations==&lt;br /&gt;
&lt;br /&gt;
To get the latest sources, use [[http://svn.linuxmce.com/trac.cgi/wiki svn]].&lt;br /&gt;
                                   &lt;br /&gt;
This wiki page is editable so users can add additional mirrors.  If you would like to mirror LinuxMCE, please contact danielk@cuymedia.net. He will give you rsync access to the linuxmce.org servers so you can automatically download the releases ahead of time.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; style=&amp;quot;border-collapse:collapse; border-color:#8eabd0; background:#e7edf5&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background: lightsteelblue&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Official Torrents:&lt;br /&gt;
|&lt;br /&gt;
*[http://torrents.thepiratebay.org/4175308/LinuxMCE_Install_DVD_for_i386_-_0710_RC2.4175308.TPB.torrent LinuxMCE-DVD-i386-rc2.iso]&lt;br /&gt;
*[http://torrents.thepiratebay.org/4175304/LinuxMCE_Install_Upgrade_DVD_for_i386_-_0710_RC2.4175304.TPB.torrent LinuxMCE-DVD-DL-i386-rc2.iso]&lt;br /&gt;
*[http://torrents.thepiratebay.org/4175297/LinuxMCE_Install_CDs_for_i386_-_0710_RC2.4175297.TPB.torrent LinuxMCE-CD1-i386-rc2.iso LinuxMCE-CD2-i386-rc2.iso]&lt;br /&gt;
*[http://torrents.thepiratebay.org/4175299/LinuxMCE_Install_DVD_for_AMD64_-_0710_RC2.4175299.TPB.torrent LinuxMCE-DVD-amd64-rc2]&lt;br /&gt;
*[http://torrents.thepiratebay.org/4175295/LinuxMCE_Install_CDs_for_AMD64_-_0710_RC2.4175295.TPB.torrent LinuxMCE-CD1-amd64-rc2.iso LinuxMCE-CD2-amd64-rc2.iso]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please help us seed! Leave your torrent open for as long as possible after your download finishes.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
!Worldwide (CoBlitz):&lt;br /&gt;
|&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-DVD-i386-rc2.iso     3.9G&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-DVD-DL-i386-rc2.iso  7.0G&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-CD1-i386-rc2.iso     681M&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-CD2-i386-rc2.iso     678M&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-DVD-amd64-rc2.iso    3.9G&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-DVD-DL-amd64-rc2.iso 7.1G&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-CD1-amd64-rc2.iso    692M&lt;br /&gt;
*http://coblitz.codeen.org/linuxmce.iptp.org/710/LinuxMCE-CD2-amd64-rc2.iso    695M&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
!Europe (full):&lt;br /&gt;
|&lt;br /&gt;
*http://linuxmce.iptp.org/&lt;br /&gt;
*ftp://ftp.possy.de&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
!Middle East (full):&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;!-- *http://mirror.mirimar.net/linuxmce/ (CDs only so far for 710RC2)  Ran out of space --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
!Australia (full):&lt;br /&gt;
|&lt;br /&gt;
*http://linuxmce.ihas.com.au/   (for NZ and AU only, others are heavily throttled)&lt;br /&gt;
*http://mirror.waia.asn.au/pub/linuxmce/&lt;br /&gt;
*http://mirror.internode.on.net/pub/linuxmce/&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
!Europe (partial):&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;!-- *http://www.tsl.csd.uoc.gr/users/koutras/download/linuxmce/ (0704 release &amp;amp; beta only) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
!USA (full):&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
!USA (partial):&lt;br /&gt;
|&lt;br /&gt;
*http://www.linuxmcecookbook.com/iso/i386                       (latest i386 release CD&#039;s only)&lt;br /&gt;
*http://mirrorlinux.net/distros/mce710rc2/                      (latest release only)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please see the [http://www.linuxmce.org/news.php?id=25 release announcement] on the front page for the md5sums of the files. Since this wiki page is editable we can not keep the md5sums here without the risk of tampering.&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Talk:LinuxMCE.Org_2.0&amp;diff=18018</id>
		<title>Talk:LinuxMCE.Org 2.0</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Talk:LinuxMCE.Org_2.0&amp;diff=18018"/>
		<updated>2009-03-18T01:53:24Z</updated>

		<summary type="html">&lt;p&gt;Seer: New section: Is this stale info?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are many problems with the site.&lt;br /&gt;
&lt;br /&gt;
1) It has been written in terrible English -- misspelled words abound and proper grammar is nearly non-existent. For example, &amp;quot;survailance&amp;quot; should be &amp;quot;surveillance&amp;quot;. (A simple dictionary goes a long way.)&lt;br /&gt;
&lt;br /&gt;
2) Only a small portion of the program is actually documented. &lt;br /&gt;
&lt;br /&gt;
3) The changes in the program are not documented and &amp;quot;legacy&amp;quot; instructions are left on the page.&lt;br /&gt;
&lt;br /&gt;
4) There is a lot of &amp;quot;fluff&amp;quot; in the documentation that is meaningless. You can&#039;t write &amp;quot;the program can do this and this and this!!!&amp;quot; when only one person has ever been able to do it. Hyperbole misleads the users.&lt;br /&gt;
&lt;br /&gt;
Still, the Wiki is evolving in the right direction, slowly.&lt;br /&gt;
&lt;br /&gt;
If the intent is to correct the main page, then you should get some help from the contributors to the Wiki.&lt;br /&gt;
&lt;br /&gt;
I worked documenting code for an American defense contractor -- the problems with LinuxMCE documentation are not unique. Most programmers are terrible at documentation.&lt;br /&gt;
&lt;br /&gt;
If you want good documentation, you must have a dedicated documenter and one programmer to whom the documenter can ask questions.&lt;br /&gt;
&lt;br /&gt;
== Why not just use the Wiki? ==&lt;br /&gt;
&lt;br /&gt;
Why not just use the Wiki?&lt;br /&gt;
&lt;br /&gt;
It is better written and has the benefit of many user input anyway.&lt;br /&gt;
&lt;br /&gt;
== Menu listing... ==&lt;br /&gt;
&lt;br /&gt;
One VERY important part of the Linux MCE (or any system really) is the Hardware Compability List (HCL)&lt;br /&gt;
&lt;br /&gt;
This should have its own Menyitem on the Front page.&lt;br /&gt;
&lt;br /&gt;
== Is this stale info? ==&lt;br /&gt;
&lt;br /&gt;
I noticed that this page hasn&#039;t been edited in over 6 months.  Is anybody on this?  Is the current linuxmce.org site the &amp;quot;2.0&amp;quot; version?  I personally would love to add some code to mix, but right now I&#039;m playing catch up, so I thought I&#039;d help out with the wiki.  I&#039;d ready to write new copy for the home page.  I&#039;d also be into writing the &amp;quot;sales pitch&amp;quot; and &amp;quot;What is LinuxMCE&amp;quot; docs for the non-techie.  So who has write access to that page?  Who is in the &amp;quot;design committee&amp;quot; (the people that would have to say &amp;quot;yes&amp;quot; to any new design changes)?  [[User:Seer|Seer]] 02:53, 18 March 2009 (CET)&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Main_Page&amp;diff=18017</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Main_Page&amp;diff=18017"/>
		<updated>2009-03-18T01:27:03Z</updated>

		<summary type="html">&lt;p&gt;Seer: screenshots box-add wiki links to UI versions &amp;amp; shrink overall size ot text/added dvd install link added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:175%; font-weight:bold&amp;quot;&amp;gt;The &#039;&#039;&#039;[http://linuxmce.org LinuxMCE]&#039;&#039;&#039; wiki&amp;lt;/div&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Your guide to a smarter home!&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;clear: both; border: 1px solid #aaa; background-color: #f9f9f9; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.5em; float: right; text-align:center&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Screenshots&#039;&#039;&#039;&lt;br /&gt;
[[Image:MainMenu2.jpg|200px]]&amp;lt;br/&amp;gt;&amp;lt;small&amp;gt;Main menu with media in the background&amp;lt;br&amp;gt;(high resolution [[Selecting_the_Right_UI#UI2_with_alpha_blending|UI2B]])&amp;lt;/small&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:FileBrowserUI1.jpg|200px]]&amp;lt;br/&amp;gt;&amp;lt;small&amp;gt;Browsing media files&amp;lt;br&amp;gt;(low resolution [[Selecting_the_Right_UI#UI1|UI1]])&amp;lt;/small&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:DialNumberUI1.jpg|200px]]&amp;lt;br/&amp;gt;&amp;lt;small&amp;gt;Telephone dial pad&amp;lt;br&amp;gt;(low resolution [[Selecting_the_Right_UI#UI1|UI1]])&amp;lt;/small&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;[[Screenshots|More screenshots and videos]]&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;LinuxMCE is the only all-in-one open source solution that seamlessly combines:&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;Media &amp;amp; entertainment&#039;&#039; with a server for music and video, plus a [[PVR]] (like TiVo or Sky+)&lt;br /&gt;
* &#039;&#039;Home automation&#039;&#039; to control everything from lights to heating with a touch-screen tablet or your mobile phone&lt;br /&gt;
* &#039;&#039;Phone system&#039;&#039; with video conferencing&lt;br /&gt;
* &#039;&#039;Security system&#039;&#039; that feeds live video to your mobile device during a security breach&lt;br /&gt;
&lt;br /&gt;
LinuxMCE builds on the superior networking capabilities of Linux to create a home automation/multimedia/communication network. No other operating system has this capability.&lt;br /&gt;
&lt;br /&gt;
[[LinuxMCE|Read more]] to see all the possibilities that LinuxMCE offers.&lt;br /&gt;
&lt;br /&gt;
See [[FAQ|the FAQ]] for quick answers to common questions about LinuxMCE.&lt;br /&gt;
&lt;br /&gt;
Watch the [[Video|LinuxMCE Video]] showing a detailed hardware and installation walk-through.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
Please take a moment to read about &#039;&#039;&#039;[[Known_Issues|known issues]]&#039;&#039;&#039; before downloading our &#039;&#039;Quick Install DVD&#039;&#039; or the &#039;&#039;Two-CD Installer&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=5 cellpadding=5 border=0&lt;br /&gt;
|width=48|{{Click || image=Globe.gif | link=Download_Instructions | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Download_Instructions|Download LinuxMCE]] or buy [[LinuxMCE Products]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;After checking known issues please download from an appropriate mirror&amp;lt;/small&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You may then want to check out the [[DVD Installation]] guide for a step by step walk through of setting up and configuring LinuxMCE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Project News=&lt;br /&gt;
*[[LinuxMCE-0810 alpha2]] (for testing) is released &#039;&#039;(18-Feb-09)&#039;&#039;&lt;br /&gt;
*[[LinuxMCE-0810 alpha1]] (for testing) is released &#039;&#039;(1-Dec-08)&#039;&#039;&lt;br /&gt;
*[[LinuxTag 2008]] a resounding success &#039;&#039;(28-May-08)&#039;&#039;&lt;br /&gt;
*[[Mirrors_0710|LinuxMCE Version 0710 (RC2)]] is released &#039;&#039;(07-May-08)&#039;&#039;&lt;br /&gt;
*[[Logo|LinuxMCE Logos]] are now available for download &#039;&#039;(09-Apr-08)&#039;&#039;&lt;br /&gt;
*[[Insteon_-_Setting_Up_PLM_Template|RC1 Insteon Support]] &#039;&#039;(20-Feb-08)&#039;&#039;&lt;br /&gt;
*[http://www.osweekly.com/index.php?option=com_content&amp;amp;task=view&amp;amp;id=2664 Linux Media Center PCs Review Roundup] &#039;&#039;(4-Oct-07)&#039;&#039;&lt;br /&gt;
*[http://www.news.com/DRM-troubles-drive-ex-Microsoft-employee-to-Linux/2100-1016_3-6210131.html DRM troubles drive ex-Microsoft employee to Linux] &#039;&#039;(26-Sep-07)&#039;&#039;&lt;br /&gt;
*[http://linuxmce.org/news.php?id=10| New SchedulesDirect service for MythTV] &#039;&#039;(31-Aug-07)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=5 cellpadding=5 border=0 width=100%&lt;br /&gt;
|width=48|{{Click || image=Newspaper.gif | link=LinuxMCE_media_coverage | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[LinuxMCE media coverage|More LinuxMCE media coverage]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Third party media and blog coverage&amp;lt;/small&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Wiki Site News=&lt;br /&gt;
* A new [[LinuxMCE.Org 2.0|scratch-pad area]] is being set up to help document a new front end website.&lt;br /&gt;
* LinuxMCE Wiki was updated to the latest version which includes an RSS feed extension. Instructions about how to use it can be found [http://www.mediawiki.org/wiki/Extension:WikiArticleFeeds here], or take a look at a [[Test RSS]] &#039;&#039;(31-Jan-08)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Documentation Access=&lt;br /&gt;
This Wiki has many hierarchical [[:Category:Main|categories]] of articles. There are also developer maillists, [[Source_Code|source code]] repositories (with attached discussions), [http://mantis.linuxmce.org bug/issue report mangement] and [http://forum.linuxmce.org/index.php forums] for discussion among users, developers and other members of the LinuxMCE community.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Setups ==&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=5 cellpadding=5 border=0 &lt;br /&gt;
|width=48|{{Click || image=pcwork.gif | link=User Setups | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[User Setups]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;LinuxMCE User Setups/Configurations&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Support==&lt;br /&gt;
{| cellspacing=5 cellpadding=5 border=0 &lt;br /&gt;
|width=48|{{Click || image=Manual.gif | link=User Manual | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[User Manual]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;LinuxMCE User Manual&lt;br /&gt;
|width=48|{{Click || image=Guides.gif | link=:Category:Tutorials | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[:Category:Tutorials|Guides]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;HOWTO guides describing common scenarios&lt;br /&gt;
|-&lt;br /&gt;
|width=48|{{Click || image=FAQ.gif | link=Frequently Asked Questions | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Frequently Asked Questions]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Responses to the most common questions&lt;br /&gt;
|width=48|{{Click || image=Hardware.gif | link=Hardware | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Hardware]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Hardware documentation&lt;br /&gt;
|-&lt;br /&gt;
|width=48|{{Click || image=Troubleshooting.gif | link=Troubleshooting | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Troubleshooting]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Help with common problems&lt;br /&gt;
|width=48|{{UrlClick || image=Mail.gif | link=Developers | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[http://www.charonmedia.org/mailman/listinfo Mailing List]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Stay up to date with regular emails&lt;br /&gt;
|-&lt;br /&gt;
|width=48|{{UrlClick || image=Forum.gif | link=kjh | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[http://forum.linuxmce.com Forum]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Support forum&lt;br /&gt;
|width=48|{{Click || image=Forum.gif | link=Chat | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Chat]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Support chat&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
{| cellspacing=5 cellpadding=5 border=0&lt;br /&gt;
|width=48|{{Click || image=Contacts.gif | link=Contacts | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Contacts|Contact Information]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Contact people involved with the project&lt;br /&gt;
|width=48|{{Click || image=Manual.gif | link=Programmer&#039;s Guide | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Programmer&#039;s Guide]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;A guide for software developers&lt;br /&gt;
|-&lt;br /&gt;
|width=48|{{Click || image=Software.gif | link=Software components | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Software components|Software Components]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Open source software used by LinuxMCE&lt;br /&gt;
|width=48|{{Click || image=Bug.gif | link=Bug Reports | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Bug Reports]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Help improve the software by reporting bugs&lt;br /&gt;
|-&lt;br /&gt;
|width=48|{{Click || image=Binary.gif | link=Source Code | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Source Code]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Access the LinuxMCE source code&lt;br /&gt;
|width=48|{{UrlClick || image=CDR.gif | link=Versions | width=48px | height=48px }}&lt;br /&gt;
|&#039;&#039;&#039;[[Versions]]&#039;&#039;&#039;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;View version histories and changes&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Pvr-150_picture_quality_guide&amp;diff=18005</id>
		<title>Pvr-150 picture quality guide</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Pvr-150_picture_quality_guide&amp;diff=18005"/>
		<updated>2009-03-16T20:19:21Z</updated>

		<summary type="html">&lt;p&gt;Seer: format updating, added numbered list instead of many small bullet lists&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PVR-150 PICTURE QUALITY GUIDE ==&lt;br /&gt;
&lt;br /&gt;
The PVR-150 is one of the most common devices used to capture live analog TV broadcast. &lt;br /&gt;
After weeks of searching the internet and trying various settings I have finally got to a point where picture quality is almost identical to the picture you get watching your set top box connected directly to you TV.&lt;br /&gt;
&lt;br /&gt;
The first thing you need to take into account is that the picture quality is vary much dependent on the type of connection you are using on the card. I received the best results using the S-VIDEO connection, how ever it is a good idea to experiment with the various connections because in different countries there are different broadcast formats and you might find that using a different connection works better for you.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;These settings should stop the OSD from tearing, how ever, at the time of writing this these settings do not survive a router reload.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Launch MythTV, got to the &#039;&#039;&#039;Utilities/Setup --&amp;gt; Setup --&amp;gt; TV Settings --&amp;gt; Playback&#039;&#039;&#039;. On the first screen you&#039;ll see several options:&lt;br /&gt;
# Deselect the &#039;&#039;&#039;Deinterlace&#039;&#039;&#039; option. &lt;br /&gt;
# For &#039;&#039;&#039;Preferred Decoder&#039;&#039;&#039; choose &#039;&#039;&#039;libmpeg2&#039;&#039;&#039;&lt;br /&gt;
# Select &#039;&#039;&#039;Enable OpenGL&#039;&#039;&#039;. &lt;br /&gt;
# After that keep clicking &#039;&#039;&#039;next&#039;&#039;&#039; until you get to the last screen and click &#039;&#039;&#039;finish&#039;&#039;&#039;. Failing to do so will leave your settings unsaved. The next step is vary important as it is dealing with the picture quality and is the reason for writing this tutorial.&lt;br /&gt;
# Still in the setup menu go to &#039;&#039;&#039;Recording Profiles --&amp;gt; Mpeg2 Encoders --&amp;gt; Default&#039;&#039;&#039;. The reason to use the default profile rather then the high quality one is that they are basically all the same until you change them.  I always use the default one because I always want to get the best picture quality I can.&lt;br /&gt;
# On the second screen - &#039;&#039;&#039;picture size&#039;&#039;&#039; choose at least &#039;&#039;&#039;720X480&#039;&#039;&#039;. Depending on your country, using a larger resolution might give you better quality so try it.&lt;br /&gt;
# On the next screen: For &#039;&#039;&#039;Stream Type&#039;&#039;&#039; use &#039;&#039;&#039;DVD-Special 2&#039;&#039;&#039;. &lt;br /&gt;
# Set the regular bitrate to &#039;&#039;&#039;8000&#039;&#039;&#039; &lt;br /&gt;
# Set the max bitrate to &#039;&#039;&#039;12000&#039;&#039;&#039;, which the highest bitrate the card can handle.&lt;br /&gt;
# Once again, go thru all screens until you get to the last one and click finish.&lt;br /&gt;
&lt;br /&gt;
You should now have a pretty good picture quality which is pretty close to direct TV picture quality (at least on my system).&lt;/div&gt;</summary>
		<author><name>Seer</name></author>
	</entry>
</feed>