LinHES Forums http://forum.linhes.org/ |
|
Frontend can't play ogg? http://forum.linhes.org/viewtopic.php?f=6&t=6500 |
Page 1 of 1 |
Author: | knoppix4me [ Thu Oct 20, 2005 1:09 am ] |
Post subject: | Frontend can't play ogg? |
![]() The strange thing is a search for "ogg" and "frontend" doesn't turn up anything! So am I the only one who has this problem? (Hint: all of our R5A16 CD's are the same, and there's no setup...) I can get the exact error message if needed. Due to the monolithic nature of "mythfrontend" and the graphics interface I can't deduce what programs or files actually play the file. If someone could enlighten me I could check out the running system. I'm reasonably knowlegeble about Linux. Barry |
Author: | cesman [ Thu Oct 20, 2005 1:50 am ] |
Post subject: | |
You can watch TV with the frontend because it uses MythTV protocol to stream it from the backend. However for music, video, etc. you need file sharing between the two systems. |
Author: | knoppix4me [ Sat Oct 22, 2005 12:19 am ] |
Post subject: | |
So...does this mean it's time to learn about NFS? Being in a world with a network and http and ftp and so on, it's kind of a surprise to learn I don't have file sharing! ![]() |
Author: | Girkers [ Sat Oct 22, 2005 2:22 am ] |
Post subject: | |
You have to export the NFS share and also have Mysql given network access, I suspect with TV working you can access the DB. For the NFS you can try this script: Code: #!/bin/sh
# # Script created by Girkers aka # Garth Kirkwood <garth@ontheside.dyndns.biz> # # Portions of code kindly donated by # mjl #Default Variables sys=""; quest="Do you want to enable "; ans="? [yn]:"; choice=""; #Export NFS share for Frontend access echo sys="options to allow Frontend Access"; read -n1 -p "$quest$sys$ans" choice choice=$(echo $choice | tr "[a-z]" "[A-Z]") echo if [[ ${choice} = "Y" ]]; then echo "/myth *(rw)" >> /etc/exports /etc/init.d/nfs-kernel-server start && update-rc.d nfs-kernel-server defaults mv /etc/mysql/my.cnf /etc/mysql/my.cnf.old cat /etc/mysql/my.cnf.old | \ sed -e 's/skip-networking/#skip-networking/g' > /etc/mysql/my.cnf echo echo $sys "command complete" else echo $sys "skipped" fi NOT TESTED IN R5A22. |
Author: | cesman [ Sat Oct 22, 2005 3:16 pm ] |
Post subject: | |
Nice little script. It should work w/o issue. |
Page 1 of 1 | All times are UTC - 6 hours |
Powered by phpBB® Forum Software © phpBB Group http://www.phpbb.com/ |