Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change 
notification.

The following page has been changed by 80.200.248.206:
http://freevo.sourceforge.net/cgi-bin/moin.cgi/RecordingInfo

------------------------------------------------------------------------------
@@ -159,6 +159,41 @@
 so 'amixer cset numid=30 4' to select line in as capture
 }}}
 
+See 
[http://freevo.sourceforge.net/cgi-bin/moin.cgi/FrequentlyAskedQuestions#head-3fb8a33780b7fb2bef3edff84757d03e96461031
 btaudio page] for using alsa with snd-bt87x module (the alsa btaudio equivalent)
+Not using OSS has the advantage for me that I can record from line-in with volume 
control muted, hence ENABLING timeshift recording. My record script, this is for a 
creative labs Soundblaster Live 5.1, using Alsa. 
+
+{{{
+#!/bin/bash 
+ 
+# use with this VCR_CMD: 
+# VCR_CMD = ('/usr/local/freevo_data/tvrecord/tvrecord %(channel)s %(seconds)s 
"%(filename)s"') 
+ 
+CHAN=$1 
+TIME=$2 
+NAME=$3 
+ 
+WIDTH=320 
+HEIGHT=240 
+ 
+MENCODER=/usr/local/bin/mencoder 
+AMIXER=/usr/bin/amixer 
+ 
+NICE="nice -n -20" 
+ 
+AUDIO="-oac mp3lame -lameopts cbr:br=128:mode=3" 
+VIDEO="-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30" 
+DSP="alsa:adevice=emu10k1" 
+TV=" -tv 
driver=v4l:width=$WIDTH:height=$HEIGHT:outfmt=yuy2:input=0:device=/dev/video0:norm=PAL:chanlist=europe-west:channel=$CHAN:$DSP:forceaudio:forcechan=1:buffersize=64"
 
+ 
+$AMIXER -q sset Line 87% mute 
+$AMIXER -q sset Capture 87% 
+$AMIXER -q cset numid=63 4      # select capture source, 63 is capture source 
control, 1 = CD and 4 = line 
+$AMIXER -q cset numid=64 1      # set capture source switch to 1 (= on) 
+$NICE $MENCODER tv:// $TV $VIDEO $AUDIO -endpos $TIME -ffourcc divx -o  "$NAME.avi" 
+$AMIXER -q sset Line 87% unmute   # unmute cd again to hear sound when using watching 
tv after recording 
+}}}
+
+
 = IVTV setup =
 
 In order to use the ivtv recording plugin have the following in your local_conf.py:


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Freevo-wikilog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-wikilog

Reply via email to