On Fri, 2004-03-26 at 13:58, Joe Stump wrote: > Could you send me your VCR_CMD? That would be great! > > --Joe > > > On Fri, 2004-03-26 at 18:27, Jon Reynolds wrote: > > On Fri, 2004-03-26 at 05:25, Joe Stump wrote: > > > Well 1.5 managed to completely kill a fully working version of Freevo on > > > my box. I upgraded with apt-get a couple of days ago and held my breath > > > as it successfully recorded two of my favorites. But wait! A new bug in > > > the system: the recorded show played in the background. > > > > > > Some browsing around yielded some info that I found useful: > > > http://freevo.sourceforge.net/cgi-bin/moin.cgi/RecordingInfo > > > > > > I muted the line in and Oprah recorded just fine with sound (don't ask) > > > - I figured all was well ... doh. Seinfeld recorded WITHOUT SOUND later > > > that night and all subsequent attempts to get recording working with > > > sound (both btaudio *AND* line in) are not working. > > > > > > Anyone out there actually have 1.5 working? Could people send some > > > example mplayer/VCR_CMD lines? I'm at a loss while recording was working > > > just fine (no background noise, sound during playback) in 1.4 and is now > > > TOTALLY broken in 1.5 - especially since I haven't touched anything > > > except Freevo ... except those pesky aumix commands ... > > > > > > --Joe > > > > Hi Joe, > > > > I had the same issue as you with recording being heard as the recording > > was being recorded. :) I also had tried to mute the line in but then it > > recorded with no sound. I also tried the btaudio trick which also did > > not work for me because I don't think my wintv card supports it? > > > > What I finally did was set the aumix command to record at 50%, I > > couldn't hear it being recorded unless I put my ear close to the > > speaker. When I play it back I can turn it up and hear it just as well > > as listening to the tv, so I could probably lower it even less than 50% > > and still be able to hear it fine during playback. > > > > Hope that helps, > > > > Jon > >
Here you go, but I am not using 1.5 yet, so this is mine from 1.4.1. You will have to look at what changes need to be made if any to this command. > VCR_CMD = ( 'aumix -l 50 -l R; '+ > CONF.mencoder + ' ' + > 'tv:// ' + # New mplayer requires this. > '-tv driver=v4l:input=0' + # Input 0 = TV, Input 1 = Comp. V. in > ':norm=%s' % CONF.tv + > ':channel=%(channel)s' + # Filled in by Freevo > ':chanlist=us-cable' + # Change > ':width=%d:height=%d' % (TV_REC_SIZE[0], TV_REC_SIZE[1]) + > ':outfmt=yuy2' + > ':device=/dev/video0' + > ':adevice=/dev/dsp' + > ':audiorate=44100' + # 44100 for better sound > ':forceaudio:forcechan=1:' + # Forced mono for bug in my driver > 'buffersize=128' + # 64 Megabyte capture buffer, change? > ' -ovc lavc -lavcopts ' + # Mencoder lavcodec video codec > 'vcodec=mpeg4' + # lavcodec mpeg-4 > ':vbitrate=1200:' + # Change lower/higher, bitrate > 'keyint=30 ' + # Keyframe every 10 secs, change? > '-oac mp3lame -lameopts ' + # Use Lame for MP3 encoding > 'br=128:cbr:mode=3 ' + # MP3 const. bitrate, 128 kbit/s > '-ffourcc divx ' + # Force 'divx' ident, better compat. > '-endpos %(seconds)s ' + # only mencoder uses this so do it here. > '-o %(filename)s.avi' # Filled in by Freevo > '; aumix -l 90;') ------------------------------------------------------- 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-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
