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 17:23] – david | computers:server:mythbuntu1104 [2012/05/19 17:18] (current) – [Filename Symbolic Links] david | ||
---|---|---|---|
Line 33: | 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 152: | Line 155: | ||
* Enable Password Protection | * 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 174: | 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 239: | 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.1306603417.txt.gz · Last modified: 2011/05/28 17:23 by david