Elizabeth Dodd wrote:
> I've just got this far with setting up using DVB-T
> I can watch TV fine in Freevo.
> I've made three attempts on recording a stream through Freevo and not been 
> successful yet.
> Using the wiki page http://doc.freevo.org/DVBConfig as reference
>
> First try with the 
> TV_VIDEO_GROUPS = [
>     VideoGroup(vdev='/dev/dvb/adapter0', #We don't need to point this at the 
> actual frontend
> and MPlayer stream dump cmd
> VCR_CMD = CONF.mplayer 
> + ' -dumpstream -dumpfile %(filename)s "dvb://%(channel)s"'
> TV_RECORD_FILE_SUFFIX = '.ts'
> this produces an error that /dev/dvb/adapter0 is a directory so I added a 
> trailing slash and the error message "went away"
>
> Second try
> TV_VIDEO_GROUPS = [
>     VideoGroup(vdev='/dev/dvb/adapter0/',
> VCR_CMD = CONF.mplayer 
> + ' -dumpstream -dumpfile %(filename)s "dvb://%(channel)s"'
> TV_RECORD_FILE_SUFFIX = '.ts'
> fxd file no recording
> no error messages in logs (debug level 1)
>
> Third try
> TV_VIDEO_GROUPS = [
>     VideoGroup(vdev='/dev/dvb/adapter0/',
> VCR_CMD = CONF.mencoder + ' -o %(filename)s.avi -ovc xvid -xvidencopts 
> bitrate=800 -oac mp3lame -lameopts cbr:br=128 -pp=ci "dvb://%(channel)s"'
> once again a fxd file and no recording
> Has anyone ideas including whether increased logging levels will be of 
> assistance?
>   
I use DVB-T and have the following settings. This dumps the whole 
transport stream rather than trying to re-encode it which gives the best 
quality, might be best to start there?

TV_VIDEO_GROUPS[0].group_type = 'dvb'

TV_CHANNELS = [('south.bbc1.bbc.co.uk', 'BBC 1', 'BBC ONE'),
               ('south.bbc2.bbc.co.uk', 'BBC 2', 'BBC TWO') .... etc.

VCR_CMD = CONF.mplayer + ' -dumpstream -dumpfile %(filename)s 
"dvb://%(channel)s"'
TV_RECORD_FILE_SUFFIX = '.ts'

TV_RECORD_DIR = '/data/tv'

------------------------------------------------------------------------------
_______________________________________________
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to