Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Duncan Webb
> JohnMolohan & list
>   You think maybe it may be good to hav some example TV_CHANNELS varibles
> for   and where to look for the values?
It may help with others trying freevo for the first time.

There is no shortage of TV_CHANNELS examples in the wiki, a quick
FindPage looking for TV_CHANNELS gives lots of results. The main page is
http://doc.freevo.org/AnalogueGen. While the page is for analogue TV
tuners it's the same for DVB.

Duncan




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Dual recording Tuners

2008-01-13 Thread Jonathan Isom
On Jan 7, 2008 3:12 PM, Jonathan Isom <[EMAIL PROTECTED]> wrote:

>
> It does occur to me that 2 record servers could be run on the same
> computer.  Multiple accounts would be needed
> and a user could user the web interface to set recordings on the
> second card.  obviously freevo would not detect recording to the same
> file but freevo might work fine .  going to try this later.

Well, I think I have this working. the config for the second
record/web server is attached.
this config has almost everthing but what is need to record. I
appended a record number
to both servers so it won't write to the same file but this would only
happen if you select to
record the same show at the same time.  This is using dvbstreamer btw.
 Not sure if all the
*_PORT are required but it can't hurt.


Later

Jonathan
#if 0
# ---
# freevo_config.py - System configuration
# ---
# $Id: local_conf.py.example,v 1.37.2.4 2005/01/09 10:45:55 dischi Exp $
#
# Notes:
#This file contains the freevo settings. To change the settings
#you can edit this file, or better, put a file named local_conf.py
## in the same directory and add your changes there.  E.g.: when
#you # want a alsa as mplayer audio out, just put
#"MPLAYER_AO_DEV = # 'alsa9'" in local_conf.py
#
#This is no normal config file, it's Python code. Because of that, you 
#need to follow some rules to avoid crashes. The examples should explain
#the settings, but make sure a line starting with a variable has 
#NO SPACES OR TABS at the beginning.
#
#
# ---
# Freevo - A Home Theater PC framework
# Copyright (C) 2002 Krister Lagerstrom, et al. 
# Please see the file freevo/Docs/CREDITS for a complete list of authors.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MER-
# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# ---
#endif

CONFIG_VERSION = 5.22
CONFIG_EDIT_FILE = '/home/freevo/.freevo/local_conf.py'
# ==
# General freevo settings:
# ==
MAJOR_AUDIO_CTRL= 'PCM'   # Freevo takes control over one audio ctrl
TV_AUDIO_CTRL   = 'PCM'# 'VOL', 'PCM' 'OGAIN' etc.
MIXER_CONTROL_ALL   = 0   # Should Freevo take complete control of audio
MIXER_VOLUME_MAX= 92  # Set what you want maximum volume level to be.
MIXER_VOLUME_DEFAULT= 50  # Set default volume level.
MIXER_VOLUME_TV_IN  = 45  # Set this to your preferred level 0-100.
MIXER_VOLUME_STEP = 2
DEFAULT_PCM_VOLUME = 50
DEFAULT_SUR_VOLUME = 50
DEFAULT_CTR_VOLUME = 50
DEFAULT_LFE_VOLUME = 50
MAX_VOLUME = 92

START_FULLSCREEN_X  = 0   # Start in fullscreen mode if using x11 or xv.
IMAGEVIEW_ASPECT = 1.
SHUTDOWN_CONFIRM= 1   # ask before shutdown
MPLAYER_VERSION = "1.0.0"
XINE_VERSION   = "99.5"
VLC_VERSION= "0.9.0"

VIDEO_AUTOJOIN = 0
OVERLAY_DIR = '/MultiMedia/Freevo/Cache1/Overlay'
FREEVO_CACHEDIR = "/MultiMedia/Freevo/Cache1"
TV_RECORD_SCHEDULE = ("%s/record_schedule.xml" % FREEVO_CACHEDIR)
XMLTV_FILE = '/tmp/TV.xml'
#ROM_DRIVES = [ ('/mount/dvd', '/dev/dvd','dvd player')]
	 
TV_TIMEFORMAT = '%I:%M %p' 
CLOCK_FORMAT = "%a %d %I:%M %p"

USE_NETWORK = 0

#
UMASK = 022
#--
#plugin.activate('tv.dvbstreamer.vlc_http_live_pause')
DVBCTRL_COMMAND = '/usr/local/bin/dvbctrl'
#LIVE_PAUSE_BUFFER_PATH = '/MultiMedia/Video/Pause/live.buf' # Location of the file to use for pausing live TV
LIVE_BUFFER_SIZE=(22.00,30 * 60) # Size of the live buffer as a tuple of max Mbps of the TV and seconds, default 6.25Mbps and 30 minutes.

plugin.remove('tv.generic_record')
plugin_record = plugin.activate('tv.dvbstreamer.record')

