I don't know why, but if I set the PCM control to 80% or lower (thanks
to a hint from a forum), i will get the quality before I switched to
Linux.
Crazy, isn't it ?
Hobbies? Is this a Linux distro?
I don't know why, but if I set the PCM control to 80% or lower (thanks
to a hint from a forum), i will get the quality before I switched to
Linux.
Crazy, isn't it ?
./configure --prefix=/usr
[mysqld]
#port = 3306
#datadir=/home/jorg/.mythtv/db
#socket=/home/jorg/.mythtv/db/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1
skip-locking
key_buffer = 16K
max_allowed_packet = 1M
table_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 64K
server-id = 1
skip-bdb
skip-innodb
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[isamchk]
key_buffer = 8M
sort_buffer_size = 8M
[myisamchk]
key_buffer = 8M
sort_buffer_size = 8M
[mysqlhotcopy]
interactive-timeout
Here you define your TV card.3. Video Sources
Here you define where MythTV can find the program information for the EPG.4. Input connections
With DVB-S the "Transmitted guide only" is a good choice.
Here you say Capture Card x can find his program information at video source y.
Scan for channels: That's a torture. Every time you do a Full Scan (Tuned) you have to reenter all the data. And with this type only a few data(?) channels are found. But i got the transponder list. And with a Full Scan of Existing Transports i got my channels. The first times i run it, i had the feeling the program hang up because no screen update for a long time and error messages in the log file. Go and get a cup of tea, the scan took longer than the dvbscan, about 10-20 minutes.
The next step is to download the channel logos, only if you like. I think, this tool is buggy. When you choose a logo for a channel from a list of choices, the logo get downloaded, but the channel is not updated, so you have to enter the filename by hand. If the program choose automatic a logo because there is only one, the channel will get updated. For the filename you have to enter the full path, e.g. /home/bob/.mythtv/channels/logo.jpg
And you get a tabulator separated file, import it with e.g. OpenOffice.org Calc. Edit the channels, save and import it back:$ mysql -u mythtv -p mythconverg -e "SELECT * FROM channel" > channels.csv
You need the parameter --columns for the case, you changed the order of the columns.$ sed -e "s/\"NULL\"/NULL/g" channels.csv > channel.csv
$ mysqlimport -u mythtv -p mythconverg --columns=`sed -n -e "y/\t/,/" -e "s/\"//g" -e P -e q channel.csv` --ignore-lines=1 --local --delete --fields-optionally-enclosed-by=\" channel.csv
sed -e "s/\"NULL\"/NULL/g" channels.csv > channel.csv
Replace "NULL" with NULL, save into channel.csv
sed -n -e "y/\t/,/" -e "s/\"//g" -e P -e q channel.csv
Returns the first line which contains the column names, replace the tabulator with "," , replace the field separator " with nothing.
$ mythbackend -v eit
kernel: input: TopSeed Tech Corp. USB IR Combo Device as /class/input/input3
kernel: input,hidraw0: USB HID v1.00 Keyboard [TopSeed Tech Corp. USB IR Combo Device ] on usb-0000:00:02.1-3
kernel: input: TopSeed Tech Corp. USB IR Combo Device as /class/input/input4
kernel: input,hiddev96,hidraw1: USB HID v1.00 Mouse [TopSeed Tech Corp. USB IR Combo Device ] on usb-0000:00:02.1-3