I had the same problem on my HP Pavilion laptop as well as Dell Latitude D630 laptop. It happens on kino 1.3 that I installed using ubuntu 8.10 (64-bit Desktop version) as well as kino 1.3.1 that I compiled myself.
The problem is that after a few seconds of editing, the audio driver seems crash with constant motor boat sound coming out of the speakers. Nothing seems to silence this other than rebooting the OS.
The problem happens with cinelerra package that I installed using ubuntu packaging system as well as latest cinelerra that I compiled myself.
Given that the problem happens on multiple hardware, and multiple applicaitons, it seemed logical to suspect something common such as the audio driver.
I did many many hours of video editing with kino about a year ago using an earlier versions of ubuntu and kino using the same hardware.
So I compiled the latest ALSA driver and related files. This solved the problem for me. Although kino may crash once every few minutes, at least it does not hose the audio subsystem. I can restart kino and continue video editing. Following is what I did on my system with Intel sound hardware. YMMV.
#
These are the steps I took to install the latest ALSA driver and
related files onto my HP Pavillion DV6000 laptop running 64-bit
Ubuntu 8.10. Some of the steps are from ubuntuforums.org postings
made by others about a year ago. -rk 12/30/2008
#
First step was to log off from the GUI, i.e., gdm. This was to
assure that the sound driver could be unloaded safely. To do this,
I went over to one of the consoles, i.e., Control-Alt-F1,
then logged in as root. After that I shutdown GUI altogether, i.e.,
/etc/init.d/gdm stop
Unload all sound drivers
This is the step I read from ubuntuforums.org.
lsmod | grep snd |cut -d" " -f1 | xargs modprobe -r
I did not do this, because it would have also removed ubuntu-desktop package.
apt-get remove --purge alsa-base alsa-tools
Make sure some of the necessary packages are installed
sudo apt-get install linux-headers-$(uname -r) build-essential libncurses5-dev libncursesw5-dev ncurses-term alsa-tools-gui gettext po-debconf debhelper quilt alsa-base libc6-dev
Back up current driver
tar -zcvf original-drivers.tgz /lib/modules/uname -r/kernel/sound
Replace "username" here with your actual user name
USER=username
mkdir /home/$USER/alsa echo "made /home/$USER/alsa dir" cd /home/$USER/alsa
Download the alsa related source files
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.18a.tar.bz2 wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.18.tar.bz2 wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.18.tar.bz2 wget ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.0.17.tar.bz2
Unpack
tar xvf alsa-driver-1.0.18a.tar.bz2 tar xvf alsa-lib-1.0.18.tar.bz2 tar xvf alsa-utils-1.0.18.tar.bz2 tar xvf alsa-firmware-1.0.17.tar.bz2
Install driver
cd alsa-driver-1.0.18a make clean make mrproper ./configure --with-oss=yes --with-cards=hda-intel make make install
Install alsa-lib
cd alsa-lib-1.0.18 make clean ./configure make make install
Install alsa-utils
cd alsa-utils-1.0.18 ./configure make clean make make install
Install alsa-firmware
cd alsa-firmware-1.0.17 ./configure make clean make make install
Activate intel driver. This applies only if you have an intel hardware.
modprobe snd-hda-intel