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
(1) $ cp -s ~/channels.conf ~/.mplayer/channels.conf
(2) $ cp -s ~/channels.conf ~/.xine/channels.conf
Start the app:(1) $ mplayer -cache 4096 dvb://ProSieben
(2) $ xine dvb://ProSieben
kernel: usb 1-5: new high speed USB device using ehci_hcd and address 2
kernel: usb 1-5: configuration #1 chosen from 1 choice
kernel: Linux video capture interface: v2.00
kernel: uvcvideo: Found UVC 1.00 device SANYO Digital Camera (0474:024f)
kernel: usbcore: registered new interface driver uvcvideo
kernel: USB Video Class driver (v0.1.0)
kernel: uvcvideo: Failed to query (1) UVC control 1 (unit 0) : -110 (exp. 26).
The workaround is to unplug the cam.evolution --force-shutdown
glxinfo
. The command glxgears
draws running gears on your screen.$ufoai/ufoai
.
cd /usr/lib
ln -s libcurl.so.4 libcurl-gnutls.so.4
SDL_AUDIODRIVER="alsa"
in $ufoai/ufoai solved the problem.BUS=="usb", KERNEL=="ttyUSB0", SYSFS{idProduct}=="1003", SYSFS{idVendor}=="12d1", SYMLINK+="umts", RUN+="/usr/bin/wvdial -n --config /etc/wvdial-pin.conf"
SYSFS{idProduct}
and SYSFS{idVendor}
to match your modem, use lsusb to get the values.[Dialer Defaults]
Modem = /dev/ttyUSB0
Baud = 460800
SetVolume = 0
Dial Command = ATDT
FlowControl = NOFLOW
Init1 = ATZ
Init2 = AT+CPIN=XXXX
chown root:root
/etc/wvdial-pin.conf
;chmod u=rw,go-rwx /etc/wvdial-pin.conf
)#!/bin/sh
if [[ $1 = "up" ]] ; then
CMD="/sbin/ifup"
#wait for modem
DEV=/dev/ttyUSB0
if [ ! -e $DEV ] ; then
(echo 1; while [ ! -e $DEV ] ; do sleep 3; done; sleep 7; echo 100) | zenity --progress --text="Auf Modem warten ..." --auto-close --auto-kill --pulsate
fi
fi
if [[ $1 = "down" ]] ; then
CMD="/sbin/ifdown"
fi
if [[ ! $CMD || ! $2 ]] ; then
zenity --error --text="Was willst du machen ?"
exit 1
fi
zenity --progress --auto-kill --text="Bitte warten ..." --percentage=30 --pulsate <<<30 progress_pid="$!" msg="`$CMD">&1`
EXIT_CODE=$?
kill $PROGRESS_PID
if [ $EXIT_CODE != 0 ] ; then
echo $MSG
zenity --error --text="$MSG"
exit $EXIT_CODE
else
if [[ $1 = "up" ]] ; then
zenity --notification --text="Verbindung hergestellt" --window-icon=info &
PROGRESS_PID=$!
sleep 30
kill $PROGRESS_PID
fi
fi
exit 0
gconftool-2 -s -t bool /desktop/gnome/file_views/show_backup_files true
"Never change a running system"