plugin.remove('audio')
plugin.remove('games')
plugin.remove('image')
plugin.remove('video')
plugin.remove('audio.detach')
plugin.remove('headlines')
plugin.remove('rom_drives.rom_items')
plugin.remove('shutdown')
plugin.remove('ejectromdrives')
plugin.remove('file_ops')
plugin.remove('video.bookmarker')
plugin.remove('video.

Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Jonathan Isom
JohnMolohan & list
  You think maybe it may be good to hav some example TV_CHANNELS varibles
for   and where to look for the values?
It may help with others trying freevo for the first time.

Thanks

Jonathan

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Jonathan Isom
On Jan 13, 2008 9:43 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> That's what I copied and pasted to my local_conf.py already, it didn't work, 
> that's why I thought something was missing. I'm going to try Freevo now and 
> see if the channels.conf helped.

what does your TV_CHANNELS lines in your local_conf.py look like?



> - Original Message 
> From: Jonathan Isom <[EMAIL PROTECTED]>
> To: freevo-users@lists.sourceforge.net
> Sent: Sunday, January 13, 2008 9:40:06 PM
> Subject: Re: [Freevo-users] DVB Channel Detection
>
>

>
> On Jan 13, 2008 9:37 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> > Thanks, that worked.One more question. The other problem I have is
>  with Freevo finding or creating (not sure which) the live buffer file in
>  the tmp folder. I've tried creating it and seeing if it would create
>  one when it begins recording, neither works. Now  that I have a
>  channels.conf, will it  create this file? Or do I need to do something else?
>
> Try follow in the step on:
>
> http://doc.freevo.org/TvPlugins#head-d2fe093c7fc46de55582138af1ff5be8e0669868
>
> hope this helps
>
> Jonathan
>
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>
>
>
>
>
>   
> 
> Looking for last minute shopping deals?
> Find them fast with Yahoo! Search.  
> http://tools.search.yahoo.com/newsearch/category.php?category=shopping
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Phil Raymond
That's what I copied and pasted to my local_conf.py already, it didn't work, 
that's why I thought something was missing. I'm going to try Freevo now and see 
if the channels.conf helped.

- Original Message 
From: Jonathan Isom <[EMAIL PROTECTED]>
To: freevo-users@lists.sourceforge.net
Sent: Sunday, January 13, 2008 9:40:06 PM
Subject: Re: [Freevo-users] DVB Channel Detection


On Jan 13, 2008 9:37 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> Thanks, that worked.One more question. The other problem I have is
 with Freevo finding or creating (not sure which) the live buffer file in
 the tmp folder. I've tried creating it and seeing if it would create
 one when it begins recording, neither works. Now  that I have a
 channels.conf, will it  create this file? Or do I need to do something else?

Try follow in the step on:

http://doc.freevo.org/TvPlugins#head-d2fe093c7fc46de55582138af1ff5be8e0669868

hope this helps

Jonathan

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users





  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Jonathan Isom
On Jan 13, 2008 9:37 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> Thanks, that worked.One more question. The other problem I have is with 
> Freevo finding or creating (not sure which) the live buffer file in the tmp 
> folder. I've tried creating it and seeing if it would create one when it 
> begins recording, neither works. Now  that I have a channels.conf, will it  
> create this file? Or do I need to do something else?

Try follow in the step on:

http://doc.freevo.org/TvPlugins#head-d2fe093c7fc46de55582138af1ff5be8e0669868

hope this helps

Jonathan

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Phil Raymond
Thanks, that worked.One more question. The other problem I have is with Freevo 
finding or creating (not sure which) the live buffer file in the tmp folder. 
I've tried creating it and seeing if it would create one when it begins 
recording, neither works. Now  that I have a channels.conf, will it  create 
this file? Or do I need to do something else?

- Original Message 
From: Jonathan Isom <[EMAIL PROTECTED]>
To: freevo-users@lists.sourceforge.net
Sent: Sunday, January 13, 2008 9:27:23 PM
Subject: Re: [Freevo-users] DVB Channel Detection


On Jan 13, 2008 9:26 PM, Jonathan Isom <[EMAIL PROTECTED]> wrote:
> On Jan 13, 2008 9:12 PM, Jonathan Isom <[EMAIL PROTECTED]> wrote:
> > On Jan 13, 2008 9:05 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> > > I suspect I'm either missing something or am not doing something
 right. I seem to have dvbstreamer installed, but all I  get is "-A
 command not found".As for the scanning, I found an app that works called
 dtvscan from the pchdtv site. I can watch live tv through Xine using the
 command xine dvb:// NBC5-DT (for example).I'm just having a dog of a
 time trying to get Freevo configured correctly for recording. Is
 dvbstreamer the only way to record ATSC streams with Freevo?I really don't need
 the time shifting capabilty.
> >
> > Can you post what command you are running and possibly the version.
> Hi
>   Tell me if this is helpful
> http://dvbstreamer.sourceforge.net/mediawiki/index.php/Installation
it is one command not two

setupdvbstreamer -A /usr/share/dvb/atsc/channels.conf

>
> >
> >
> > Thanks
> >
> >
> > >
> > > - Original Message 
> > > From: Jonathan Isom <[EMAIL PROTECTED]>
> > > To: freevo-users@lists.sourceforge.net
> > > Sent: Sunday, January 13, 2008 8:25:05 PM
> > > Subject: Re: [Freevo-users] DVB Channel Detection
> > >
> > >
> > > Don't know how this is with dvb-(t,c,s) but with dvbstreamer a
> > > channls.conf file with all the channels
> > > (2-69) for atsc could be feed into dvbstreamer and it would
 detect all
> > > the channels.  then a
> > > 'dvbctrl scan all` would rescan all the channels, so a script a
 night
> > > could rerun the scan. next
> > > 'dvbctrl lsservices -- -id| grep -v  ^.. ` would filter
 out
> > > the ones that aren't there. so for example
> > >
> > > ..0003 : CHAN63
> > > ..0003 : CHAN64
> > > ..0003 : CHAN65
> > > ..0003 : CHAN66
> > > ..0003 : CHAN67
> > > ..0003 : CHAN68
> > > ..0003 : CHAN69
> > > 00bd.0435.0004 : 12-2 WILLSD1
> > > 00bd.0435.0005 : 12-3 WILLSD2
> > > 01f1.03fb.0004 : 17-2 WAND-SD
> > > 0209.0004.0004 : 0004
> > > 02a5.03e1.0004 : 3-2 WCFN-DT
> > >
> > > TV_CHANNELS = [ (''00bd.0435.0004","12-2 WILLSD1",
 ''00bd.0435.0004"),
> > >(...),
> > >]
> > >
> > > could be created. with python i guess we could import it via a
> > > separate file, though it would require
> > > restarting freevo every day.
> > >
> > > Later
> > >
> > > Jonathan
> > >
> > >
 -
> > > Check out the new SourceForge.net Marketplace.
> > > It's the best place to buy or sell services for
> > > just about anything Open Source.
> > >
 http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> > > ___
> > > Freevo-users mailing list
> > > Freevo-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/freevo-users
> > >
> > >
> > >
> > >
> > >
> > >  
 

> > > Be a better friend, newshound, and
> > > know-it-all with Yahoo! Mobile.  Try it now.
  http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
> > >
> > >
> > >
> > >
 -
> > > Check out the new SourceForge.net Marketplace.
> > > It's the best place to buy or sell services for
> > > just about anything Open Source.
> > >
 http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> > > ___
> > > Freevo-users mailing list
> > > Freevo-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/freevo-users
> > >
> >
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users





  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/news

Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Jonathan Isom
On Jan 13, 2008 9:26 PM, Jonathan Isom <[EMAIL PROTECTED]> wrote:
> On Jan 13, 2008 9:12 PM, Jonathan Isom <[EMAIL PROTECTED]> wrote:
> > On Jan 13, 2008 9:05 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> > > I suspect I'm either missing something or am not doing something right. I 
> > > seem to have dvbstreamer installed, but all I  get is "-A command not 
> > > found".As for the scanning, I found an app that works called dtvscan from 
> > > the pchdtv site. I can watch live tv through Xine using the command xine 
> > > dvb:// NBC5-DT (for example).I'm just having a dog of a time trying to 
> > > get Freevo configured correctly for recording. Is dvbstreamer the only 
> > > way to record ATSC streams with Freevo?I really don't need the time 
> > > shifting capabilty.
> >
> > Can you post what command you are running and possibly the version.
> Hi
>   Tell me if this is helpful
> http://dvbstreamer.sourceforge.net/mediawiki/index.php/Installation
it is one command not two

setupdvbstreamer -A /usr/share/dvb/atsc/channels.conf

>
> >
> >
> > Thanks
> >
> >
> > >
> > > - Original Message 
> > > From: Jonathan Isom <[EMAIL PROTECTED]>
> > > To: freevo-users@lists.sourceforge.net
> > > Sent: Sunday, January 13, 2008 8:25:05 PM
> > > Subject: Re: [Freevo-users] DVB Channel Detection
> > >
> > >
> > > Don't know how this is with dvb-(t,c,s) but with dvbstreamer a
> > > channls.conf file with all the channels
> > > (2-69) for atsc could be feed into dvbstreamer and it would detect all
> > > the channels.  then a
> > > 'dvbctrl scan all` would rescan all the channels, so a script a night
> > > could rerun the scan. next
> > > 'dvbctrl lsservices -- -id| grep -v  ^.. ` would filter out
> > > the ones that aren't there. so for example
> > >
> > > ..0003 : CHAN63
> > > ..0003 : CHAN64
> > > ..0003 : CHAN65
> > > ..0003 : CHAN66
> > > ..0003 : CHAN67
> > > ..0003 : CHAN68
> > > ..0003 : CHAN69
> > > 00bd.0435.0004 : 12-2 WILLSD1
> > > 00bd.0435.0005 : 12-3 WILLSD2
> > > 01f1.03fb.0004 : 17-2 WAND-SD
> > > 0209.0004.0004 : 0004
> > > 02a5.03e1.0004 : 3-2 WCFN-DT
> > >
> > > TV_CHANNELS = [ (''00bd.0435.0004","12-2 WILLSD1", ''00bd.0435.0004"),
> > >(...),
> > >]
> > >
> > > could be created. with python i guess we could import it via a
> > > separate file, though it would require
> > > restarting freevo every day.
> > >
> > > Later
> > >
> > > Jonathan
> > >
> > > -
> > > Check out the new SourceForge.net Marketplace.
> > > It's the best place to buy or sell services for
> > > just about anything Open Source.
> > > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> > > ___
> > > Freevo-users mailing list
> > > Freevo-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/freevo-users
> > >
> > >
> > >
> > >
> > >
> > >   
> > > 
> > > Be a better friend, newshound, and
> > > know-it-all with Yahoo! Mobile.  Try it now.  
> > > http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
> > >
> > >
> > >
> > > -
> > > Check out the new SourceForge.net Marketplace.
> > > It's the best place to buy or sell services for
> > > just about anything Open Source.
> > > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> > > ___
> > > Freevo-users mailing list
> > > Freevo-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/freevo-users
> > >
> >
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Jonathan Isom
On Jan 13, 2008 9:12 PM, Jonathan Isom <[EMAIL PROTECTED]> wrote:
> On Jan 13, 2008 9:05 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> > I suspect I'm either missing something or am not doing something right. I 
> > seem to have dvbstreamer installed, but all I  get is "-A command not 
> > found".As for the scanning, I found an app that works called dtvscan from 
> > the pchdtv site. I can watch live tv through Xine using the command xine 
> > dvb:// NBC5-DT (for example).I'm just having a dog of a time trying to get 
> > Freevo configured correctly for recording. Is dvbstreamer the only way to 
> > record ATSC streams with Freevo?I really don't need the time shifting 
> > capabilty.
>
> Can you post what command you are running and possibly the version.
Hi
  Tell me if this is helpful
http://dvbstreamer.sourceforge.net/mediawiki/index.php/Installation

>
>
> Thanks
>
>
> >
> > - Original Message 
> > From: Jonathan Isom <[EMAIL PROTECTED]>
> > To: freevo-users@lists.sourceforge.net
> > Sent: Sunday, January 13, 2008 8:25:05 PM
> > Subject: Re: [Freevo-users] DVB Channel Detection
> >
> >
> > Don't know how this is with dvb-(t,c,s) but with dvbstreamer a
> > channls.conf file with all the channels
> > (2-69) for atsc could be feed into dvbstreamer and it would detect all
> > the channels.  then a
> > 'dvbctrl scan all` would rescan all the channels, so a script a night
> > could rerun the scan. next
> > 'dvbctrl lsservices -- -id| grep -v  ^.. ` would filter out
> > the ones that aren't there. so for example
> >
> > ..0003 : CHAN63
> > ..0003 : CHAN64
> > ..0003 : CHAN65
> > ..0003 : CHAN66
> > ..0003 : CHAN67
> > ..0003 : CHAN68
> > ..0003 : CHAN69
> > 00bd.0435.0004 : 12-2 WILLSD1
> > 00bd.0435.0005 : 12-3 WILLSD2
> > 01f1.03fb.0004 : 17-2 WAND-SD
> > 0209.0004.0004 : 0004
> > 02a5.03e1.0004 : 3-2 WCFN-DT
> >
> > TV_CHANNELS = [ (''00bd.0435.0004","12-2 WILLSD1", ''00bd.0435.0004"),
> >(...),
> >]
> >
> > could be created. with python i guess we could import it via a
> > separate file, though it would require
> > restarting freevo every day.
> >
> > Later
> >
> > Jonathan
> >
> > -
> > Check out the new SourceForge.net Marketplace.
> > It's the best place to buy or sell services for
> > just about anything Open Source.
> > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> > ___
> > Freevo-users mailing list
> > Freevo-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/freevo-users
> >
> >
> >
> >
> >
> >   
> > 
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile.  Try it now.  
> > http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
> >
> >
> >
> > -
> > Check out the new SourceForge.net Marketplace.
> > It's the best place to buy or sell services for
> > just about anything Open Source.
> > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> > ___
> > Freevo-users mailing list
> > Freevo-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/freevo-users
> >
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Phil Raymond
[EMAIL PROTECTED]:~$ setupdvbstreamer
Usage:setupdvbstreamer 
  Options:
  -v: Increase the amount of debug output, can be used multiple
  times for more output
  -V: Print version information then exit

  -a   : Use adapter number (ie /dev/dvb/adapter/...)

  -t  : Terrestrial channels.conf file to import services and 
  multiplexes from. (DVB-T)

  -s  : Satellite channels.conf file to import services and 
  multiplexes from.(DVB-S)
  -l  : (DVB-S Only) Set LNB type being used
  (Use -l help to print types) or 
  -l ,, Specify LO frequencies in MHz

  -c  : Cable channels.conf file to import services and 
  multiplexes from. (DVB-C)

  -A  : ATSC channels.conf file to import services and 
  multiplexes from. (ATSC) (EXPERIMENTAL)
[EMAIL PROTECTED]:~$ -A /usr/share/dvb/atsc/channels.conf
bash: -A: command not found




  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Jonathan Isom
On Jan 13, 2008 9:05 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> I suspect I'm either missing something or am not doing something right. I 
> seem to have dvbstreamer installed, but all I  get is "-A command not 
> found".As for the scanning, I found an app that works called dtvscan from the 
> pchdtv site. I can watch live tv through Xine using the command xine dvb:// 
> NBC5-DT (for example).I'm just having a dog of a time trying to get Freevo 
> configured correctly for recording. Is dvbstreamer the only way to record 
> ATSC streams with Freevo?I really don't need the time shifting capabilty.

Can you post what command you are running and possibly the version.


Thanks

>
> - Original Message 
> From: Jonathan Isom <[EMAIL PROTECTED]>
> To: freevo-users@lists.sourceforge.net
> Sent: Sunday, January 13, 2008 8:25:05 PM
> Subject: Re: [Freevo-users] DVB Channel Detection
>
>
> Don't know how this is with dvb-(t,c,s) but with dvbstreamer a
> channls.conf file with all the channels
> (2-69) for atsc could be feed into dvbstreamer and it would detect all
> the channels.  then a
> 'dvbctrl scan all` would rescan all the channels, so a script a night
> could rerun the scan. next
> 'dvbctrl lsservices -- -id| grep -v  ^.. ` would filter out
> the ones that aren't there. so for example
>
> ..0003 : CHAN63
> ..0003 : CHAN64
> ..0003 : CHAN65
> ..0003 : CHAN66
> ..0003 : CHAN67
> ..0003 : CHAN68
> ..0003 : CHAN69
> 00bd.0435.0004 : 12-2 WILLSD1
> 00bd.0435.0005 : 12-3 WILLSD2
> 01f1.03fb.0004 : 17-2 WAND-SD
> 0209.0004.0004 : 0004
> 02a5.03e1.0004 : 3-2 WCFN-DT
>
> TV_CHANNELS = [ (''00bd.0435.0004","12-2 WILLSD1", ''00bd.0435.0004"),
>(...),
>]
>
> could be created. with python i guess we could import it via a
> separate file, though it would require
> restarting freevo every day.
>
> Later
>
> Jonathan
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>
>
>
>
>
>   
> 
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile.  Try it now.  
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
>
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Phil Raymond
I suspect I'm either missing something or am not doing something right. I seem 
to have dvbstreamer installed, but all I  get is "-A command not found".As for 
the scanning, I found an app that works called dtvscan from the pchdtv site. I 
can watch live tv through Xine using the command xine dvb:// NBC5-DT (for 
example).I'm just having a dog of a time trying to get Freevo configured 
correctly for recording. Is dvbstreamer the only way to record ATSC streams 
with Freevo?I really don't need the time shifting capabilty.

- Original Message 
From: Jonathan Isom <[EMAIL PROTECTED]>
To: freevo-users@lists.sourceforge.net
Sent: Sunday, January 13, 2008 8:25:05 PM
Subject: Re: [Freevo-users] DVB Channel Detection


Don't know how this is with dvb-(t,c,s) but with dvbstreamer a
channls.conf file with all the channels
(2-69) for atsc could be feed into dvbstreamer and it would detect all
the channels.  then a
'dvbctrl scan all` would rescan all the channels, so a script a night
could rerun the scan. next
'dvbctrl lsservices -- -id| grep -v  ^.. ` would filter out
the ones that aren't there. so for example

..0003 : CHAN63
..0003 : CHAN64
..0003 : CHAN65
..0003 : CHAN66
..0003 : CHAN67
..0003 : CHAN68
..0003 : CHAN69
00bd.0435.0004 : 12-2 WILLSD1
00bd.0435.0005 : 12-3 WILLSD2
01f1.03fb.0004 : 17-2 WAND-SD
0209.0004.0004 : 0004
02a5.03e1.0004 : 3-2 WCFN-DT

TV_CHANNELS = [ (''00bd.0435.0004","12-2 WILLSD1", ''00bd.0435.0004"),
   (...),
   ]

could be created. with python i guess we could import it via a
separate file, though it would require
restarting freevo every day.

Later

Jonathan

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users





  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Jonathan Isom
Don't know how this is with dvb-(t,c,s) but with dvbstreamer a
channls.conf file with all the channels
(2-69) for atsc could be feed into dvbstreamer and it would detect all
the channels.  then a
'dvbctrl scan all` would rescan all the channels, so a script a night
could rerun the scan. next
'dvbctrl lsservices -- -id| grep -v  ^.. ` would filter out
the ones that aren't there. so for example

..0003 : CHAN63
..0003 : CHAN64
..0003 : CHAN65
..0003 : CHAN66
..0003 : CHAN67
..0003 : CHAN68
..0003 : CHAN69
00bd.0435.0004 : 12-2 WILLSD1
00bd.0435.0005 : 12-3 WILLSD2
01f1.03fb.0004 : 17-2 WAND-SD
0209.0004.0004 : 0004
02a5.03e1.0004 : 3-2 WCFN-DT

TV_CHANNELS = [ (''00bd.0435.0004","12-2 WILLSD1", ''00bd.0435.0004"),
   (...),
   ]

could be created. with python i guess we could import it via a
separate file, though it would require
restarting freevo every day.

Later

Jonathan

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] atsc scan of u.s. ota channels for hvr 950

