gm_w
July 16th, 2009, 10:32 PM
I followed these steps to setup my HVR 950 usb tv tuner on Ubuntu 9.04 Jaunty:
wget http://www.steventoth.net/linux/xc5000/HVR-12x0-14x0-17x0_1_25_25271_WHQL.zip
unzip -j HVR-12x0-14x0-17x0_1_25_25271_WHQL.zip Driver85/hcw85bda.sys
sudo apt-get install linux-headers-generic
cp /usr/src/linux-headers-`uname -r`/Documentation/video4linux/extract_xc3028.pl ~/HVR950
chmod +x extract_xc3028.pl
./extract_xc3028.pl
sudo cp xc3028-v27.fw /lib/firmware
Tvtime is able to recognize the device and is producing great video. But the problem is no audio at all. I used to have the same device working in Ubuntu 7.10 Gutsy and the command I used to get audio working then was:
/usr/bin/sox -r 48000 -w -c 2 -t ossdsp /dev/dsp1 -t ossdsp /dev/dsp &
I believe SOX's version has upgraded and some of the options no longer work as before. After reading through SOX documentation, I modified the command above to:
/usr/bin/sox -r 48000 -b 16 -c 2 -t ossdsp /dev/dsp1 -t ossdsp /dev/dsp &
Now the problem is sox can't find ossdsp: no handler for given file type `ossdsp'
I am no expert in this matter and I don't really know how to use SOX and why ossdsp was used in the previously working command. Can anyone help me out here?
I have Dell Vostro 1500 laptop. I did not do any manual installation of the audio driver -- regular audio seems to be working properly.
Thanks
wget http://www.steventoth.net/linux/xc5000/HVR-12x0-14x0-17x0_1_25_25271_WHQL.zip
unzip -j HVR-12x0-14x0-17x0_1_25_25271_WHQL.zip Driver85/hcw85bda.sys
sudo apt-get install linux-headers-generic
cp /usr/src/linux-headers-`uname -r`/Documentation/video4linux/extract_xc3028.pl ~/HVR950
chmod +x extract_xc3028.pl
./extract_xc3028.pl
sudo cp xc3028-v27.fw /lib/firmware
Tvtime is able to recognize the device and is producing great video. But the problem is no audio at all. I used to have the same device working in Ubuntu 7.10 Gutsy and the command I used to get audio working then was:
/usr/bin/sox -r 48000 -w -c 2 -t ossdsp /dev/dsp1 -t ossdsp /dev/dsp &
I believe SOX's version has upgraded and some of the options no longer work as before. After reading through SOX documentation, I modified the command above to:
/usr/bin/sox -r 48000 -b 16 -c 2 -t ossdsp /dev/dsp1 -t ossdsp /dev/dsp &
Now the problem is sox can't find ossdsp: no handler for given file type `ossdsp'
I am no expert in this matter and I don't really know how to use SOX and why ossdsp was used in the previously working command. Can anyone help me out here?
I have Dell Vostro 1500 laptop. I did not do any manual installation of the audio driver -- regular audio seems to be working properly.
Thanks