computers:server:mythbuntu1104
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| computers:server:mythbuntu1104 [2011/05/28 15:12] – david | computers:server:mythbuntu1104 [2012/05/19 17:18] (current) – [Filename Symbolic Links] david | ||
|---|---|---|---|
| Line 18: | Line 18: | ||
| ==== Configuration ==== | ==== Configuration ==== | ||
| - | | + | - Modify your network settings like this: < |
| + | sudo nano / | ||
| + | </ | ||
| + | | ||
| # The primary network interface | # The primary network interface | ||
| auto eth0 | auto eth0 | ||
| Line 30: | Line 33: | ||
| dns-nameservers xx.xx.xx.xx | dns-nameservers xx.xx.xx.xx | ||
| dns-search some.domain.com | dns-search some.domain.com | ||
| + | </ | ||
| + | - Restart the networking: | ||
| + | sudo / | ||
| </ | </ | ||
| Line 117: | Line 123: | ||
| ==== Backend Configuration ==== | ==== Backend Configuration ==== | ||
| + | |||
| + | Run Settings -> MythTV Backend Setup | ||
| * General | * General | ||
| Line 138: | Line 146: | ||
| * Run mythfilldatabase and that will take a while to get a fresh listing for 2 weeks | * Run mythfilldatabase and that will take a while to get a fresh listing for 2 weeks | ||
| + | Now enable a few more things: | ||
| + | |||
| + | Run Settings -> Mythbuntu Control Centre | ||
| + | * MythExport | ||
| + | * Enable MythExport (so we can maybe export shows to iPod format for instance?) | ||
| + | * Plugins | ||
| + | * MythWeb | ||
| + | * Enable Password Protection | ||
| + | |||
| + | ===== Tweaks ===== | ||
| + | |||
| + | ==== Filename Symbolic Links ==== | ||
| + | |||
| + | So that the samba share is actually useful, I will make a cron job that will every day build a list of links to the recorded shows. | ||
| + | |||
| + | |||
| + | - Download the [[http:// | ||
| + | - Place that perl script in **/ | ||
| + | - Make a directory / home for the symbolic links < | ||
| + | sudo mkdir / | ||
| + | </ | ||
| + | - Place the following script in **mythtv_cronjob_symlink_recordings.sh** <code bash> | ||
| + | #!/bin/bash | ||
| + | find / | ||
| + | cd / | ||
| + | for filename in / | ||
| + | do | ||
| + | # windows did not like the colons in the name, so changing to underscores and periods | ||
| + | fname=`/ | ||
| + | ##### no need to echo for a cron job ##### echo " | ||
| + | ln -s $filename $fname | ||
| + | done | ||
| + | exit 0 | ||
| + | </ | ||
| + | - Copy that file into **/ | ||
| + | sudo cp mythtv_cronjob_symlink_recordings.sh / | ||
| + | </ | ||
| + | - Set the ownership and permissions < | ||
| + | sudo chown root:root / | ||
| + | sudo chmod 755 / | ||
| + | </ | ||
| + | - I added these lines to **/ | ||
| + | follow symlinks = yes | ||
| + | unix extensions = no | ||
| + | wide links = yes | ||
| + | </ | ||
| ====== Frontend ====== | ====== Frontend ====== | ||
| Line 160: | Line 214: | ||
| - Modified the Audio output to use S/PDIF: | - Modified the Audio output to use S/PDIF: | ||
| - Utilities / Setup -> Setup -> General -> Page 4 | - Utilities / Setup -> Setup -> General -> Page 4 | ||
| - | - Speaker Configuration from **Stereo** to **5.1** | + | - <del>Speaker Configuration from **Stereo** to **5.1**</ |
| - | - Upmix: | + | - <del>Upmix: |
| - Audio Processing Capabilities: | - Audio Processing Capabilities: | ||
| - Set our VIDEO output to VDPAU: | - Set our VIDEO output to VDPAU: | ||
| Line 225: | Line 279: | ||
| - Go to Utilities / Setup -> Setup -> Media Settings -> Video Settings -> General Settings: | - Go to Utilities / Setup -> Setup -> Media Settings -> Video Settings -> General Settings: | ||
| + | ==== Media Types ==== | ||
| + | |||
| + | === mkv === | ||
| + | |||
| + | I was having some issues with the internal player not hanging very well with high definition content, so I modified the video player setup to use **mplayer** | ||
| + | |||
| + | - Surf in the mythtv setup to this menu structure: | ||
| + | - Change the extension to " | ||
| + | - Enter the following command into the **Command: | ||
| + | |||
| + | mplayer -cache=16384 -cache-min=10 -fs -zoom -quiet -nosub -vo vdpau -vc ffh264vdpau -heartbeat-cmd " | ||
| + | </ | ||
| + | * the **-vc** call makes a huge difference in CPU usage (from 50% to 2% doing a 1080p video) (I thought the **-vo** would do it on its own but it does not) | ||
| + | * the **-heartbeat-cmd " | ||
| ===== Trouble Shooting ===== | ===== Trouble Shooting ===== | ||
computers/server/mythbuntu1104.1306595574.txt.gz · Last modified: by david