2008-01-13 Thread Jonathan Isom
On Jan 12, 2008 3:49 PM, Phil Raymond <[EMAIL PROTECTED]> wrote:
> I've gotten as far as getting Freevo 1.75 to talk to both analog and dvb 
> sides of my hauppauge hvr 950 usb dongle. My problem is finding and using 
> dvb-utils. I'm running Freevo on Ubuntu Gutsy, I've also tried using dvbtune, 
> but haven't had any luck with it either. If anyone has had luck scanning for 
> atsc u.s. over-the-air channels, please tell me how. I  also have configured 
> the dvbstreamer plugin for Freevo correctly. I recall reading somewhere on 
> the Freevo site that this plugin could be used for scanning as well, but I 
> couldn't find any information on how to do this.If this is possible, I'm 
> guessing this  would be the best way to scan.Finally, if anyone could post a 
> copy their local_conf.py for atsc tv channels, that would be a big help too.



I don't know the packages(I Think linuxtv-dvb-apps) but try running
dvbscan /usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB
or
scan /usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB

then with the channels.conf use
setupdvbstreamer -A channels.conf
to setup dvbstreamer


Hope this helps

Later

Jonathan
>
>
>
>   
> 
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile.  Try it now.  
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] tv_grab_de_tvtoday

2008-01-13 Thread Thorsten Pferdekämper
On Saturday 12 January 2008 04:27, Elizabeth Dodd wrote:
> On Sat, 12 Jan 2008, Thorsten Pferdekämper wrote:
> > On Wednesday 09 January 2008 09:03, Thorsten Pferdekämper wrote:
>
> i mentioned shepherd on the list before.
> this is an au list of scripts which grab data, sort it, add in from other
> grabbers
> and perhaps this is the way for de to go
>
> http://svn.whuffy.com/index.fcgi/wiki

