> The last version known to work: 2.6.14-rc5 (probably 2.6.15 works also) > > With 2.6.15-rc3 or so, with the following fix, bttv started functioning. > > commit ed5297a94090d9a9f27b0ce1f9601ebe73561cff > > tree 00d28144ae949b3f9d566279cb12be0c802f86e6 > > parent aa1a64ee12ae130706f3fc0007841ce9b0ddf9c2 > > author Hugh Dickins > > committer Linus Torvalds > > [PATCH] unpaged: get_user_pages VM_RESERVED > > However, mplayer doesn't want to read from ALSA input, and no sound is recorded. > > I'm trying to record video from /dev/video0, and audio from ALSA,0,0 > (which is ATIIXP card). Audio is physically routed from the video > capture board to ATIIXP card. > > I'm attaching the encoding script I use, and strace output > for 2.6.14-rc5 and 2.6.15-rc5. > > I'm using Debian sid, and this regression is killing me... > > If you know of good fix, or know of a reason of this breakage, I'm all > ears. > > regards, > junichi > -- > dancer@{debian.org,netfort.gr.jp} Debian Project > > > [2 encodetv.sh-strace ] > #!/bin/bash > #interactive script to encode TV. > > if [[ $# != 3 ]]; then > echo "encodetv [channel] [minutes] [output filename]" > exit 0; > fi > echo "channel: $1" > CHANNEL=$1 > echo "minutes: $2" > MINUTES=$2 > echo "output filename: $3" > OUTFILE=$3 > > strace -f \ > mencoder tv://${CHANNEL} \ > -tv \ > driver=v4l2:\ > device=/dev/video0:\ > width=320:\ > height=240:\ > normid=6:\ > alsa:\ > amode=1:\ > adevice=ixp:\ > chanlist=japan-bcast:\ > forcechan=2:\ > -o "${OUTFILE}.avi" \ > -ovc lavc -lavcopts vcodec=mpeg4:vhq -oac mp3lame -lameopts br=128:cbr:mode=0 -endpos $(( 60 * $MINUTES )) > regards, junichi -- dancer@{debian.org,netfort.gr.jp} Debian Project