Rebtel wins hands down. (Best quality too!) (i use their android app)
9.2c/min, 3.4c/min and 1.69c/min @Rebtel Wins!
A few things, mostly technical notes...
sudo add-apt-repository ppa:nathan-renniewaldock/xbmc-nightly sudo apt-get update sudo apt-get install xbmc sudo apt-get install libtag1-devEnjoy!
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
6172 XXX 20 0 155m 50m 14m R 22.9 2.5 0:06.86 mplayer
Thats when I stumbled upon this ArchLinux Wiki post, and added these to my ~/.mplayer/config file:
vo=vdpau, vc=ffh264vdpau,ffmpeg12vdpau,ffodivxvdpau,ffwmv3vdpau,ffvc1vdpau,
And now,
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
6397 XXX 20 0 157m 51m 15m S 2.3 2.6 0:03.73 mplayer
my %cpu dropped from 22.9% to 2.3%..! Amazing, isn't it?
wget -q "https://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-aurora/?C=M;O=A" -O - | awk '/en-US.linux-i686.tar.bz2">/ {gsub(/href="/,"",$6)+gsub(/">.*/,"",$6); print "https://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-aurora/"$6}' | while read a
do
wget -c "$a" -q -O /tmp/firefox-aurora-en-US.linux-i686.tar.bz2 && cd mydir && tar -xvjf /tmp/firefox-aurora-en-US.linux-i686.tar.bz2
done
wget http://nightly.mozilla.org/ -q -O - |awk '/en-US.linux-i686/ {gsub(/href="/,"",$2)+gsub(/">/,"",$2);print $2}' | while read a
do
wget -c "$a" -q -O /tmp/firefox-nightly-en-US.linux-i686.tar.bz2 && cd mydir && tar -xvjf /tmp/firefox-nightly-en-US.linux-i686.tar.bz2
done
$ /usr/X11/bin/xterm -title "Close_me_after_myth" -e "ssh -c blowfish -L 6543:localhost:6543 192.168.1.100 cat - "
$ /usr/bin/xterm -title "Close_me_after_myth" -e "ssh -c blowfish -L 6543:localhost:6543 192.168.1.100 cat - " &
Running a thin myth-tv frontend: ------------------------------- Here's how to setup a thin frontend for mythtv with minimal config and filesets. Install mythtv frontend and socat on your machine. # apt-get install mythtv-frontend socat Create a file called ~/bin/thin-myth.sh: (in my case, the IP of my backend server is 192.168.1.100) #! /bin/bash log="~/myth-tv.log" #set the IP of your backend server. IP=192.168.1.100 xrandr >> $log socat -b 128000 -d -d -lmlocal2 TCP4-LISTEN:3306,fork,reuseaddr TCP4:$IP:3306 & socat -b 128000 -d -d -lmlocal2 TCP4-LISTEN:6543,fork,reuseaddr TCP4:$IP:6543 & /usr/bin/mythfrontend -l $log Ensure that DBHostname in ~/.mythtv/config.xml and ~/.mythtv/mysql.txt is set to 127.0.0.1: $ grep 127.0.0.1 config.xml mysql.txt config.xml: 127.0.0.1 mysql.txt:DBHostName=127.0.0.1 Launch ~/bin/thin-myth.sh and enjoy. How does it work? ----------------- socat listens on 3306,6543 for mysql and mythbackend ports respectively and relays those onto your mysql and mythbackend ports on your backend server.
more here..
export alias scpr='rsync -av --partial --progress --rsh="ssh -c arcfour -o compression=no -o StrictHostKeyChecking=no"'
myhost:/tmp# ls -ltrh somefile
-rw-r----- 1 root root 2.3G Jan 24 11:53 somefile
myhost:/tmp# time scpr somefile somehost:/tmp/
somefile
2452194584 100% 67.76MB/s 0:00:34 (xfer#1, to-check=0/1)
sent 2452494012 bytes received 31 bytes 65399841.15 bytes/sec
total size is 2452194584 speedup is 1.00
real 0m37.408s
user 0m22.341s
sys 0m5.624s
myhost:/tmp# dmesg >> somefile
myhost:/tmp# time scpr somefile somehost:/tmp/
somefile
2452249209 100% 137.71MB/s 0:00:16 (xfer#1, to-check=0/1)
sent 266589 bytes received 396255 bytes 20395.20 bytes/sec
total size is 2452249209 speedup is 3699.59
real 0m32.525s
user 0m16.521s
sys 0m0.484s
myhost:/tmp#
$ time scp -c arcfour -C somefile somehost:/somewhere
real 47m30.974s
user 46m18.974s
sys 1m4.040s
$ time scp -c arcfour somefile somehost:/somewhere
real 10m41.195s
user 2m41.142s
sys 0m51.611s
$ file somefile
somefile: MySQL MISAM compressed data file Version 1
http://www.asianetglobal.com/flvplayer.swf?videoURL=http://videos.asianetglobal.com/flv/asianet/VdoGallery/KKandathum2712.flv&thumbURL=Images/VdoGallery/Kettathum%20Kandathum.jpg
http://videos.asianetglobal.com/flv/asianet/VdoGallery/KKandathum2712.flv

in case you didnt know it already nokia, we indians like products which are durable. stop stealing from us, stop dumping flaky stuff on indian markets.
Microsoft Corp. LifeCam VX-7000 is an "OK" usb camera. here's the amazon.com page with more details
Technical Details
Model: CEA-00001
Audio Input: Built-in microphone
Video Capture Resolution: 1600 x 1200
Image types: JPEG
Image Capture Speed: 30 fps
here's the lsusb o/p against this webcam:
Bus 001 Device 003: ID 045e:0723 Microsoft Corp. LifeCam VX-7000 (UVC-compliant)
It also works on linux. I used Lifecam VX-7000 to make video calls on skype on linux. I start skype as shown below, and it works great:
$ cat /usr/bin/start-skype.sh
#! /bin/bash
bash -c 'LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype'
So in short, if you're looking to buy a good cam which would work in linux, go for VX-7000.


This work is licensed under a Creative Commons License.