Hi,
sorry, the first time I've misunderstood your posting. Now, I've looked at the 
shepherd pages. Actually, I had a similar idea for germany. Maybe not that 
sophisticated with automatic updates and stuff, but at least the idea to 
combine multiple grabbers using some more or less intelligent mechanism to 
create one XMLTV.
However, I don't think that I am able to spend that much time for a project 
like this the next time. But who knows, it seems to be something interesting.
Regards,
Thorsten

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Can't get Freevo working in Mandriva.

2008-01-13 Thread Michel Hoogervorst
Indeed it is, but when you install Freevo with urpmi, it asks you
which tv grabber you wish to install... so you probably overlooked
that and installed the first option ;-)

With "urpmi xmltv-grabbers" you can choose again ;-)

2008/1/13, Evan Hisey <[EMAIL PROTECTED]>:
> Tv_grab_na_dd is not a part of freevo but a seperate package called
> xmltv. Check the http://doc.freevo.org/SourceDependencies page for
> alist of the packages that make up a complete freevo system.
>
> Evan
>
> On Jan 13, 2008 2:45 PM, Popatopalous <[EMAIL PROTECTED]> wrote:
> > Freevo is installed. Version is 1.7.3-2mdv2008.0. The problem I'm having
> > is finding commands that actually work. For instance to get USA tv
> > listings it is talking about Zap2IT Data Direct which I don't think
> > provides that service any more. I believe it now SchedulesDirect.org
> > [where I already have an account. It says to use these commands to get
> > tv listings:
> >
> > # tv_grab_na
> > -bash: tv_grab_na: command not found
> > # tv_grab_na_dd script
> > -bash: tv_grab_na_dd: command not found
> >
> > and  on a whim I tried:
> >
> > # tv_grab_na_sd script
> > -bash: tv_grab_na_sd: command not found
> >
> > I trying to understand the documentation but am struggling.
> >
> >
> > --
> > Sincerely,
> > Popatopalous
> >
> >
> > -
> > Check out the new SourceForge.net Marketplace.
> > It's the best place to buy or sell services for
> > just about anything Open Source.
> > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> > ___
> > Freevo-users mailing list
> > Freevo-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/freevo-users
> >
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Can't get Freevo working in Mandriva.

2008-01-13 Thread Popatopalous
Where I'm at so far is that Freevo is installed. Then from Quick Start 
Guide I've:

Code:# whereis freevo
freevo: /usr/bin/freevo /etc/freevo /usr/share/freevo
# cd /usr/bin/freevo
-bash: cd: /usr/bin/freevo: Not a directory
# cd /etc/freevo
# freevo setup
System path first=No
checking for mplayer.../usr/bin/mplayer
checking for mencoder...   /usr/bin/mencoder
checking for tvtime... /usr/bin/tvtime
checking for xine...   /usr/bin/xine
checking for fbxine... not found (deactivated)
checking for df_xine...not found (deactivated)
checking for lsdvd...  /usr/bin/lsdvd
checking for jpegtran...   /usr/bin/jpegtran
checking for xmame.x11...  not found (deactivated)
checking for xmame.SDL...  not found (deactivated)
checking for xmame...  not found (deactivated)
checking for ssnes9x...not found (deactivated)
checking for zsnes...  not found (deactivated)
checking for lame...   not found (deactivated)
checking for flac...   not found (deactivated)
checking for cdparanoia... /usr/bin/cdparanoia
checking for oggenc... /usr/bin/oggenc
checking for renice... /usr/bin/renice
checking for setterm.../usr/bin/setterm
checking for mpav...   not found (deactivated)
checking for vlc...not found (deactivated)
/Code

Now as I want to use my Hauppage PVR-500 card to watch and record tv I 
think I need to go to >Configuration>TV>XMLTV

http://doc.freevo.org/XMLTVUS

Which we saw the results of in the my post.
Any help or advice to get Freevo initially set up to watch and record tv 
will be greatly appreciated. I'm maybe confused as to what I need to 
configure to do this. I do know where now '/etc/freevo/local_conf.py'.

-- 
Sincerely,
Popatopalous



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Can't get Freevo working in Mandriva.

2008-01-13 Thread Evan Hisey
Tv_grab_na_dd is not a part of freevo but a seperate package called
xmltv. Check the http://doc.freevo.org/SourceDependencies page for
alist of the packages that make up a complete freevo system.

Evan

On Jan 13, 2008 2:45 PM, Popatopalous <[EMAIL PROTECTED]> wrote:
> Freevo is installed. Version is 1.7.3-2mdv2008.0. The problem I'm having
> is finding commands that actually work. For instance to get USA tv
> listings it is talking about Zap2IT Data Direct which I don't think
> provides that service any more. I believe it now SchedulesDirect.org
> [where I already have an account. It says to use these commands to get
> tv listings:
>
> # tv_grab_na
> -bash: tv_grab_na: command not found
> # tv_grab_na_dd script
> -bash: tv_grab_na_dd: command not found
>
> and  on a whim I tried:
>
> # tv_grab_na_sd script
> -bash: tv_grab_na_sd: command not found
>
> I trying to understand the documentation but am struggling.
>
>
> --
> Sincerely,
> Popatopalous
>
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Can't get Freevo working in Mandriva.

2008-01-13 Thread Popatopalous
Freevo is installed. Version is 1.7.3-2mdv2008.0. The problem I'm having 
is finding commands that actually work. For instance to get USA tv 
listings it is talking about Zap2IT Data Direct which I don't think 
provides that service any more. I believe it now SchedulesDirect.org 
[where I already have an account. It says to use these commands to get 
tv listings:

# tv_grab_na
-bash: tv_grab_na: command not found
# tv_grab_na_dd script
-bash: tv_grab_na_dd: command not found

and  on a whim I tried:

# tv_grab_na_sd script
-bash: tv_grab_na_sd: command not found

I trying to understand the documentation but am struggling.

-- 
Sincerely,
Popatopalous


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] live pause: Service not found

2008-01-13 Thread Simon Detheridge

I wrote:
>> >> Been trying to play witht the live pause plugin. I find the
>> >> installation procedure isn't very well documented, so I'm sure I've
>> >> done something wrong.

Jonathan Isom wrote:
> The third column. in a console type 'dvbctrl lsservices -- -id'
> then using the first column set TV_CHANNELS's third column

Actually, lsservices told me that I didn't actually have any services.  
Something must've gone wrong when I set up dvbstreamer. I set it up  
again, this time as the freevo user on my box instead of root, and  
everything has started magically working. I can watch TV and pause it.  
(I haven't configured recording yet, but it looks easy enough now)

Thanks :-)

-- 
"Pokey are you drunk on love?"
"Yes. Also whiskey. But mostly love... And whiskey!"

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Can't get Freevo working in Mandriva.

2008-01-13 Thread Michel Hoogervorst
You just have problems installing Freevo?
Freevo 1.7.3 is included in Mandriva's Contrib repository, so if you have
urpmi configured to use Contrib, you can just issue a "urpmi freevo" to
install it.

Never versions are available from MandrivaClub.NL:
http://doc.freevo.org/Mandrake



2008/1/13, Popatopalous <[EMAIL PROTECTED]>:
>
>  In Mandriva 2008.0 x86_64 with Hauppage Wintv PVR-500 card I can't get
> Freevo to work.
>
> http://doc.*freevo*.org/QuickStartGuide
> cd //*freevo*-1.7.3
>
>   *Code:*  # whereis *freevo*-1.7.3
> *freevo*-1.7:
> # whereis *freevo*
> *freevo*: /usr/bin/*freevo* /etc/*freevo* /usr/share/*freevo*
> # cd /usr/bin/*freevo*
> -bash: cd: /usr/bin/*freevo*: Not a directory
> # cd /etc/*freevo*
> [# ls
> boot_config  *freevo*.conf  lircrc@  local_conf.py
> # cd /usr/share/*freevo*
> # ls
> contrib/  fonts/  *freevo**  freevo_config.py*  fxd/  htdocs/  icons/
> images/  mute*  skins/  unmute*
> This How To seems to be based on different file paths and names than what
> I have. I'm confused. Or am I doing something wrong or missing the point
> or what???
>
> --
> Sincerely,
> Popatopalous
>
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
>
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>
>
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Can't get Freevo working in Mandriva.

2008-01-13 Thread Evan Hisey
Popatopalous -

On Jan 13, 2008 1:18 PM, Popatopalous <[EMAIL PROTECTED]> wrote:
>
>  In Mandriva 2008.0 x86_64 with Hauppage Wintv PVR-500 card I can't get
> Freevo to work.

>  http://doc.freevo.org/QuickStartGuide
>  cd //freevo-1.7.3
The current version is 1.7.5 but other than that it should be about
the same. Did you install freevo from a tarball or from a Mandriva
rpm?

>
>  Code:
>  # whereis freevo-1.7.3
>  freevo-1.7:
This is what I would expect. The binary is named freevo.

>  # whereis freevo
>  freevo: /usr/bin/freevo /etc/freevo /usr/share/freevo
This is correct.
>  # cd /usr/bin/freevo
This the freevo binary not a directory.
>  -bash: cd: /usr/bin/freevo: Not a directory
>  # cd /etc/freevo
>  [# ls
>  boot_config  freevo.conf  lircrc@  local_conf.py
All this correct.

>  # cd /usr/share/freevo
>  # ls
>  contrib/  fonts/  freevo*  freevo_config.py*  fxd/  htdocs/  icons/
> images/  mute*  skins/  unmute*
Again this is correct.

>  This How To seems to be based on different file paths and names than what I
> have. I'm confused. Or am I doing something wrong or missing the point or
> what??? --
Everything after the "More Installation and configuration steps"
heading is hand configured per machine. So your machine would not have
that layout unless you follow it exactly. Right now it looks like you
have it installed correctly and are ready to start using the Howto.
What exactly was the problem you are having?

Evan

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Can't get Freevo working in Mandriva.

2008-01-13 Thread Popatopalous
In Mandriva 2008.0 x86_64 with Hauppage Wintv PVR-500 card I can't get 
Freevo to work.


http://doc.*freevo*.org/QuickStartGuide 


cd //*freevo*-1.7.3

*Code:*
# whereis *freevo*-1.7.3
*freevo*-1.7:
# whereis *freevo*
*freevo*: /usr/bin/*freevo* /etc/*freevo* /usr/share/*freevo*
# cd /usr/bin/*freevo*
-bash: cd: /usr/bin/*freevo*: Not a directory
# cd /etc/*freevo*
[# ls
boot_config  *freevo*.conf  lircrc@  local_conf.py
# cd /usr/share/*freevo*
# ls
contrib/  fonts/  *freevo**  freevo_config.py*  fxd/  htdocs/  icons/  
images/  mute*  skins/  unmute*



This How To seems to be based on different file paths and names than 
what I have. I'm confused. Or am I doing something wrong or missing the 
point or what???


--
Sincerely,
Popatopalous

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] live pause: Service not found

2008-01-13 Thread Jonathan Isom
On Jan 13, 2008 12:07 PM, Simon Detheridge <[EMAIL PROTECTED]> wrote:
>
> > On Jan 13, 2008 9:56 AM, Simon Detheridge <[EMAIL PROTECTED]> wrote:
> >> Hello,
> >>
> >> Been trying to play witht the live pause plugin. I find the
> >> installation procedure isn't very well documented, so I'm sure I've
> >> done something wrong.
> >
> >
> > What does your TV_CHANNELS look like. Here is mine.
> >
> > TV_CHANNELS = [('02a5.03e1.0003',  '3-1 WCIA-DT', '02a5.03e1.0003'),
> >('02a5.03e1.0004',  '3-2 WCFN-DT', '02a5.03e1.0004'),
> >('00bd.0435.0003', '12-1 WILL-HD', '00bd.0435.0003'),
> >('00bd.0435.0004', '12-2 WILLSD1', '00bd.0435.0004'),
> >('00bd.0435.0005', '12-3 WILLSD2', '00bd.0435.0005'),
> >('027b.03e3.0003', '15-1 WICD-DT', '027b.03e3.0003'),
> >('01f1.03fb.0003', '17-1 WAND-DT', '01f1.03fb.0003'),
> >('01f1.03fb.0004', '17-2 WAND-SD', '01f1.03fb.0004'),
> >('0209.0004.0003', '23-1 WBUI HD', '0209.0004.0003'),
> >('0209.0004.0004', '23-2 WBUI SD', '0209.0004.0004'),
> >('0221.0437.0003', '27-1 WCCU-DT', '0221.0437.0003')  ]
>
> Yes, mine looks different. I haven't changed it since I had DVB
> working through mplayer:
>
> TV_CHANNELS = [
>   ('midlands.bbc1.bbc.co.uk','BBC 1','BBC ONE'),
>   ('midlands.bbc2.bbc.co.uk','BBC 2','BBC TWO'),
>   ('choice.bbc.co.uk','BBC 3','BBC THREE'),
>   ('knowledge.bbc.co.uk','BBC 4','BBC FOUR'),
>   ('central.carlton.com','ITV1','ITV1'),
>   ('itv2.itv.co.uk','ITV2','ITV2'),
>   ('itv3.itv.co.uk','ITV3','ITV3'),
>   ('itv4.itv.co.uk','ITV4','ITV4'),
>   ('channel4.com','Channel 4','Channel 4'),
> 
>
> What do I do to update it?

The third column. in a console type 'dvbctrl lsservices -- -id'
then using the first column set TV_CHANNELS's third column

Later

Jonathan

> >
> >
> >> Here's what I did:
> >>
> >> * Installed dvbstreamer 0.8 ('emerge dvbstreamer')
> >> * ran 'setupdvbstreamer -t /etc/freevo/channels.conf' (which is where
> >> I keep my channels.conf)
> >> * ran 'dvbstreamer' -- it did some stuff, telling me it was because it
> >> was being run for the first time.
> >> * downloaded livepause 0.3.1 (it's supposed to be in freevo 0.7.5
> >> anyway, but I wanted to make sure I had the latest version)
> >> * Copied dvbstreamer.startup to /etc/freevo
> >> * ran dvbstreamer -d -f /etc/freevo/dvbstreamer.startup (and made it
> >> run on startup, it's a dedicated freevo box)
> >> * ran setup.py install from the unpacked livepause directory
> >> * I modified my local_conf.py by adding:
> >>
> >> plugin.remove('tv.mplayer')
> >> plugin.activate('tv.dvbstreamer.live_pause')
> >> LIVE_PAUSE_BUFFER_SIZE=(6.25, 30 * 60) # Size of the live buffer as a
> >> tuple of max Mbps of the TV and seconds.
> >> LIVE_PAUSE_BUFFER_PATH='/tmp/freevo/live.buf' # Location of the live 
> >> buffer.
> >>
> >> * I changed my VIDEO_GROUPS to:
> >>
> >> TV_VIDEO_GROUPS = [
> >>  VideoGroup(vdev='0',
> >> group_type='dvb',
> >> desc='DVBStreamer')
> >> ]
> >>
> >> -- I've been ignoring recording for now..
> >>
> >> * I restarted freevo, and attempted to watch some TV.
> >> * It failed, told me to look at main-1000.log (and hung the interface,
> >> 'continue' doesn't work)
> >> * The log file says:
> >>
> >> server_string=http://localhost:18001/
> >> Traceback (most recent call last):
> >>File "/usr/lib/python2.5/site-packages/freevo/main.py", line 288,
> >> in eventhand
> >> ler
> >>  app.eventhandler(event)
> >>File "/usr/lib/python2.5/site-packages/freevo/menu.py", line 494,
> >> in eventhand
> >> ler
> >>  if not isinstance(menu, Menu) and menu.eventhandler(event):
> >>File "/usr/lib/python2.5/site-packages/freevo/tv/tvguide.py", line
> >> 226, in eve
> >> nthandler
> >>  pi.actions()[0][0](menuw=self.menuw)
> >>File "/usr/lib/python2.5/site-packages/freevo/tv/programitem.py",
> >> line 194, in
> >>   play
> >>  self.parent.player('tv', self.prog.channel_id)
> >>File "/usr/lib/python2.5/site-packages/freevo/tv/tvmenu.py", line
> >> 81, in start
> >> _tv
> >>  plugin.getbyname(plugin.TV).Play(mode, tuner_id)
> >>File
> >> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
> >> e.py", line 233, in Play
> >>File
> >> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
> >> e.py", line 328, in change_channel
> >>File
> >> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/manager.p
> >> y", line 88, in select
> >>  controller.select_service(channel)
> >>File
> >> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/comms.py"
> >> , line 64, in select_service
> >>  raise RuntimeError, errmsg
> >> RuntimeError: Service not found!
> >>
> >> **
> >>
> >> Any ideas?
> >>
> >> Thanks,
> >> Simon
> >>
> >> --
> >

Re: [Freevo-users] live pause: Service not found

2008-01-13 Thread Simon Detheridge
> On Jan 13, 2008 9:56 AM, Simon Detheridge <[EMAIL PROTECTED]> wrote:
>> Hello,
>>
>> Been trying to play witht the live pause plugin. I find the
>> installation procedure isn't very well documented, so I'm sure I've
>> done something wrong.
>
>
> What does your TV_CHANNELS look like. Here is mine.
>
> TV_CHANNELS = [('02a5.03e1.0003',  '3-1 WCIA-DT', '02a5.03e1.0003'),
>('02a5.03e1.0004',  '3-2 WCFN-DT', '02a5.03e1.0004'),
>('00bd.0435.0003', '12-1 WILL-HD', '00bd.0435.0003'),
>('00bd.0435.0004', '12-2 WILLSD1', '00bd.0435.0004'),
>('00bd.0435.0005', '12-3 WILLSD2', '00bd.0435.0005'),
>('027b.03e3.0003', '15-1 WICD-DT', '027b.03e3.0003'),
>('01f1.03fb.0003', '17-1 WAND-DT', '01f1.03fb.0003'),
>('01f1.03fb.0004', '17-2 WAND-SD', '01f1.03fb.0004'),
>('0209.0004.0003', '23-1 WBUI HD', '0209.0004.0003'),
>('0209.0004.0004', '23-2 WBUI SD', '0209.0004.0004'),
>('0221.0437.0003', '27-1 WCCU-DT', '0221.0437.0003')  ]

Yes, mine looks different. I haven't changed it since I had DVB
working through mplayer:

TV_CHANNELS = [
  ('midlands.bbc1.bbc.co.uk','BBC 1','BBC ONE'),
  ('midlands.bbc2.bbc.co.uk','BBC 2','BBC TWO'),
  ('choice.bbc.co.uk','BBC 3','BBC THREE'),
  ('knowledge.bbc.co.uk','BBC 4','BBC FOUR'),
  ('central.carlton.com','ITV1','ITV1'),
  ('itv2.itv.co.uk','ITV2','ITV2'),
  ('itv3.itv.co.uk','ITV3','ITV3'),
  ('itv4.itv.co.uk','ITV4','ITV4'),
  ('channel4.com','Channel 4','Channel 4'),


What do I do to update it?

>
>
>> Here's what I did:
>>
>> * Installed dvbstreamer 0.8 ('emerge dvbstreamer')
>> * ran 'setupdvbstreamer -t /etc/freevo/channels.conf' (which is where
>> I keep my channels.conf)
>> * ran 'dvbstreamer' -- it did some stuff, telling me it was because it
>> was being run for the first time.
>> * downloaded livepause 0.3.1 (it's supposed to be in freevo 0.7.5
>> anyway, but I wanted to make sure I had the latest version)
>> * Copied dvbstreamer.startup to /etc/freevo
>> * ran dvbstreamer -d -f /etc/freevo/dvbstreamer.startup (and made it
>> run on startup, it's a dedicated freevo box)
>> * ran setup.py install from the unpacked livepause directory
>> * I modified my local_conf.py by adding:
>>
>> plugin.remove('tv.mplayer')
>> plugin.activate('tv.dvbstreamer.live_pause')
>> LIVE_PAUSE_BUFFER_SIZE=(6.25, 30 * 60) # Size of the live buffer as a
>> tuple of max Mbps of the TV and seconds.
>> LIVE_PAUSE_BUFFER_PATH='/tmp/freevo/live.buf' # Location of the live buffer.
>>
>> * I changed my VIDEO_GROUPS to:
>>
>> TV_VIDEO_GROUPS = [
>>  VideoGroup(vdev='0',
>> group_type='dvb',
>> desc='DVBStreamer')
>> ]
>>
>> -- I've been ignoring recording for now..
>>
>> * I restarted freevo, and attempted to watch some TV.
>> * It failed, told me to look at main-1000.log (and hung the interface,
>> 'continue' doesn't work)
>> * The log file says:
>>
>> server_string=http://localhost:18001/
>> Traceback (most recent call last):
>>File "/usr/lib/python2.5/site-packages/freevo/main.py", line 288,
>> in eventhand
>> ler
>>  app.eventhandler(event)
>>File "/usr/lib/python2.5/site-packages/freevo/menu.py", line 494,
>> in eventhand
>> ler
>>  if not isinstance(menu, Menu) and menu.eventhandler(event):
>>File "/usr/lib/python2.5/site-packages/freevo/tv/tvguide.py", line
>> 226, in eve
>> nthandler
>>  pi.actions()[0][0](menuw=self.menuw)
>>File "/usr/lib/python2.5/site-packages/freevo/tv/programitem.py",
>> line 194, in
>>   play
>>  self.parent.player('tv', self.prog.channel_id)
>>File "/usr/lib/python2.5/site-packages/freevo/tv/tvmenu.py", line
>> 81, in start
>> _tv
>>  plugin.getbyname(plugin.TV).Play(mode, tuner_id)
>>File
>> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
>> e.py", line 233, in Play
>>File
>> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
>> e.py", line 328, in change_channel
>>File
>> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/manager.p
>> y", line 88, in select
>>  controller.select_service(channel)
>>File
>> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/comms.py"
>> , line 64, in select_service
>>  raise RuntimeError, errmsg
>> RuntimeError: Service not found!
>>
>> **
>>
>> Any ideas?
>>
>> Thanks,
>> Simon
>>
>> --
>> "Pokey are you drunk on love?"
>> "Yes. Also whiskey. But mostly love... And whiskey!"
>>
>> -
>> Check out the new SourceForge.net Marketplace.
>> It's the best place to buy or sell services for
>> just about anything Open Source.
>> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
>> ___
>> Freevo-users mailing l

Re: [Freevo-users] Web interface not highlighting conflicts

2008-01-13 Thread John Molohan
James Trietsch wrote:
> John,
>
> I wrote some quick-and-dirty code to highlight conflicts on the 'Scheduled 
> Recordings' webpage, but I didn't develop it too far because I figured 
> conflict resolution would take care of any conflicts. Basically anything that 
> conflicted with the show above it would be highlighted in yellow.
>
> I didn't realize conflicts were highlighted in the Freevo-based guide screen. 
> I do a lot of work on the web pages because sometimes I work from my office 
> when I have spare time or at lunch, so the web pages are easy to check from 
> somewhere other than my living room. So I tend to forget there are similar 
> listings on the TV screens themselves.
>
> James
>   
Hi James,

That sounds good, would you mind submitting your work on the tracker for 
inclusion into svn? 
http://sourceforge.net/tracker/?group_id=46652&atid=446898 It'd be great 
if you could expand on it and highlight the conflicts in the tv guide 
page too as it's important to have consistency between the web interface 
and freevo's tv guide.

Thanks,

John

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] live pause: Service not found

2008-01-13 Thread Jonathan Isom
On Jan 13, 2008 9:56 AM, Simon Detheridge <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Been trying to play witht the live pause plugin. I find the
> installation procedure isn't very well documented, so I'm sure I've
> done something wrong.


What does your TV_CHANNELS look like. Here is mine.

TV_CHANNELS = [('02a5.03e1.0003',  '3-1 WCIA-DT', '02a5.03e1.0003'),
   ('02a5.03e1.0004',  '3-2 WCFN-DT', '02a5.03e1.0004'),
   ('00bd.0435.0003', '12-1 WILL-HD', '00bd.0435.0003'),
   ('00bd.0435.0004', '12-2 WILLSD1', '00bd.0435.0004'),
   ('00bd.0435.0005', '12-3 WILLSD2', '00bd.0435.0005'),
   ('027b.03e3.0003', '15-1 WICD-DT', '027b.03e3.0003'),
   ('01f1.03fb.0003', '17-1 WAND-DT', '01f1.03fb.0003'),
   ('01f1.03fb.0004', '17-2 WAND-SD', '01f1.03fb.0004'),
   ('0209.0004.0003', '23-1 WBUI HD', '0209.0004.0003'),
   ('0209.0004.0004', '23-2 WBUI SD', '0209.0004.0004'),
   ('0221.0437.0003', '27-1 WCCU-DT', '0221.0437.0003')  ]


> Here's what I did:
>
> * Installed dvbstreamer 0.8 ('emerge dvbstreamer')
> * ran 'setupdvbstreamer -t /etc/freevo/channels.conf' (which is where
> I keep my channels.conf)
> * ran 'dvbstreamer' -- it did some stuff, telling me it was because it
> was being run for the first time.
> * downloaded livepause 0.3.1 (it's supposed to be in freevo 0.7.5
> anyway, but I wanted to make sure I had the latest version)
> * Copied dvbstreamer.startup to /etc/freevo
> * ran dvbstreamer -d -f /etc/freevo/dvbstreamer.startup (and made it
> run on startup, it's a dedicated freevo box)
> * ran setup.py install from the unpacked livepause directory
> * I modified my local_conf.py by adding:
>
> plugin.remove('tv.mplayer')
> plugin.activate('tv.dvbstreamer.live_pause')
> LIVE_PAUSE_BUFFER_SIZE=(6.25, 30 * 60) # Size of the live buffer as a
> tuple of max Mbps of the TV and seconds.
> LIVE_PAUSE_BUFFER_PATH='/tmp/freevo/live.buf' # Location of the live buffer.
>
> * I changed my VIDEO_GROUPS to:
>
> TV_VIDEO_GROUPS = [
>  VideoGroup(vdev='0',
> group_type='dvb',
> desc='DVBStreamer')
> ]
>
> -- I've been ignoring recording for now..
>
> * I restarted freevo, and attempted to watch some TV.
> * It failed, told me to look at main-1000.log (and hung the interface,
> 'continue' doesn't work)
> * The log file says:
>
> server_string=http://localhost:18001/
> Traceback (most recent call last):
>File "/usr/lib/python2.5/site-packages/freevo/main.py", line 288,
> in eventhand
> ler
>  app.eventhandler(event)
>File "/usr/lib/python2.5/site-packages/freevo/menu.py", line 494,
> in eventhand
> ler
>  if not isinstance(menu, Menu) and menu.eventhandler(event):
>File "/usr/lib/python2.5/site-packages/freevo/tv/tvguide.py", line
> 226, in eve
> nthandler
>  pi.actions()[0][0](menuw=self.menuw)
>File "/usr/lib/python2.5/site-packages/freevo/tv/programitem.py",
> line 194, in
>   play
>  self.parent.player('tv', self.prog.channel_id)
>File "/usr/lib/python2.5/site-packages/freevo/tv/tvmenu.py", line
> 81, in start
> _tv
>  plugin.getbyname(plugin.TV).Play(mode, tuner_id)
>File
> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
> e.py", line 233, in Play
>File
> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
> e.py", line 328, in change_channel
>File
> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/manager.p
> y", line 88, in select
>  controller.select_service(channel)
>File
> "/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/comms.py"
> , line 64, in select_service
>  raise RuntimeError, errmsg
> RuntimeError: Service not found!
>
> **
>
> Any ideas?
>
> Thanks,
> Simon
>
> --
> "Pokey are you drunk on love?"
> "Yes. Also whiskey. But mostly love... And whiskey!"
>
> -
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] tv_grab_de_tvtoday

2008-01-13 Thread Duncan Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Bjoern Franke wrote:
| Hi Duncan,
|
| Duncan Webb schrieb:
|
|> Have you run the tv_sort program on the TV.xml file, it usually fixes
|> bad data files. Were there any problems before 2008? How I hate the
|> crappy perl scripts that grab tv data they are always breaking.
|>
|
| Using tv_sort seems to fix this problem. Sorry for the circumstances.

No problem, just glad sorting the data fixes the holes.

Duncan
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHijvgNi6l+Xvys44RApw3AKCaDsofuPHQjyOQByaFLI6/IMYhDQCeLD+I
g1NM04RDpunemZBjURts2uY=
=LmNh
-END PGP SIGNATURE-


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] live pause: Service not found

2008-01-13 Thread Simon Detheridge
Hello,

Been trying to play witht the live pause plugin. I find the  
installation procedure isn't very well documented, so I'm sure I've  
done something wrong.

Here's what I did:

* Installed dvbstreamer 0.8 ('emerge dvbstreamer')
* ran 'setupdvbstreamer -t /etc/freevo/channels.conf' (which is where  
I keep my channels.conf)
* ran 'dvbstreamer' -- it did some stuff, telling me it was because it  
was being run for the first time.
* downloaded livepause 0.3.1 (it's supposed to be in freevo 0.7.5  
anyway, but I wanted to make sure I had the latest version)
* Copied dvbstreamer.startup to /etc/freevo
* ran dvbstreamer -d -f /etc/freevo/dvbstreamer.startup (and made it  
run on startup, it's a dedicated freevo box)
* ran setup.py install from the unpacked livepause directory
* I modified my local_conf.py by adding:

plugin.remove('tv.mplayer')
plugin.activate('tv.dvbstreamer.live_pause')
LIVE_PAUSE_BUFFER_SIZE=(6.25, 30 * 60) # Size of the live buffer as a  
tuple of max Mbps of the TV and seconds.
LIVE_PAUSE_BUFFER_PATH='/tmp/freevo/live.buf' # Location of the live buffer.

* I changed my VIDEO_GROUPS to:

TV_VIDEO_GROUPS = [
 VideoGroup(vdev='0',
group_type='dvb',
desc='DVBStreamer')
]

-- I've been ignoring recording for now..

* I restarted freevo, and attempted to watch some TV.
* It failed, told me to look at main-1000.log (and hung the interface,  
'continue' doesn't work)
* The log file says:

server_string=http://localhost:18001/
Traceback (most recent call last):
   File "/usr/lib/python2.5/site-packages/freevo/main.py", line 288,  
in eventhand
ler
 app.eventhandler(event)
   File "/usr/lib/python2.5/site-packages/freevo/menu.py", line 494,  
in eventhand
ler
 if not isinstance(menu, Menu) and menu.eventhandler(event):
   File "/usr/lib/python2.5/site-packages/freevo/tv/tvguide.py", line  
226, in eve
nthandler
 pi.actions()[0][0](menuw=self.menuw)
   File "/usr/lib/python2.5/site-packages/freevo/tv/programitem.py",  
line 194, in
  play
 self.parent.player('tv', self.prog.channel_id)
   File "/usr/lib/python2.5/site-packages/freevo/tv/tvmenu.py", line  
81, in start
_tv
 plugin.getbyname(plugin.TV).Play(mode, tuner_id)
   File  
"/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
e.py", line 233, in Play
   File  
"/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/live_paus
e.py", line 328, in change_channel
   File  
"/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/manager.p
y", line 88, in select
 controller.select_service(channel)
   File  
"/usr/lib/python2.5/site-packages/freevo/tv/plugins/dvbstreamer/comms.py"
, line 64, in select_service
 raise RuntimeError, errmsg
RuntimeError: Service not found!

**

Any ideas?

Thanks,
Simon

-- 
"Pokey are you drunk on love?"
"Yes. Also whiskey. But mostly love... And whiskey!"

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] tv_grab_de_tvtoday

2008-01-13 Thread Bjoern Franke
Hi Duncan,

Duncan Webb schrieb:

> 
> Have you run the tv_sort program on the TV.xml file, it usually fixes 
> bad data files. Were there any problems before 2008? How I hate the 
> crappy perl scripts that grab tv data they are always breaking.
> 

Using tv_sort seems to fix this problem. Sorry for the circumstances.


b.
-- 
[EMAIL PROTECTED] | bjo.nord-west.org

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] a small menu patch

2008-01-13 Thread Duncan Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Alberto González Rodríguez wrote:
| Hello:
|
|  i wanted to play a sound when i entering in any menu, and i did a
| patch and now i include in this list for if somebody need it, i use
| OSD_SOUNDS_ENABLED feature included in freevo.
|
|  example:
|
|before we only could do it:
|  OSD_SOUNDS= {
|   'menu.navigate': None,
|   'menu.back_one': None,
|   'menu.select '  : None
|  }
|
|with my path:
|
| OSD_SOUNDS = {
| 'menu.tv ': '/home/owen/Musica/menu_tv.wav',
| 'menu.video': '/home/owen/Musica/menu_video.wav',
| 'menu.audio': '/home/owen/Musica/menu_audio.wav',
| 'menu.image': '/home/owen/Musica/menu_image.wav',
| 'menu.WeatherMainMenu': '/home/owen/Musica/menu_weather.wav',
| 'menu.HeadlinesMainMenuItem':
| '/home/owen/Musica/menu_headlines.wav',
| 'menu.ShutdownItem': '/home/owen/Musica/menu_shutdown.wav'
| }
|
| and similar things, in tv, video, audio, image, radio no problem, with
| plugins you should see the class declaration for know what name to use
| in config

Will you submit a feature request for this to be included.
https://sourceforge.net/tracker/?func=add&group_id=46652&atid=446898

Thanks
Duncan
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHigasNi6l+Xvys44RAj9rAJ9UEHms4Qn3Hjm44rjux3Sqop/biwCgiu8Y
3S8p9NECM2XCebdJO1bo1jI=
=9BrS
-END PGP SIGNATURE-


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] autoshutdown plugin

2008-01-13 Thread Elizabeth Dodd
On Sun, 13 Jan 2008, Elizabeth Dodd wrote:
> My TV card is overheating, its midsummer and here that means 40C. So I
> thought I'd sort out autoshutdown for my box and that would deal with the
> overheating.
> I finally configured the nvram-wakeup and got that debugged.
>
> In Freevo 1.7.5 I have setup the autoshutdown.
>
> But autoshutdown is only calling RESTART instead of HALT
> I've fooled around with various parameters in local_conf.py and shown to my
> satisfaction that if RESTART_CMD='sudo shutdown -r now' is commented out
> the box is not shutdown, and SHUTDOWN_CMD='sudo shutdown -h now' is not
> called at all.
> Has anyone solved this problem?
>
> (this makes a neat party trick, rebooting the box, but isn't going to solve
> the heat issue)

found the answer
You must set the following to True or False, as the plugin assumes True if not 
set. 
AUTOSHUTDOWN_BIOS_NEEDS_REBOOT=True
so i've fixed that info in the wiki


-- 
Overboarding:
Overcompensating for fears about the future by plunging
headlong into a job or life-style seemingly unrelated to one's
previous life interests: i.e., Amway sales, aerobics, the Republican
party, a career in law, cults, McJobs
-- Douglas Coupland, "Generation X: Tales for an Accelerated
   Culture"

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] DVB Channel Detection

2008-01-13 Thread Adam Charrett

On Tue, 2008-01-01 at 13:09 +0100, Dirk Meyer wrote:
> Thorsten Pferdekämper wrote:
> > I have also had a look at gstreamer a while ago, but it seemed to be a huge 
> > amount of work to get that running with DVB-S etc.
> 
> It is much better now. We had a GSoC project improving the DVB code in
> GStreamer. I have a small test file with not much lines of code that
> records a whole program (incl. all audio languages and teletext). The
> problem I have right now is that there is a deadlock on stop somewhere
> we can not find. So there is much going on in that area.
> 

> Like I wrote above: better record the whole channel. Soenke had the
> problem once that the German audio pid suddenly changed to 'German for
> blind' with someone talking in the background what you see. The normal
> German audio channel was on a new pid. This sucks and can only be
> avoided if we record everything and choose later.
> 

Sorry for coming in late to this discussion (was away last week), the
program I've been working on for the last 1 2/3 year would get round
most of these problems. DVBStreamer monitors the PSI/SI data so you
don't get the problem where the PID changes to a different use and you
get the wrong audio.

Currently there is no CAM support, but this can easily be added via a
plugin (I can't do this as I have no CAM to test against). It already
supports DVB-S/C/T and ATSC. GStreamer could still be used to render the
stream as DVBStreamer outputs to a file or UDP/RTP. It also supports
filtering multiple services (channels) if your using a card that can
pass the whole transport stream.

DVBStreamer is already being used for the live pause plugin in freevo
1.x

(http://www.dvbstreamer.org)

Cheers

Adam


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] autoshutdown plugin

2008-01-13 Thread Elizabeth Dodd
My TV card is overheating, its midsummer and here that means 40C. So I thought 
I'd sort out autoshutdown for my box and that would deal with the 
overheating.
I finally configured the nvram-wakeup and got that debugged.

In Freevo 1.7.5 I have setup the autoshutdown.

But autoshutdown is only calling RESTART instead of HALT
I've fooled around with various parameters in local_conf.py and shown to my 
satisfaction that if RESTART_CMD='sudo shutdown -r now' is commented out the 
box is not shutdown, and SHUTDOWN_CMD='sudo shutdown -h now' is not called at 
all.
Has anyone solved this problem?

(this makes a neat party trick, rebooting the box, but isn't going to solve 
the heat issue)


-- 
Between the idea
And the reality
Between the motion
And the act
Falls the Shadow
-- T.S. Eliot, "The Hollow Man"

[Quoted in "VMS Internals and Data Structures", V4.4, when
 referring to system service dispatching.]

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users