Re: [Freevo-users] Recording Internet radio/tv with Freevo

2010-04-14 Thread John Molohan
On 05/04/2010 16:25, mclu...@wp.pl wrote:
 Why can't we use Freevo's excellent record server to schedule recording
 of different brodcast types - e.g. internet streaming?

Cause no one has written support for it yet :)
 This is how I'm planning to achieve this (I based my idea on this
 article: http://doc.freevo.org/MultiRecordingCard)

Cool.
 1) I fed xmltv file with program of my favorite radio station
 2) I patched generic_record plugin to add a new field to VCR_CMD, called
 `group-type'
 3) I created additional instance of VideoGroup inside my local_conf.py
 just to introduce a different group type ('stream'):
 TV_VIDEO_GROUPS = [VideoGroup(vdev='/dev/video0',
   adev=None,
   input_type='Tuner 1',
   input_num=0,
   tuner_norm='pal',
   tuner_chanlist='europe-east',
   desc='Regular Cable',
   group_type='ivtv',
   record_group = None),
VideoGroup(vdev=None,
  adev=None,
  input_type='default',
  desc='Internet recording',
  group_type='stream',
   record_group = 1),
 ]

 4) I created a script /etc/freevo/record-stream.sh to perform audio
 stream recording with mplayer:
 #!/bin/sh
 # arguments : channel_name_or_number frequency_in_MHz seconds_to_record
 output_filename
 exec mplayer -vc null -vo null -ao pcm:fast:file=$4 -endpos $3 $1

 5) and command to call the script from within Freevo's generic_record
 plugin:
 VCR_CMD = '/etc/freevo/record-%(group-type)s.sh %(channel)s
 %(frequencyMHz)s %(seconds)s %(filename)s'

Is point 6 missing?
 7) and finally I created additional entry to channel list in
 local_conf.py containing internet radio channel with stream address as
 channel data and referencing to proper video group:
 ('429', 'PR3','mms://stream.polskieradio.pl/program3','','1')

Apart from that it seems reasonable up to here.
 At this point I am able to schedule recording from Internet radio, but
 'channel' parameter passing by generic_record plugin to recording script
 is wrong!
 The program data: ('429',
 'PR3','mms://stream.polskieradio.pl/program3','','1')
 is stored inside Freevo as: channel=TvChannel '429' 'PR3' 'http://'
 As you can see stream address 'mms://...' was replaced with string:
 'http://'
 We can see it in main log file:
 epg_types.py (348): add(channel_id='429', channel=TvChannel '429' 'PR3'
 'http://')

 I would like to write patch against that, but I cannot find the piece of
 python code that stores channel data.

I don't know where that might be off the top of my head. Duncan might 
though.
 I would also like to know what determines recording file suffix, because
 Freevo tries to store my audio data into file with avi suffix. I need to
 know how to change that behavior and associate video group with
 particuar suffix.

I'm pretty sure there's an option in local_conf.py for the record file 
suffix no?
 Any ideas on how to improve Internet stream recording are welcome.

 Maciej
Does it support watching as well as recording?

John

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Internet radio/tv with Freevo

2010-04-05 Thread mclusky
Why can't we use Freevo's excellent record server to schedule recording 
of different brodcast types - e.g. internet streaming?
This is how I'm planning to achieve this (I based my idea on this 
article: http://doc.freevo.org/MultiRecordingCard)
1) I fed xmltv file with program of my favorite radio station
2) I patched generic_record plugin to add a new field to VCR_CMD, called 
`group-type'
3) I created additional instance of VideoGroup inside my local_conf.py 
just to introduce a different group type ('stream'):
TV_VIDEO_GROUPS = [VideoGroup(vdev='/dev/video0',
adev=None,
input_type='Tuner 1',
input_num=0,
tuner_norm='pal',
tuner_chanlist='europe-east',
desc='Regular Cable',
group_type='ivtv',
record_group = None),
  VideoGroup(vdev=None,
adev=None,
input_type='default',
desc='Internet recording',
group_type='stream',
record_group = 1),
]

4) I created a script /etc/freevo/record-stream.sh to perform audio 
stream recording with mplayer:
#!/bin/sh
# arguments : channel_name_or_number frequency_in_MHz seconds_to_record 
output_filename
exec mplayer -vc null -vo null -ao pcm:fast:file=$4 -endpos $3 $1

5) and command to call the script from within Freevo's generic_record 
plugin:
VCR_CMD = '/etc/freevo/record-%(group-type)s.sh %(channel)s 
%(frequencyMHz)s %(seconds)s %(filename)s'

7) and finally I created additional entry to channel list in 
local_conf.py containing internet radio channel with stream address as 
channel data and referencing to proper video group:
('429', 'PR3','mms://stream.polskieradio.pl/program3','','1')

At this point I am able to schedule recording from Internet radio, but 
'channel' parameter passing by generic_record plugin to recording script 
is wrong!
The program data: ('429', 
'PR3','mms://stream.polskieradio.pl/program3','','1')
is stored inside Freevo as: channel=TvChannel '429' 'PR3' 'http://'
As you can see stream address 'mms://...' was replaced with string: 
'http://'
We can see it in main log file:
epg_types.py (348): add(channel_id='429', channel=TvChannel '429' 'PR3' 
'http://')

I would like to write patch against that, but I cannot find the piece of 
python code that stores channel data.

I would also like to know what determines recording file suffix, because 
Freevo tries to store my audio data into file with avi suffix. I need to 
know how to change that behavior and associate video group with 
particuar suffix.

Any ideas on how to improve Internet stream recording are welcome.

Maciej



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-19 Thread Duncan Webb
Art S R wrote:
 On Wed, Mar 18, 2009 at 12:32 PM, Duncan Webb dun...@freevo.org wrote:
 
 I've been working on the recordserver to see if I can improve the
 timings of the recording. If you want to try out this version you can
 get it from svn with the export command, i.e.:
 svn export
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/src/helpers/recordserver.py
 and you will need freevo_config.py from
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/freevo_config.py

 You will need to change the RECORDSERVER_ATTIMER = 0 in your
 local_conf.py to start the recordings at the top of the minute.

 Attached is a log of four consecutive without any gaps and including a
 small overlay of two programs.

 Actually there is an odd delay after a kaa.rpc time-out error, I'm not
 sure if this has been caused by this error.

 Duncan
 
 Thanks for the quick fix, Duncan.  I tried the new recordserver.py and
 freevo_config.py, but got the following errors when I tried to launch
 recordserver:
 
 Traceback (most recent call last):
   File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
 line 1481, in module
 main()
   File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
 line 1454, in main
 rpc.register(recordserver)
 AttributeError: 'Server' object has no attribute 'register'
 WARNING: 'Server' object has no attribute 'register'
 
 Any idea what may be the problem?

Ah yes, this is part of the kaa that is only in svn. You will need to
install these kaa packages and freevo-1 from svn.

Do you know how to do this? If not then use the wiki page
http://doc.freevo.org/SourceSVNInstallation.

Duncan

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-19 Thread Art S R
On Thu, Mar 19, 2009 at 9:21 AM, Duncan Webb dun...@freevo.org wrote:
 Art S R wrote:
 On Wed, Mar 18, 2009 at 12:32 PM, Duncan Webb dun...@freevo.org wrote:

 I've been working on the recordserver to see if I can improve the
 timings of the recording. If you want to try out this version you can
 get it from svn with the export command, i.e.:
 svn export
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/src/helpers/recordserver.py
 and you will need freevo_config.py from
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/freevo_config.py

 You will need to change the RECORDSERVER_ATTIMER = 0 in your
 local_conf.py to start the recordings at the top of the minute.

 Attached is a log of four consecutive without any gaps and including a
 small overlay of two programs.

 Actually there is an odd delay after a kaa.rpc time-out error, I'm not
 sure if this has been caused by this error.

 Duncan

 Thanks for the quick fix, Duncan.  I tried the new recordserver.py and
 freevo_config.py, but got the following errors when I tried to launch
 recordserver:

 Traceback (most recent call last):
   File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
 line 1481, in module
     main()
   File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
 line 1454, in main
     rpc.register(recordserver)
 AttributeError: 'Server' object has no attribute 'register'
 WARNING: 'Server' object has no attribute 'register'

 Any idea what may be the problem?

 Ah yes, this is part of the kaa that is only in svn. You will need to
 install these kaa packages and freevo-1 from svn.

 Do you know how to do this? If not then use the wiki page
 http://doc.freevo.org/SourceSVNInstallation.

 Duncan


Last night, I was looking at an earlier version of recordserver.py
that did not have this error and saw that it was using
rpc.connect(recordserver) instead of rpc.register(recordserver).
On a whim, I changed that statement in you lastest svn version and, lo
and behold, recordserver was able to launch successfully and record
programs.  However, when I recorded back-to-back programs, the second
one was still starting 1 minute late:

2009-03-18 22:29:50,810 DEBUGgeneric_record.py (157):
Record_Thread::run: mode=idle
2009-03-18 22:29:51,643 DEBUGrecordserver.py (1438):
RecordPostProcess.run() finish
2009-03-18 22:30:00,004 DEBUGrecordserver.py (921): overlap_duration=0
2009-03-18 22:30:00,006 INFO recordserver.py (934): CALLED RECORD
STOP 1: Wed Mar 18 22:00-22:30 (22:00)  I33.28460028.microsoft.com
ALF
2009-03-18 22:30:00,007 INFO recordserver.py (954): delaying: Wed
Mar 18 22:30-23:00 (22:30)  I47.28458302.microsoft.com The
Exterminators
2009-03-18 22:30:00,512 DEBUGgeneric_record.py (157):
Record_Thread::run: mode=stop
2009-03-18 22:30:01,016 DEBUGgeneric_record.py (157):
Record_Thread::run: mode=idle
2009-03-18 22:31:00,003 INFO recordserver.py (956): going to
record: Wed Mar 18 22:30-23:00 (22:30)  I47.28458302.microsoft.com
The Exterminators
2009-03-18 22:31:00,005 INFO recordserver.py (974): start
recording: Wed Mar 18 22:30-23:00 (22:30)  I47.28458302.microsoft.com
The Exterminators

Program 1 completed post-processing at 22:29:51,643 with CALLED RECORD
STOP at 22:30:00,006 and, even though overlap_duration=0, program 2
did not start recording until a full minute later at 22:31:00,005.
Seeing that generic_record.py was involved, I checked svn and saw that
you had updated this too for the recording time issue, so I grabbed
that file as well to see if it would make any difference.
Unfortunately, the 1 minute delay between program recordings was still
there.

When I get some more time and am feeling more ambitious, I'll install
the svn versions of kaa and freevo-1 and see if that makes any
difference.

Thanks for your help.

Art S R

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-19 Thread Duncan Webb
Art S R wrote:
 On Thu, Mar 19, 2009 at 9:21 AM, Duncan Webb dun...@freevo.org wrote:
 Art S R wrote:
 On Wed, Mar 18, 2009 at 12:32 PM, Duncan Webb dun...@freevo.org wrote:

 I've been working on the recordserver to see if I can improve the
 timings of the recording. If you want to try out this version you can
 get it from svn with the export command, i.e.:
 svn export
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/src/helpers/recordserver.py
 and you will need freevo_config.py from
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/freevo_config.py

 You will need to change the RECORDSERVER_ATTIMER = 0 in your
 local_conf.py to start the recordings at the top of the minute.

 Attached is a log of four consecutive without any gaps and including a
 small overlay of two programs.

 Actually there is an odd delay after a kaa.rpc time-out error, I'm not
 sure if this has been caused by this error.

 Duncan
 Thanks for the quick fix, Duncan.  I tried the new recordserver.py and
 freevo_config.py, but got the following errors when I tried to launch
 recordserver:

 Traceback (most recent call last):
   File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
 line 1481, in module
 main()
   File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
 line 1454, in main
 rpc.register(recordserver)
 AttributeError: 'Server' object has no attribute 'register'
 WARNING: 'Server' object has no attribute 'register'

 Any idea what may be the problem?
 Ah yes, this is part of the kaa that is only in svn. You will need to
 install these kaa packages and freevo-1 from svn.

 Do you know how to do this? If not then use the wiki page
 http://doc.freevo.org/SourceSVNInstallation.

 Duncan

 
 Last night, I was looking at an earlier version of recordserver.py
 that did not have this error and saw that it was using
 rpc.connect(recordserver) instead of rpc.register(recordserver).
 On a whim, I changed that statement in you lastest svn version and, lo
 and behold, recordserver was able to launch successfully and record
 programs.  However, when I recorded back-to-back programs, the second
 one was still starting 1 minute late:
 
 2009-03-18 22:29:50,810 DEBUGgeneric_record.py (157):
 Record_Thread::run: mode=idle
 2009-03-18 22:29:51,643 DEBUGrecordserver.py (1438):
 RecordPostProcess.run() finish
 2009-03-18 22:30:00,004 DEBUGrecordserver.py (921): overlap_duration=0
 2009-03-18 22:30:00,006 INFO recordserver.py (934): CALLED RECORD
 STOP 1: Wed Mar 18 22:00-22:30 (22:00)  I33.28460028.microsoft.com
 ALF
 2009-03-18 22:30:00,007 INFO recordserver.py (954): delaying: Wed
 Mar 18 22:30-23:00 (22:30)  I47.28458302.microsoft.com The
 Exterminators
 2009-03-18 22:30:00,512 DEBUGgeneric_record.py (157):
 Record_Thread::run: mode=stop
 2009-03-18 22:30:01,016 DEBUGgeneric_record.py (157):
 Record_Thread::run: mode=idle
 2009-03-18 22:31:00,003 INFO recordserver.py (956): going to
 record: Wed Mar 18 22:30-23:00 (22:30)  I47.28458302.microsoft.com
 The Exterminators
 2009-03-18 22:31:00,005 INFO recordserver.py (974): start
 recording: Wed Mar 18 22:30-23:00 (22:30)  I47.28458302.microsoft.com
 The Exterminators
 
 Program 1 completed post-processing at 22:29:51,643 with CALLED RECORD
 STOP at 22:30:00,006 and, even though overlap_duration=0, program 2
 did not start recording until a full minute later at 22:31:00,005.
 Seeing that generic_record.py was involved, I checked svn and saw that
 you had updated this too for the recording time issue, so I grabbed
 that file as well to see if it would make any difference.
 Unfortunately, the 1 minute delay between program recordings was still
 there.

Trouble is that this happened sometimes and sometimes not. Anyway it's a
pain fixing the recordserver as it takes lots of time testing...

In svn there is a new version which should fix this and here is the log:
21:13:54,756 INFO RECORD_START Thu Mar 19 20:15-21:15 (20:15)  Mein
neues Leben
21:14:45,000 INFO currently_recording=Thu Mar 19 20:15-21:15
(20:15)  Mein neues Leben
21:14:45,005 INFO CALLED RECORD STOP 1: Thu Mar 19 20:15-21:15
(20:15)  Mein neues Leben
21:14:45,007 INFO delaying: Thu Mar 19 21:15-22:15 (21:15)  Hagen
hilft!
21:14:45,939 INFO RECORD_STOP Thu Mar 19 20:15-21:15 (20:15)  Mein
neues Leben
21:14:45,941 INFO post-processing started for Thu Mar 19
20:15-21:15 (20:15)  Mein neues Leben
21:14:46,438 INFO RECORD_START Thu Mar 19 21:15-22:15 (21:15)
Hagen hilft!
21:14:53,224 INFO post-processing finished for Thu Mar 19
20:15-21:15 (20:15)  Mein neues Leben
21:15:45,006 INFO currently_recording=Thu Mar 19 21:15-22:15
(21:15)  Hagen hilft!

The above shows that:
 - the recording was started less than a second after the last one was
finished.
 - the post-processing was done in its own thread

 When I get some more time and am feeling more ambitious, I'll install
 the svn versions of kaa and freevo-1 and see if that makes 

Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-18 Thread Art S R
On Wed, Mar 18, 2009 at 12:32 PM, Duncan Webb dun...@freevo.org wrote:

 I've been working on the recordserver to see if I can improve the
 timings of the recording. If you want to try out this version you can
 get it from svn with the export command, i.e.:
 svn export
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/src/helpers/recordserver.py
 and you will need freevo_config.py from
 svn://svn.freevo.org/freevo/branches/rel-1/freevo/freevo_config.py

 You will need to change the RECORDSERVER_ATTIMER = 0 in your
 local_conf.py to start the recordings at the top of the minute.

 Attached is a log of four consecutive without any gaps and including a
 small overlay of two programs.

 Actually there is an odd delay after a kaa.rpc time-out error, I'm not
 sure if this has been caused by this error.

 Duncan

Thanks for the quick fix, Duncan.  I tried the new recordserver.py and
freevo_config.py, but got the following errors when I tried to launch
recordserver:

Traceback (most recent call last):
  File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
line 1481, in module
main()
  File /usr/lib/python2.5/site-packages/freevo/helpers/recordserver.py,
line 1454, in main
rpc.register(recordserver)
AttributeError: 'Server' object has no attribute 'register'
WARNING: 'Server' object has no attribute 'register'

Any idea what may be the problem?

Art S R

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-16 Thread Duncan Webb
Art S R wrote:
 Hi Duncan,
 
 The one remaining problem is that, if I have consecutive recordings, the
 second program's start time is delayed by 1 minute.  This occurs even
 when using all the default settings (sec=45 in recordserver.py and no
 PRE/POST recording padding values in local_conf.py).  In the
 recordserver log, it shows overlap_duration=0, yet the second
 recording doesn't start immediately even though the previous program has
 already ended:

Consecutive recordings are a bit of a problem but looking at the code
the second recording should start after the first one has stopped.
However the code must go through the blocks:

- config.VCR_POST_REC
- config.TV_RECORD_REMOVE_COMMERCIALS and
- config.TV_REENCODE

before starting the next recording, must admit that this is quite poor
logic and the post processing should be performed in a thread so as not
to block the event handler.

If you are using these settings and they take longer that a minute to be
performed then your next recording will be delayed by a minute.

Duncan

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-16 Thread Art S R
On Mon, Mar 16, 2009 at 12:51 PM, Duncan Webb dun...@freevo.org wrote:
 Art S R wrote:
 Hi Duncan,

 The one remaining problem is that, if I have consecutive recordings, the
 second program's start time is delayed by 1 minute.  This occurs even
 when using all the default settings (sec=45 in recordserver.py and no
 PRE/POST recording padding values in local_conf.py).  In the
 recordserver log, it shows overlap_duration=0, yet the second
 recording doesn't start immediately even though the previous program has
 already ended:

 Consecutive recordings are a bit of a problem but looking at the code
 the second recording should start after the first one has stopped.
 However the code must go through the blocks:

 - config.VCR_POST_REC
 - config.TV_RECORD_REMOVE_COMMERCIALS and
 - config.TV_REENCODE

 before starting the next recording, must admit that this is quite poor
 logic and the post processing should be performed in a thread so as not
 to block the event handler.

 If you are using these settings and they take longer that a minute to be
 performed then your next recording will be delayed by a minute.

 Duncan


Hi Duncan,

I'm not using any of these post-recording functions so, in theory, the
second recording should start immediately after the first has ended.
Can you think of anything else that might delay the second recording?
The delay is exactly 1 minute every time, so I'm inclined to think
it's something inherent in the code rather than due to the process
waiting for an external event to complete (e.g., post-recording
function).

Thanks for your help.

Art S R

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-14 Thread Duncan Webb
Art S R wrote:
 Hi Duncan,
 
 Unfortunately, many US cable stations run their programs back-to-back
 with no commercial breaks in-between programs.  Indeed, the closing
 scene and narrative are broadcast simultaneously with the closing
 credits.  As soon as the credits end, the next program starts.  They put
 their commercials (adverts) elsewhere during the program.
 
 Anyway, I found that recordserver.py has the following code to delay the
 start of recording until 45 seconds into the minute, so I changed it to
 sec=0:
 kaa.AtTimer(recordserver.handleAtTimer).start(sec=45)
 Now, recording starts at the top of the minute. 

Okay I'll make this a configuration variable so it can be changed
without changing the code.

 The one remaining problem is that, if I have consecutive recordings, the
 second program's start time is delayed by 1 minute.  This occurs even
 when using all the default settings (sec=45 in recordserver.py and no
 PRE/POST recording padding values in local_conf.py).  In the
 recordserver log, it shows overlap_duration=0, yet the second
 recording doesn't start immediately even though the previous program has
 already ended:

I'll have to check this feature out.

Duncan

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-10 Thread Duncan Webb
Art S R wrote:
 I checked my Freevo 1.7.x installation (where recordings start at the
 correct time) and see that recordserver.py (revision 9844) has some code
 to check for the top of the minute in startMinuteCheck(self) and
 minuteCheck(self).  These aren't in recordserver.py for Freevo 1.8.3. 
 Is there some other routine in the current version that syncs
 recordserver to start recordings at the beginning of the minute (0
 seconds) instead of 45 seconds later?

It is quite unusual for a broadcaster to be so punctual with their
broadcast times. The default should start recording 15 seconds before
the program is due to start recording, this is intended so that the TV
card will be fully operational when the program starts. The IVTV cards
take a few seconds to get the MPEG stream steady.

It is quite possible that the code is incorrect and starts recording 45
seconds late. Need to test the code for the problem that you have described.

The way I get round this is to use the VPS signal (PAL only?) which
tells a VCR when a programme is really starting and finishing; then
start recording from this point and stop it when the programme has
finished. There may well be a similar process to for NTSC.

Duncan

 I noticed that the beginnings of my recorded TV programs were
 truncated, so I looked in recordserver-1000.log and saw that
 recordserver was starting all recordings 45 seconds *after* the
 scheduled start time for each program:
 
 2009-03-04 17:30:45,001 INFO recordserver.py (944): going to
 record: Wed Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com
 http://I9.28458213.microsoft.com BBC World News
 2009-03-04 17:30:45,004 INFO recordserver.py (962): start
 recording: Wed Mar 04 17:30-18:00 (17:30) 
 I9.28458213.microsoft.com http://I9.28458213.microsoft.com BBC
 World News
 2009-03-04 17:30:45,516 INFO recordserver.py (1329):
 RECORD_START Wed Mar 04 17:30-18:00 (17:30) 
 I9.28458213.microsoft.com http://I9.28458213.microsoft.com BBC
 World News
 2009-03-04 17:59:51,116 INFO recordserver.py (1337): RECORD_STOP
 Wed Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com
 http://I9.28458213.microsoft.com BBC World News
 
 In the sample above, the recording should have started at 17:30:00,
 but it started at 17:30:45 instead.  My local_conf.py has
 'TV_RECORD_PADDING_PRE = 0', so the recordings should be starting at
 the designated time.  Anyway, I decided to compensate by changing
 this value to 'TV_RECORD_PADDING_PRE = 45'.  However, this resulted
 in the recordings starting 15 seconds *before* the scheduled start
 time, as shown below (17:59:45 instead of the expected 18:00:00):
 
 2009-03-05 17:59:45,003 INFO recordserver.py (944): going to
 record: Thu Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com
 http://I28.28460456.microsoft.com BBC World News
 2009-03-05 17:59:45,006 INFO recordserver.py (962): start
 recording: Thu Mar 05 18:00-18:30 (18:00) 
 I28.28460456.microsoft.com http://I28.28460456.microsoft.com BBC
 World News
 2009-03-05 17:59:45,520 INFO recordserver.py (1329):
 RECORD_START Thu Mar 05 18:00-18:30 (18:00) 
 I28.28460456.microsoft.com http://I28.28460456.microsoft.com BBC
 World News
 2009-03-05 18:29:59,563 INFO recordserver.py (1337): RECORD_STOP
 Thu Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com
 http://I28.28460456.microsoft.com BBC World News
 
 I played around with various values for TV_RECORD_PADDING_PRE and
 found that if the value is 15 to 45, recordings will start 15
 seconds too early.  If the value is less than 15, then recordings
 will start 45 seconds too late.  I see that there's in comment in
 local_conf.py that, although the padding time is designated in
 seconds, precision is only at the minute level.  This could explain
 why I couldn't set a start time in between 15 seconds too early or
 45 seconds too late (-15 secs to +45 secs = 60 secs).  However, I am
 able to set TV_RECORD_PADDING_POST to sub-minute precision.  In the
 first set of log entries above, note that the stop time for the
 program was at 51 seconds (9 seconds before the scheduled stop
 time).  I added some seconds to TV_RECORD_PADDING_POST and you'll
 note in the second set of log entries that stop time was at 59
 seconds (1 second before the scheduled stop time).  In other words,
 I was able to tweak the stop time by a few seconds via
 TV_RECORD_PADDING_POST, but a similar action with
 TV_RECORD_PADDING_PRE did not yield any change less than 60 seconds
 (1 minute).
 
 Anyway, I can accept the inprecision of TV_RECORD_PADDING_PRE, but
 how can I get my recordings to start exactly at the scheduled start
 time without trying to compensate via TV_RECORD_PADDING_PRE (which
 doesn't yield good results anyway -- 15 

Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-10 Thread Art S R
Hi Duncan,

Unfortunately, many US cable stations run their programs back-to-back with
no commercial breaks in-between programs.  Indeed, the closing scene and
narrative are broadcast simultaneously with the closing credits.  As soon as
the credits end, the next program starts.  They put their commercials
(adverts) elsewhere during the program.

Anyway, I found that recordserver.py has the following code to delay the
start of recording until 45 seconds into the minute, so I changed it to
sec=0:
kaa.AtTimer(recordserver.handleAtTimer).start(sec=45)
Now, recording starts at the top of the minute.

The one remaining problem is that, if I have consecutive recordings, the
second program's start time is delayed by 1 minute.  This occurs even when
using all the default settings (sec=45 in recordserver.py and no PRE/POST
recording padding values in local_conf.py).  In the recordserver log, it
shows overlap_duration=0, yet the second recording doesn't start
immediately even though the previous program has already ended:

2009-03-09 22:29:50,898 INFO recordserver.py (1337): RECORD_STOP Mon Mar
09 22:00-22:30 (22:00)  I6.28455235.microsoft.com Frasier
2009-03-09 22:30:45,002 INFO recordserver.py (910): overlap_duration=0
2009-03-09 22:30:45,004 INFO recordserver.py (924): CALLED RECORD STOP
1: Mon Mar 09 22:00-22:30 (22:00)  I6.28455235.microsoft.com Frasier
2009-03-09 22:30:45,005 INFO recordserver.py (942): delaying: Mon Mar 09
22:30-23:00 (22:30)  I12.28456406.microsoft.com Family Guy
2009-03-09 22:31:45,002 INFO recordserver.py (944): going to record: Mon
Mar 09 22:30-23:00 (22:30)  I12.28456406.microsoft.com Family Guy
2009-03-09 22:31:45,005 INFO recordserver.py (962): start recording: Mon
Mar 09 22:30-23:00 (22:30)  I12.28456406.microsoft.com Family Guy

In my Freevo 1.7.3 installation, the second program starts immediately after
the first program ends, without the 1 minute delay.

Art S R


On Tue, Mar 10, 2009 at 1:40 PM, Duncan Webb dun...@freevo.org wrote:

 Art S R wrote:
  I checked my Freevo 1.7.x installation (where recordings start at the
  correct time) and see that recordserver.py (revision 9844) has some code
  to check for the top of the minute in startMinuteCheck(self) and
  minuteCheck(self).  These aren't in recordserver.py for Freevo 1.8.3.
  Is there some other routine in the current version that syncs
  recordserver to start recordings at the beginning of the minute (0
  seconds) instead of 45 seconds later?

 It is quite unusual for a broadcaster to be so punctual with their
 broadcast times. The default should start recording 15 seconds before
 the program is due to start recording, this is intended so that the TV
 card will be fully operational when the program starts. The IVTV cards
 take a few seconds to get the MPEG stream steady.

 It is quite possible that the code is incorrect and starts recording 45
 seconds late. Need to test the code for the problem that you have
 described.

 The way I get round this is to use the VPS signal (PAL only?) which
 tells a VCR when a programme is really starting and finishing; then
 start recording from this point and stop it when the programme has
 finished. There may well be a similar process to for NTSC.

 Duncan

  I noticed that the beginnings of my recorded TV programs were
  truncated, so I looked in recordserver-1000.log and saw that
  recordserver was starting all recordings 45 seconds *after* the
  scheduled start time for each program:
 
  2009-03-04 17:30:45,001 INFO recordserver.py (944): going to
  record: Wed Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com
  http://I9.28458213.microsoft.com BBC World News
  2009-03-04 17:30:45,004 INFO recordserver.py (962): start
  recording: Wed Mar 04 17:30-18:00 (17:30)
  I9.28458213.microsoft.com http://I9.28458213.microsoft.com BBC
  World News
  2009-03-04 17:30:45,516 INFO recordserver.py (1329):
  RECORD_START Wed Mar 04 17:30-18:00 (17:30)
  I9.28458213.microsoft.com http://I9.28458213.microsoft.com BBC
  World News
  2009-03-04 17:59:51,116 INFO recordserver.py (1337): RECORD_STOP
  Wed Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com
  http://I9.28458213.microsoft.com BBC World News
 
  In the sample above, the recording should have started at 17:30:00,
  but it started at 17:30:45 instead.  My local_conf.py has
  'TV_RECORD_PADDING_PRE = 0', so the recordings should be starting at
  the designated time.  Anyway, I decided to compensate by changing
  this value to 'TV_RECORD_PADDING_PRE = 45'.  However, this resulted
  in the recordings starting 15 seconds *before* the scheduled start
  time, as shown below (17:59:45 instead of the expected 18:00:00):
 
  2009-03-05 17:59:45,003 INFO recordserver.py (944): going to
  record: Thu Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com
  http://I28.28460456.microsoft.com BBC 

Re: [Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-09 Thread Art S R
I checked my Freevo 1.7.x installation (where recordings start at the
correct time) and see that recordserver.py (revision 9844) has some code to
check for the top of the minute in startMinuteCheck(self) and
minuteCheck(self).  These aren't in recordserver.py for Freevo 1.8.3.  Is
there some other routine in the current version that syncs recordserver to
start recordings at the beginning of the minute (0 seconds) instead of 45
seconds later?

Art S R

On Thu, Mar 5, 2009 at 11:19 PM, Art S R arty94...@gmail.com wrote:

 Hi all,

 I noticed that the beginnings of my recorded TV programs were truncated, so
 I looked in recordserver-1000.log and saw that recordserver was starting all
 recordings 45 seconds *after* the scheduled start time for each program:

 2009-03-04 17:30:45,001 INFO recordserver.py (944): going to record:
 Wed Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News
 2009-03-04 17:30:45,004 INFO recordserver.py (962): start recording:
 Wed Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News
 2009-03-04 17:30:45,516 INFO recordserver.py (1329): RECORD_START Wed
 Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News
 2009-03-04 17:59:51,116 INFO recordserver.py (1337): RECORD_STOP Wed
 Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News

 In the sample above, the recording should have started at 17:30:00, but it
 started at 17:30:45 instead.  My local_conf.py has 'TV_RECORD_PADDING_PRE =
 0', so the recordings should be starting at the designated time.  Anyway, I
 decided to compensate by changing this value to 'TV_RECORD_PADDING_PRE =
 45'.  However, this resulted in the recordings starting 15 seconds *before*
 the scheduled start time, as shown below (17:59:45 instead of the expected
 18:00:00):

 2009-03-05 17:59:45,003 INFO recordserver.py (944): going to record:
 Thu Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News
 2009-03-05 17:59:45,006 INFO recordserver.py (962): start recording:
 Thu Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News
 2009-03-05 17:59:45,520 INFO recordserver.py (1329): RECORD_START Thu
 Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News
 2009-03-05 18:29:59,563 INFO recordserver.py (1337): RECORD_STOP Thu
 Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News

 I played around with various values for TV_RECORD_PADDING_PRE and found
 that if the value is 15 to 45, recordings will start 15 seconds too early.
 If the value is less than 15, then recordings will start 45 seconds too
 late.  I see that there's in comment in local_conf.py that, although the
 padding time is designated in seconds, precision is only at the minute
 level.  This could explain why I couldn't set a start time in between 15
 seconds too early or 45 seconds too late (-15 secs to +45 secs = 60 secs).
 However, I am able to set TV_RECORD_PADDING_POST to sub-minute precision.
 In the first set of log entries above, note that the stop time for the
 program was at 51 seconds (9 seconds before the scheduled stop time).  I
 added some seconds to TV_RECORD_PADDING_POST and you'll note in the second
 set of log entries that stop time was at 59 seconds (1 second before the
 scheduled stop time).  In other words, I was able to tweak the stop time by
 a few seconds via TV_RECORD_PADDING_POST, but a similar action with
 TV_RECORD_PADDING_PRE did not yield any change less than 60 seconds (1
 minute).

 Anyway, I can accept the inprecision of TV_RECORD_PADDING_PRE, but how can
 I get my recordings to start exactly at the scheduled start time without
 trying to compensate via TV_RECORD_PADDING_PRE (which doesn't yield good
 results anyway -- 15 seconds too early or 45 seconds late are both bad).
 What's causing recordings to start 45 seconds too late with the default
 settings?

 Thanks for any help anyone can offer.

 Art S R

--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording start time is late (Freevo 1.8.3)

2009-03-05 Thread Art S R
Hi all,

I noticed that the beginnings of my recorded TV programs were truncated, so
I looked in recordserver-1000.log and saw that recordserver was starting all
recordings 45 seconds *after* the scheduled start time for each program:

2009-03-04 17:30:45,001 INFO recordserver.py (944): going to record: Wed
Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News
2009-03-04 17:30:45,004 INFO recordserver.py (962): start recording: Wed
Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News
2009-03-04 17:30:45,516 INFO recordserver.py (1329): RECORD_START Wed
Mar 04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News
2009-03-04 17:59:51,116 INFO recordserver.py (1337): RECORD_STOP Wed Mar
04 17:30-18:00 (17:30)  I9.28458213.microsoft.com BBC World News

In the sample above, the recording should have started at 17:30:00, but it
started at 17:30:45 instead.  My local_conf.py has 'TV_RECORD_PADDING_PRE =
0', so the recordings should be starting at the designated time.  Anyway, I
decided to compensate by changing this value to 'TV_RECORD_PADDING_PRE =
45'.  However, this resulted in the recordings starting 15 seconds *before*
the scheduled start time, as shown below (17:59:45 instead of the expected
18:00:00):

2009-03-05 17:59:45,003 INFO recordserver.py (944): going to record: Thu
Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News
2009-03-05 17:59:45,006 INFO recordserver.py (962): start recording: Thu
Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News
2009-03-05 17:59:45,520 INFO recordserver.py (1329): RECORD_START Thu
Mar 05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News
2009-03-05 18:29:59,563 INFO recordserver.py (1337): RECORD_STOP Thu Mar
05 18:00-18:30 (18:00)  I28.28460456.microsoft.com BBC World News

I played around with various values for TV_RECORD_PADDING_PRE and found that
if the value is 15 to 45, recordings will start 15 seconds too early.  If
the value is less than 15, then recordings will start 45 seconds too late.
I see that there's in comment in local_conf.py that, although the padding
time is designated in seconds, precision is only at the minute level.  This
could explain why I couldn't set a start time in between 15 seconds too
early or 45 seconds too late (-15 secs to +45 secs = 60 secs).  However, I
am able to set TV_RECORD_PADDING_POST to sub-minute precision.  In the first
set of log entries above, note that the stop time for the program was at 51
seconds (9 seconds before the scheduled stop time).  I added some seconds to
TV_RECORD_PADDING_POST and you'll note in the second set of log entries that
stop time was at 59 seconds (1 second before the scheduled stop time).  In
other words, I was able to tweak the stop time by a few seconds via
TV_RECORD_PADDING_POST, but a similar action with TV_RECORD_PADDING_PRE did
not yield any change less than 60 seconds (1 minute).

Anyway, I can accept the inprecision of TV_RECORD_PADDING_PRE, but how can I
get my recordings to start exactly at the scheduled start time without
trying to compensate via TV_RECORD_PADDING_PRE (which doesn't yield good
results anyway -- 15 seconds too early or 45 seconds late are both bad).
What's causing recordings to start 45 seconds too late with the default
settings?

Thanks for any help anyone can offer.

Art S R
--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording issue

2009-01-29 Thread markus frei
Hi,

I'm using freevo 1.8.3 on a PC running Linux Mint. When I want to record 
something from TV, it seems that I first have to watch that channel. If I 
don't, the recording starts at the given time, but the channel isn't selected, 
so the recording I get is just snow.

If after a successful recording another is scheduled on another channel, again 
the recording starts, but it stays on the last channel that was used or 
recorded from. So it seems the recording routine doesn't change the channel by 
itself.

I'm using TvTime for viewing TV and have all my channels setup there, and 
freevo uses mencoder (mplayer) for recording. Do I have to setup a channel list 
for mencoder too, and if so, how?

Thanx for any help here.


-- 
Pt! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: 
http://www.gmx.net/de/go/multimessenger

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording issue

2009-01-29 Thread Duncan Webb
markus frei wrote:
 Hi,

 I'm using freevo 1.8.3 on a PC running Linux Mint. When I want to record 
 something from TV, it seems that I first have to watch that channel. If I 
 don't, the recording starts at the given time, but the channel isn't 
 selected, so the recording I get is just snow.

 If after a successful recording another is scheduled on another channel, 
 again the recording starts, but it stays on the last channel that was used or 
 recorded from. So it seems the recording routine doesn't change the channel 
 by itself.

 I'm using TvTime for viewing TV and have all my channels setup there, and 
 freevo uses mencoder (mplayer) for recording. Do I have to setup a channel 
 list for mencoder too, and if so, how?

 Thanx for any help here.


   
Need more information...

Basically the bits of freevo.conf and local_conf.py that deal with the
TV settings.

The most important part is how the channels are set-up.

Duncan

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording issue

2009-01-29 Thread markus frei
'),
   ('sat1.ch', 'Sat1', 'S19'),
   ('super-rtl.de', 'super-rtl', 'S26')]
# As you can see the list takes optional tuples:
# ( 'DAYS', 'START','END')
#
# 1234567 in days means all days.
# 12345 would mean monday to friday.
#
# It will display Fox Kids from 06:00 to 16:59 and TV6 from 17:00 to 03:00.
# 03:00 to 06:00 it won't be displayed at all.
#

# TV_CHANNELS = None

#
# A lambda function to sort the TV_CHANNELS
#
#TV_CHANNELS_COMPARE = lambda a, b: cmp(int(a[2]), int(b[2]))

#
# TV_FREQUENCY_TABLE - This is only used when Freevo changes the channel 
natively.
# This is only the case if you are using V4L2 and any of the following plugins:
# timeshift, ivtv_record, ivtv_basic_tv.
# For the standard frequancy tables see src/tv/freq.py.  To add your own just
# replace tuner_id in the following example with a valid tuner id (ie: '5' or
# 'BBC1') and a frequency in KHz.  You may have as many entries as you like,
# anything here will simply override a corresponding entry in your standard
# frequency table and you can also have entries here that are not present in
# there.

# TV_FREQUENCY_TABLE = {
# 'tuner_id'   :55250,
# }


#
# Program to grab xmltv listings. To get a grabber, you need to download
# xmltv. A possible value for users in the USA is tv_grab_na
# Use the tv_grab helper to grab the listings and cache them. Start
# 'freevo tv_grab --help' for more informations.

# XMLTV_GRABBER = ''
XMLTV_GRABBER = '/usr/bin/tv_grab_ch_search'
#
# If you want to run tv_sort on your listings add the path to tv_sort here.
# tv_sort will make sure all your programs have proper stop times, otherwise
# programs might get cut off at midnight.
#
# XMLTV_SORT = ''
XMLTV_SORT = '/usr/bin/tv_sort'
#
# Number of days the grabber should get
#
# XMLTV_DAYS = 3
XMLTV_DAYS = 14
## ONLY ADJUST THIS IF YOUR GUIDE TIMES ARE INCORRECT ##
#
# GMT offset for XMLTV feeds that don't contain timezone information
# An example of this is the OzTivo feed which has the timestamps
# in the XML pre-adjusted for your timezone
#
# XMLTV_TIMEZONE='+0100'





 Original-Nachricht 
 Datum: Thu, 29 Jan 2009 17:14:02 +0100
 Von: Duncan Webb dun...@freevo.org
 An: freevo-users@lists.sourceforge.net
 Betreff: Re: [Freevo-users] Recording issue

 markus frei wrote:
  Hi,
 
  I'm using freevo 1.8.3 on a PC running Linux Mint. When I want to record
 something from TV, it seems that I first have to watch that channel. If I
 don't, the recording starts at the given time, but the channel isn't
 selected, so the recording I get is just snow.
 
  If after a successful recording another is scheduled on another channel,
 again the recording starts, but it stays on the last channel that was used
 or recorded from. So it seems the recording routine doesn't change the
 channel by itself.
 
  I'm using TvTime for viewing TV and have all my channels setup there,
 and freevo uses mencoder (mplayer) for recording. Do I have to setup a
 channel list for mencoder too, and if so, how?
 
  Thanx for any help here.
 
 

 Need more information...
 
 Basically the bits of freevo.conf and local_conf.py that deal with the
 TV settings.
 
 The most important part is how the channels are set-up.
 
 Duncan
 
 --
 This SF.net email is sponsored by:
 SourcForge Community
 SourceForge wants to tell your story.
 http://p.sf.net/sfu/sf-spreadtheword
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users

-- 
NUR NOCH BIS 31.01.! GMX FreeDSL - Telefonanschluss + DSL 
für nur 16,37 EURO/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K11308T4569a


freevo.conf
Description: Binary data
--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording issue

2009-01-29 Thread Duncan Webb
', 'Fox Kids',  'E8', ('1234567','0600','1659')),
 #('16', 'TV6',   'E8', ('1234567','1700','2359'),
 #  ('1234567','','0300')),
 #('14', 'MTV Europe','E11') ]

 TV_CHANNELS = [('x.leer', 'leer',   'E1'),
  ('C1.sfdrs.ch', 'SF1',   'E5'),
('C2.sfdrs.ch', 'SF2', 'E10'),
('sfi.sfdrs.ch', 'SFi', 'U35'),
('C1.tsr.ch', 'TSR1', 'E7'),
('C2.tsr.ch', 'TSR2', 'S12'),
('C1.rtsi.ch', 'TSI1', 'E8'),
('C2.rtsi.ch', 'TSI2', 'S18'),
('ard.de', 'ARD', 'E9'),
('zdf.de', 'ZDF', 'E11'),
('C1.orf.at', 'ORF1', 'S5'),
('C2.orf.at', 'ORF2', 'U34'),
('C3.br-online.de', 'BR', 'U29'),
('swr.de', 'SWR/BW', 'S14'),
('arte.de', 'Arte', 'U21'),
('C3sat.de', '3Sat', 'S33'),
('euronews.net', 'EuroNews', 'S10'),
('eurosport.de', 'EuroSport', 'S17'),
('cnn.com', 'CNN', 'S13'),
('kabel1.de', 'Kabel1', 'S4'),
('rtl.ch', 'RTL', 'E6'),
('rtl2.de', 'RTL-II', 'U22'),
('prosieben.ch', 'Pro-7', 'U27'),
('vox.de', 'Vox', 'U30'),
('C3plus.tv', '3-Plus', 'S15'),
('startv.ch', 'Star-TV', 'S7'),
('toponline.ch', 'Tele-Zueri', 'S9'),
('teletop.ch', 'Tele-Top', 'E12'),
('dsf.com', 'DS:F', 'S16'),
('mtv.co.uk', 'M-Tv', 'SR19'),
('vivatv.ch', 'viva', 'S24'),
('sat1.ch', 'Sat1', 'S19'),
('super-rtl.de', 'super-rtl', 'S26')]
 # As you can see the list takes optional tuples:
 # ( 'DAYS', 'START','END')
 #
 # 1234567 in days means all days.
 # 12345 would mean monday to friday.
 #
 # It will display Fox Kids from 06:00 to 16:59 and TV6 from 17:00 to 
 03:00.
 # 03:00 to 06:00 it won't be displayed at all.
 #

 # TV_CHANNELS = None

 #
 # A lambda function to sort the TV_CHANNELS
 #
 #TV_CHANNELS_COMPARE = lambda a, b: cmp(int(a[2]), int(b[2]))

 #
 # TV_FREQUENCY_TABLE - This is only used when Freevo changes the channel 
 natively.
 # This is only the case if you are using V4L2 and any of the following 
 plugins:
 # timeshift, ivtv_record, ivtv_basic_tv.
 # For the standard frequancy tables see src/tv/freq.py.  To add your own just
 # replace tuner_id in the following example with a valid tuner id (ie: '5' or
 # 'BBC1') and a frequency in KHz.  You may have as many entries as you like,
 # anything here will simply override a corresponding entry in your standard
 # frequency table and you can also have entries here that are not present in
 # there.

 # TV_FREQUENCY_TABLE = {
 # 'tuner_id'   :55250,
 # }


 #
 # Program to grab xmltv listings. To get a grabber, you need to download
 # xmltv. A possible value for users in the USA is tv_grab_na
 # Use the tv_grab helper to grab the listings and cache them. Start
 # 'freevo tv_grab --help' for more informations.

 # XMLTV_GRABBER = ''
 XMLTV_GRABBER = '/usr/bin/tv_grab_ch_search'
 #
 # If you want to run tv_sort on your listings add the path to tv_sort here.
 # tv_sort will make sure all your programs have proper stop times, otherwise
 # programs might get cut off at midnight.
 #
 # XMLTV_SORT = ''
 XMLTV_SORT = '/usr/bin/tv_sort'
 #
 # Number of days the grabber should get
 #
 # XMLTV_DAYS = 3
 XMLTV_DAYS = 14
 ## ONLY ADJUST THIS IF YOUR GUIDE TIMES ARE INCORRECT ##
 #
 # GMT offset for XMLTV feeds that don't contain timezone information
 # An example of this is the OzTivo feed which has the timestamps
 # in the XML pre-adjusted for your timezone
 #
 # XMLTV_TIMEZONE='+0100'





  Original-Nachricht 
   
 Datum: Thu, 29 Jan 2009 17:14:02 +0100
 Von: Duncan Webb dun...@freevo.org
 An: freevo-users@lists.sourceforge.net
 Betreff: Re: [Freevo-users] Recording issue
 

   
 markus frei wrote:
 
 Hi,

 I'm using freevo 1.8.3 on a PC running Linux Mint. When I want to record
   
 something from TV, it seems that I first have to watch that channel. If I
 don't, the recording starts at the given time, but the channel isn't
 selected, so the recording I get is just snow.
 
 If after a successful recording another is scheduled on another channel,
   
 again the recording starts, but it stays on the last channel that was used
 or recorded from. So it seems the recording routine doesn't change the
 channel by itself.
 
 I'm using TvTime for viewing TV and have all my channels setup there,
   
 and freevo uses mencoder (mplayer) for recording. Do I have to setup a
 channel list for mencoder too, and if so, how?
 
 Thanx for any help here.


   
   
 Need more information...

 Basically the bits of freevo.conf and local_conf.py that deal with the
 TV settings

Re: [Freevo-users] Recording not starting and problem with channel management

2009-01-19 Thread markus frei
OK, I didn't get anywhere, so I tried this on another PC with a similar config. 
Again I used the mint repositories to install freevo 1.8.1 through synaptic and 
had similar porblems. I then used standard channels and not frequencies, again 
similar problems. Then I uninstalled freevo via synaptic and instead installed 
the freevo source. With that I got it working. Is there something broken with 
freevo and mint6 from the mint repositories?

 Original-Nachricht 
 Datum: Thu, 15 Jan 2009 09:58:48 +
 Von: John Molohan john.molo...@gcd.ie
 An: freevo-users@lists.sourceforge.net
 CC: freevo-us...@list.sourceforge.net
 Betreff: Re: [Freevo-users] Recording not starting and problem with channel 
 management

 markus frei wrote:
  I have at least 2 issues with freevo 1.8.1 (installed in mint 6 from
 repositories and using tvtime with a pinnaclesys tv pro card):
 
  1).  Tvtime itself works great, and I'm using frequencies to tune the
 channels, as that gives me better quality and I don't have to finetune. When
 freevo adds it's info to the tvtime stationlist.xml file, it also adds US
 Cable to the band identifier. This makes it impossible to actually tune in
 to the channel. When I then edit the stationlist.xml file and change US
 Cable to Custom, then restart freevo, it works. The problem seems to be
 that after a PC restart freevo again puts the US Cable into the file. Does
 anyone know where I can change that behavior?

 It's a bug. I patched it a long time ago when I was using tvtime but 
 never submitted it and now it's long gone (I'm using ivtv). It wasn't 
 difficult to patch so if you have the time and can submit a patch that 
 would be great. From what I remember I changed it so that when using 
 frequencies I had Custom set as the country in freevo.conf then patched 
 tvtime.py so that it in turn set Custom in it's xml file instead of US 
 Cable when it saw that. I could be wrong though it was around 3 years ago.
  2).  I can't get any recording from TV to start. I do get a file with
 the scheduled recording info, but no recording itself. I tried the
 instructions on the following Link where there is a bash script that is run 
 to start
 mencoder, http://freevo.sr-club.de/ and I also tried the freevo builtin
 things by just uncommenting the mencoder parts in my local_conf.py file (the
 user's file) and no recording started. If I do everything from the terminal
 it works, but as I'm not a scripter I don't know how to get the correct
 info from freevo to go into the bash script. Can someone help me here?
 
  Thanks.

 We'll need some more info - the relevant settings from your config and 
 excerpts from main.log and recordserver.log.
 
 John
 
 --
 This SF.net email is sponsored by:
 SourcForge Community
 SourceForge wants to tell your story.
 http://p.sf.net/sfu/sf-spreadtheword
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users

-- 
Sensationsangebot verlängert: GMX FreeDSL - Telefonanschluss + DSL 
für nur 16,37 Euro/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K1308T4569a

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording not starting and problem with channel management

2009-01-15 Thread markus frei
I have at least 2 issues with freevo 1.8.1 (installed in mint 6 from 
repositories and using tvtime with a pinnaclesys tv pro card):

1).  Tvtime itself works great, and I'm using frequencies to tune the channels, 
as that gives me better quality and I don't have to finetune. When freevo adds 
it's info to the tvtime stationlist.xml file, it also adds US Cable to the 
band identifier. This makes it impossible to actually tune in to the channel. 
When I then edit the stationlist.xml file and change US Cable to Custom, 
then restart freevo, it works. The problem seems to be that after a PC restart 
freevo again puts the US Cable into the file. Does anyone know where I can 
change that behavior?

2).  I can't get any recording from TV to start. I do get a file with the 
scheduled recording info, but no recording itself. I tried the instructions on 
the following Link where there is a bash script that is run to start mencoder, 
http://freevo.sr-club.de/ and I also tried the freevo builtin things by just 
uncommenting the mencoder parts in my local_conf.py file (the user's file) and 
no recording started. If I do everything from the terminal it works, but as I'm 
not a scripter I don't know how to get the correct info from freevo to go into 
the bash script. Can someone help me here?

Thanks.
-- 
Sensationsangebot verlängert: GMX FreeDSL - Telefonanschluss + DSL 
für nur 16,37 Euro/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K1308T4569a

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not starting and problem with channel management

2009-01-15 Thread John Molohan
markus frei wrote:
 I have at least 2 issues with freevo 1.8.1 (installed in mint 6 from 
 repositories and using tvtime with a pinnaclesys tv pro card):

 1).  Tvtime itself works great, and I'm using frequencies to tune the 
 channels, as that gives me better quality and I don't have to finetune. When 
 freevo adds it's info to the tvtime stationlist.xml file, it also adds US 
 Cable to the band identifier. This makes it impossible to actually tune in 
 to the channel. When I then edit the stationlist.xml file and change US 
 Cable to Custom, then restart freevo, it works. The problem seems to be 
 that after a PC restart freevo again puts the US Cable into the file. Does 
 anyone know where I can change that behavior?
   
It's a bug. I patched it a long time ago when I was using tvtime but 
never submitted it and now it's long gone (I'm using ivtv). It wasn't 
difficult to patch so if you have the time and can submit a patch that 
would be great. From what I remember I changed it so that when using 
frequencies I had Custom set as the country in freevo.conf then patched 
tvtime.py so that it in turn set Custom in it's xml file instead of US 
Cable when it saw that. I could be wrong though it was around 3 years ago.
 2).  I can't get any recording from TV to start. I do get a file with the 
 scheduled recording info, but no recording itself. I tried the instructions 
 on the following Link where there is a bash script that is run to start 
 mencoder, http://freevo.sr-club.de/ and I also tried the freevo builtin 
 things by just uncommenting the mencoder parts in my local_conf.py file (the 
 user's file) and no recording started. If I do everything from the terminal 
 it works, but as I'm not a scripter I don't know how to get the correct info 
 from freevo to go into the bash script. Can someone help me here?

 Thanks.
   
We'll need some more info - the relevant settings from your config and 
excerpts from main.log and recordserver.log.

John

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not starting and problem with channel management

2009-01-15 Thread Elizabeth Dodd
On Thu, 15 Jan 2009, markus frei wrote:
 When freevo adds it's info to the tvtime stationlist.xml file, it also adds
 US Cable to the band identifier. This makes it impossible to actually
 tune in to the channel. When I then edit the stationlist.xml file and
 change US Cable to Custom, then restart freevo, it works. The problem
 seems to be that after a PC restart freevo again puts the US Cable into
 the file. Does anyone know where I can change that behavior?

My change was less sophisticated than the other respondent, but I fixed the 
directory containing stationlist.xml to be read only.
It may have been /home/user/.tvtime
Trying to make stationlist.xml readonly didn't do the trick.



-- 
So little time, so little to do.
-- Oscar Levant

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not starting and problem with channel management

2009-01-15 Thread Elizabeth Dodd
On Thu, 15 Jan 2009, markus frei wrote:
 2).  I can't get any recording from TV to start. I do get a file with the
 scheduled recording info, but no recording itself. I tried the instructions
 on the following Link where there is a bash script that is run to start
 mencoder, http://freevo.sr-club.de/ and I also tried the freevo builtin
 things by just uncommenting the mencoder parts in my local_conf.py file
 (the user's file) and no recording started. If I do everything from the
 terminal it works, but as I'm not a scripter I don't know how to get the
 correct info from freevo to go into the bash script. Can someone help me
 here?
could you get appropriate ideas from this page
http://doc.freevo.org/MultiRecordingCard
for creating a bash script?
There isn't a sample for your card but you should be able to work it out if 
you can do command line recording


-- 
Seems a computer engineer, a systems analyst, and a programmer were
driving down a mountain when the brakes gave out.  They screamed down the
mountain, gaining speed, but finally managed to grind to a halt, more by
luck than anything else, just inches from a thousand foot drop to jagged
rocks.  They all got out of the car:
The computer engineer said, I think I can fix it.
The systems analyst said, No, no, I think we should take it
into town and have a specialist look at it.
The programmer said, OK, but first I think we should get back
in and see if it does it again.

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not starting and problem with channel management

2009-01-15 Thread markus frei
I've changed the tvtime.py file to just return Custom instead of US Cable. 
This seems to work for me now, but I guess it isn't the patch you had in mind. 
I'll probably also have to repeat the edit when I get system updates.


 Original-Nachricht 
 Datum: Thu, 15 Jan 2009 09:58:48 +
 Von: John Molohan john.molo...@gcd.ie
 An: freevo-users@lists.sourceforge.net
 CC: freevo-us...@list.sourceforge.net
 Betreff: Re: [Freevo-users] Recording not starting and problem with channel 
 management

 markus frei wrote:
  I have at least 2 issues with freevo 1.8.1 (installed in mint 6 from
 repositories and using tvtime with a pinnaclesys tv pro card):
 
  1).  Tvtime itself works great, and I'm using frequencies to tune the
 channels, as that gives me better quality and I don't have to finetune. When
 freevo adds it's info to the tvtime stationlist.xml file, it also adds US
 Cable to the band identifier. This makes it impossible to actually tune in
 to the channel. When I then edit the stationlist.xml file and change US
 Cable to Custom, then restart freevo, it works. The problem seems to be
 that after a PC restart freevo again puts the US Cable into the file. Does
 anyone know where I can change that behavior?

 It's a bug. I patched it a long time ago when I was using tvtime but 
 never submitted it and now it's long gone (I'm using ivtv). It wasn't 
 difficult to patch so if you have the time and can submit a patch that 
 would be great. From what I remember I changed it so that when using 
 frequencies I had Custom set as the country in freevo.conf then patched 
 tvtime.py so that it in turn set Custom in it's xml file instead of US 
 Cable when it saw that. I could be wrong though it was around 3 years ago.
  2).  I can't get any recording from TV to start. I do get a file with
 the scheduled recording info, but no recording itself. I tried the
 instructions on the following Link where there is a bash script that is run 
 to start
 mencoder, http://freevo.sr-club.de/ and I also tried the freevo builtin
 things by just uncommenting the mencoder parts in my local_conf.py file (the
 user's file) and no recording started. If I do everything from the terminal
 it works, but as I'm not a scripter I don't know how to get the correct
 info from freevo to go into the bash script. Can someone help me here?
 
  Thanks.

 We'll need some more info - the relevant settings from your config and 
 excerpts from main.log and recordserver.log.
 
 John
 
 --
 This SF.net email is sponsored by:
 SourcForge Community
 SourceForge wants to tell your story.
 http://p.sf.net/sfu/sf-spreadtheword
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users

-- 
Pt! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: 
http://www.gmx.net/de/go/multimessenger

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not starting and problem with channel management

2009-01-15 Thread markus frei
 15 12:36:03 2009


And this is the recording log:


Freevo 1.8.1 r10783 started at Thu Jan 15 12:06:52 2009

2009-01-15 12:06:53,056 INFO config.py (534): LOGDIR: /var/log 
/home/freevo/log
2009-01-15 12:06:53,059 INFO config.py (535): STATICDIR: /var/lib 
/home/freevo/static
2009-01-15 12:06:53,060 INFO config.py (536): CACHEDIR: /var/cache 
/home/freevo/cache
2009-01-15 12:06:53,061 INFO config.py (555): Loading freevo configuration 
file /etc/freevo/freevo.conf
2009-01-15 12:06:53,065 INFO config.py (591): Loading debconf configuration 
file /etc/freevo/debconf.py
2009-01-15 12:06:54,618 INFO new process watcher instance
2009-01-15 12:07:02,231 INFO config.py (646): Loading debconf configuration 
file /etc/freevo/debconf.py
2009-01-15 12:07:02,233 INFO config.py (656): Loading local configuration 
file /etc/freevo/local_conf.py

Warning: freevo_config.py was changed, please check local_conf.py

You are using version 5.23, changes since then:
Version 5.24:
 Added POLL_TIME to allow custom poll rates to be set, default 0.01 seconds
 


2009-01-15 12:07:02,482 INFO config.py (1054): overlaydir: 
/home/freevo/cache/vfs
2009-01-15 12:07:23,645 INFO recordserver.py (109): PLUGIN_RECORD: 28
2009-01-15 12:07:23,868 INFO generic_record.py (65): ACTIVATING GENERIC 
RECORD PLUGIN
2009-01-15 12:07:23,897 WARNING  record_types.py (198): [Errno 2] No such file 
or directory: '/home/freevo/static/favorites.pickle'
2009-01-15 12:07:53,006 INFO recordserver.py (271): Got ScheduledRecordings 
(version 3).
2009-01-15 12:07:53,019 INFO create thread notifier pipe
2009-01-15 12:36:41,092 INFO recordserver.py (183): Overlap:
Thu Jan 01 01:00-04:14 (01:00)* C1.sfdrs.ch This channel has no data loaded
Thu Jan 15 12:30-13:30 (12:30)* C3.br-online.de Planet Wissen
2009-01-15 12:36:41,110 INFO recordserver.py (913): 
overlap_duration=915464647
2009-01-15 12:36:41,113 INFO recordserver.py (927): CALLED RECORD STOP 1: 
Thu Jan 01 01:00-04:14 (01:00)* C1.sfdrs.ch This channel has no data loaded
2009-01-15 12:36:41,114 WARNING  recordserver.py (945): delaying: Thu Jan 15 
12:30-13:30 (12:30)* C3.br-online.de Planet Wissen
2009-01-15 12:36:45,002 INFO recordserver.py (947): going to record: Thu 
Jan 15 12:30-13:30 (12:30)* C3.br-online.de Planet Wissen
2009-01-15 12:36:45,004 INFO recordserver.py (965): start recording: Thu 
Jan 15 12:30-13:30 (12:30)  C3.br-online.de Planet Wissen
2009-01-15 12:36:45,006 WARNING  channels.py (181): Unable to get channel list 
for europe-west.
2009-01-15 12:36:45,523 INFO recordserver.py (1332): RECORD_START Thu Jan 
15 12:30-13:30 (12:30)  C3.br-online.de Planet Wissen
2009-01-15 12:36:46,072 INFO recordserver.py (1340): RECORD_STOP Thu Jan 15 
12:30-13:30 (12:30)  C3.br-online.de Planet Wissen
2009-01-15 12:36:48,347 WARNING  videothumb.py (115): no imagefile found for 
/home/freevo/recordings/01-15_12_30_Planet_Wissen.avi


 Original-Nachricht 
 Datum: Thu, 15 Jan 2009 09:58:48 +
 Von: John Molohan john.molo...@gcd.ie
 An: freevo-users@lists.sourceforge.net
 CC: freevo-us...@list.sourceforge.net
 Betreff: Re: [Freevo-users] Recording not starting and problem with channel 
 management

 markus frei wrote:
  I have at least 2 issues with freevo 1.8.1 (installed in mint 6 from
 repositories and using tvtime with a pinnaclesys tv pro card):
 
  1).  Tvtime itself works great, and I'm using frequencies to tune the
 channels, as that gives me better quality and I don't have to finetune. When
 freevo adds it's info to the tvtime stationlist.xml file, it also adds US
 Cable to the band identifier. This makes it impossible to actually tune in
 to the channel. When I then edit the stationlist.xml file and change US
 Cable to Custom, then restart freevo, it works. The problem seems to be
 that after a PC restart freevo again puts the US Cable into the file. Does
 anyone know where I can change that behavior?

 It's a bug. I patched it a long time ago when I was using tvtime but 
 never submitted it and now it's long gone (I'm using ivtv). It wasn't 
 difficult to patch so if you have the time and can submit a patch that 
 would be great. From what I remember I changed it so that when using 
 frequencies I had Custom set as the country in freevo.conf then patched 
 tvtime.py so that it in turn set Custom in it's xml file instead of US 
 Cable when it saw that. I could be wrong though it was around 3 years ago.
  2).  I can't get any recording from TV to start. I do get a file with
 the scheduled recording info, but no recording itself. I tried the
 instructions on the following Link where there is a bash script that is run 
 to start
 mencoder, http://freevo.sr

Re: [Freevo-users] Recording live tv

2008-06-22 Thread John Molohan
Duncan Webb wrote:
 John Molohan wrote:
   
 David Frager wrote:
 
 Thanks John

 I did not see any configuration for this behavior...I will dig around a
 little more.  I don't recall seeing this issue when I first started using in
 back in March..maybe something has changed recently 
   
   
 It looks like Richard did a pretty good job with the doc for the plugin, 
 actually he's probably set the standard for others to follow. Here's the 
 output from running

 freevo plugins -i tv.ivtv_xine_tv

 Name: tv.ivtv_xine_tv
 Type: Plugin
 File: /usr/lib/python2.5/site-packages/freevo/tv/plugins/ivtv_xine_tv.py

 Description:
 
 Plugin to watch live tv with xine. The plugin supports:

 - Live TV: pause  continue, seek forward  backward
 - Multiple digit channel selection: '1', '12, '123'
 - Channel stack: jump to previously viewed channel
 - Automatic jump: undo time shift on channel change
 - OSD messges: volume and channel info
 - Progressive seek: automatically increase seek speed
 - Video groups: enable svideo and composite inputs
 - Stop confirmation: press STOP twice to return to menu
 - Record stream: press RECORD to record the current show

 =
 Requirements:
 =

 The following software must be installed:

 - ivtv driver (for e.g. Haupage x50 series TV card)
   version ivtv: = 0.10.6

 - xine media player (built with xvmc / xxmc if available)
   version xine-lib: = 1.1.9
   version xine-ui: = 0.99.6

 =
 Configuration:
 =

 The following items should be configured in local_conf.py:

 Freevo General Config Items
 - TV_CHANNELS
 - MIXER_VOLUME_TV_IN
 - MIXER_MAJOR_CTRL
 - XINE_COMMAND
 - XINE_ARGS_DEF

 Plugin Specific Config Items
 - XINE_TV_VO_DEV
 - XINE_TV_AO_DEV
 - XINE_TV_TIMESHIFT_FILEMASK
 - XINE_TV_CONFIRM_STOP
 - XINE_TV_PROGRESSIVE_SEEK
 - XINE_TV_PROGRESSIVE_SEEK_THRESHOLD
 - XINE_TV_PROGRESSIVE_SEEK_INCREMENT
 - XINE_TV_INPUT_REAL_CHANNELS
 - XINE_TV_LIVE_RECORD
 - XINE_TV_INDENT_OSD

 =
 Plugin Specific Events
 =
 The following additional events can be defined:

 | # go back to the previous viewed channel
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event('POPCHANNEL')
 |
 | # show program info
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event('TOGGLE_OSD')
 |
 | # normal seek forward/backward by 1 second
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event(SEEK, arg=-1)
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event(SEEK, arg=+1)

 =
 Timeshift Filemask
 =
 The LIVE TV functionality requires a large buffer on disk
 where the TV stream is being recorded while watching.

 | # This specifies the path and filemask that xine uses for
 | # timeshifting. File can get quite big (several gigabytes)
 | XINE_TV_TIMESHIFT_FILEMASK = '/local/tmp/xine-buf-!/local/saved/!20'

 Note: the format is 'a!b!c', where:
 a = prefix (with path) for temporary file buffers
 b = prefix (with path) for saved recordings
 c = number of file buffers (200MB each) to use

 The path for saved recordings must be on the same partition as
 the path for temporary file buffers. If the save path is empty
 then the saved files will be stored in the path for temporary
 files.

 =
 STOP Confirmation
 =
 The STOP event will cancel the history of the TV stream. To
 prevent that this happens by accident, a confirmation can be
 requested.

 | # Stop confirmation: press STOP twice to return to menu
 | XINE_TV_CONFIRM_STOP = True

 =
 Progressive Seek
 =
 If progressive is enabled, then seeking in the TV stream
 will speed up by 'increment' seconds every 'threshold'
 seconds. Note, set the starting seek event to 1 second to
 allow fine control.

 | # This enables the progressive seek feature. The speed
 | # for seeking (fast forward and rewind) is increased
 | # automatically. The speed is increased every [THRESHOLD]
 | # seconds in steps of [INCREMENT] secnds.
 | XINE_TV_PROGRESSIVE_SEEK = True
 | XINE_TV_PROGRESSIVE_SEEK_THRESHOLD = 2
 | XINE_TV_PROGRESSIVE_SEEK_INCREMENT = 5

 =
 Live Record
 =
 If live record is enabled, then the RECORD button will cause the
 

Re: [Freevo-users] Recording live tv

2008-06-09 Thread Duncan Webb
John Molohan wrote:
 David Frager wrote:
 Thanks John

 I did not see any configuration for this behavior...I will dig around a
 little more.  I don't recall seeing this issue when I first started using in
 back in March..maybe something has changed recently 
   
 It looks like Richard did a pretty good job with the doc for the plugin, 
 actually he's probably set the standard for others to follow. Here's the 
 output from running
 
 freevo plugins -i tv.ivtv_xine_tv
 
 Name: tv.ivtv_xine_tv
 Type: Plugin
 File: /usr/lib/python2.5/site-packages/freevo/tv/plugins/ivtv_xine_tv.py
 
 Description:
 
 Plugin to watch live tv with xine. The plugin supports:
 
 - Live TV: pause  continue, seek forward  backward
 - Multiple digit channel selection: '1', '12, '123'
 - Channel stack: jump to previously viewed channel
 - Automatic jump: undo time shift on channel change
 - OSD messges: volume and channel info
 - Progressive seek: automatically increase seek speed
 - Video groups: enable svideo and composite inputs
 - Stop confirmation: press STOP twice to return to menu
 - Record stream: press RECORD to record the current show
 
 =
 Requirements:
 =
 
 The following software must be installed:
 
 - ivtv driver (for e.g. Haupage x50 series TV card)
   version ivtv: = 0.10.6
 
 - xine media player (built with xvmc / xxmc if available)
   version xine-lib: = 1.1.9
   version xine-ui: = 0.99.6
 
 =
 Configuration:
 =
 
 The following items should be configured in local_conf.py:
 
 Freevo General Config Items
 - TV_CHANNELS
 - MIXER_VOLUME_TV_IN
 - MIXER_MAJOR_CTRL
 - XINE_COMMAND
 - XINE_ARGS_DEF
 
 Plugin Specific Config Items
 - XINE_TV_VO_DEV
 - XINE_TV_AO_DEV
 - XINE_TV_TIMESHIFT_FILEMASK
 - XINE_TV_CONFIRM_STOP
 - XINE_TV_PROGRESSIVE_SEEK
 - XINE_TV_PROGRESSIVE_SEEK_THRESHOLD
 - XINE_TV_PROGRESSIVE_SEEK_INCREMENT
 - XINE_TV_INPUT_REAL_CHANNELS
 - XINE_TV_LIVE_RECORD
 - XINE_TV_INDENT_OSD
 
 =
 Plugin Specific Events
 =
 The following additional events can be defined:
 
 | # go back to the previous viewed channel
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event('POPCHANNEL')
 |
 | # show program info
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event('TOGGLE_OSD')
 |
 | # normal seek forward/backward by 1 second
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event(SEEK, arg=-1)
 | EVENTS['tv']['SOME_LIRC_CMD'] = Event(SEEK, arg=+1)
 
 =
 Timeshift Filemask
 =
 The LIVE TV functionality requires a large buffer on disk
 where the TV stream is being recorded while watching.
 
 | # This specifies the path and filemask that xine uses for
 | # timeshifting. File can get quite big (several gigabytes)
 | XINE_TV_TIMESHIFT_FILEMASK = '/local/tmp/xine-buf-!/local/saved/!20'
 
 Note: the format is 'a!b!c', where:
 a = prefix (with path) for temporary file buffers
 b = prefix (with path) for saved recordings
 c = number of file buffers (200MB each) to use
 
 The path for saved recordings must be on the same partition as
 the path for temporary file buffers. If the save path is empty
 then the saved files will be stored in the path for temporary
 files.
 
 =
 STOP Confirmation
 =
 The STOP event will cancel the history of the TV stream. To
 prevent that this happens by accident, a confirmation can be
 requested.
 
 | # Stop confirmation: press STOP twice to return to menu
 | XINE_TV_CONFIRM_STOP = True
 
 =
 Progressive Seek
 =
 If progressive is enabled, then seeking in the TV stream
 will speed up by 'increment' seconds every 'threshold'
 seconds. Note, set the starting seek event to 1 second to
 allow fine control.
 
 | # This enables the progressive seek feature. The speed
 | # for seeking (fast forward and rewind) is increased
 | # automatically. The speed is increased every [THRESHOLD]
 | # seconds in steps of [INCREMENT] secnds.
 | XINE_TV_PROGRESSIVE_SEEK = True
 | XINE_TV_PROGRESSIVE_SEEK_THRESHOLD = 2
 | XINE_TV_PROGRESSIVE_SEEK_INCREMENT = 5
 
 =
 Live Record
 =
 If live record is enabled, then the RECORD button will cause the
 current show to 

Re: [Freevo-users] Recording live tv

2008-06-06 Thread David Frager
Thanks John

I did not see any configuration for this behavior...I will dig around a
little more.  I don't recall seeing this issue when I first started using in
back in March..maybe something has changed recently 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John
Molohan
Sent: Thursday, June 05, 2008 3:58 PM
To: freevo-users@lists.sourceforge.net
Subject: Re: [Freevo-users] Recording live tv

David Frager wrote:
 In my configuration, I am running:
Freevo 1.8.2-svn r10784
xine 0.99.6CVS


 While watching TV, I press the F6 key to begin recording a show.  What 
 I recently noticed is that the recording does not start when I press 
 F6, the recording started when I first began watching the show, so in 
 some cases, I have a lot of up-front video that I do not want.

 I am not sure if this is a recent change or not, but I was expecting 
 to see a file added to my TV_RECORD_DIR directory, containing a video 
 from the time I pressed F6.  Instead, I see what appears to be the 
 timeshift file located in the XINE_TV_TIMESHIFT_FILEMASK location.

 Any thoughts on if this is a bug or a configuration issue?
   
This is a new feature that was introduced sometime within the last couple of
releases. Check the changelog on the wiki which will have a link to the
original tracker item which might have more explaination and possibly
configuration settings for changing the behaviour.

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://sourceforge.net/services/buy/index.php
___
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://sourceforge.net/services/buy/index.php
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording live tv

2008-06-05 Thread John Molohan
David Frager wrote:
 In my configuration, I am running:
Freevo 1.8.2-svn r10784
xine 0.99.6CVS


 While watching TV, I press the F6 key to begin recording a show.  What I
 recently noticed is that the recording does not start when I press F6, the
 recording started when I first began watching the show, so in some cases, I
 have a lot of up-front video that I do not want. 

 I am not sure if this is a recent change or not, but I was expecting to see
 a file added to my TV_RECORD_DIR directory, containing a video from the time
 I pressed F6.  Instead, I see what appears to be the timeshift file
 located in the XINE_TV_TIMESHIFT_FILEMASK location.

 Any thoughts on if this is a bug or a configuration issue?
   
This is a new feature that was introduced sometime within the last 
couple of releases. Check the changelog on the wiki which will have a 
link to the original tracker item which might have more explaination and 
possibly configuration settings for changing the behaviour.

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://sourceforge.net/services/buy/index.php
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording live tv

2008-05-29 Thread David Frager
In my configuration, I am running:
   Freevo 1.8.2-svn r10784
   xine 0.99.6CVS


While watching TV, I press the F6 key to begin recording a show.  What I
recently noticed is that the recording does not start when I press F6, the
recording started when I first began watching the show, so in some cases, I
have a lot of up-front video that I do not want. 

I am not sure if this is a recent change or not, but I was expecting to see
a file added to my TV_RECORD_DIR directory, containing a video from the time
I pressed F6.  Instead, I see what appears to be the timeshift file
located in the XINE_TV_TIMESHIFT_FILEMASK location.

Any thoughts on if this is a bug or a configuration issue?


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording/watching priority

2008-03-02 Thread Andrew Jeffery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hey all,

Is there any way to make recording a TV show a priority over watching?
So say if someone is watching TV before a recording is scheduled freevo
will stop the current session and allow the recordserver to use the
tuner? Unfortunately I only have the one tuner so it'd be great if this
is possible :)

Andrew
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHymCn/5R+ugbygqQRAoiVAJ9ceI3espkgbjQH7U+TSV1W79kfyQCeJSpf
0LBZK+ghprg+FE2qXvvnznI=
=P/1e
-END PGP SIGNATURE-

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording/watching priority

2008-03-02 Thread Elizabeth Dodd
On Sun, 2 Mar 2008, Andrew Jeffery wrote:
 Hey all,

 Is there any way to make recording a TV show a priority over watching?
 So say if someone is watching TV before a recording is scheduled freevo
 will stop the current session and allow the recordserver to use the
 tuner? Unfortunately I only have the one tuner so it'd be great if this
 is possible :)

 Andrew


I'm running a 1.7.3 (I think, not the latest 1.7, anyway) and that is the 
default behaviour.
You get a couple of warnings on the screen that a recording will be made, and 
the tv picture gets cut off.
Try it and see.



-- 
The rich get rich, and the poor get poorer.
The haves get more, the have-nots die.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording/watching priority

2008-03-02 Thread John Molohan
Elizabeth Dodd wrote:
 On Sun, 2 Mar 2008, Andrew Jeffery wrote:
   
 Hey all,

 Is there any way to make recording a TV show a priority over watching?
 So say if someone is watching TV before a recording is scheduled freevo
 will stop the current session and allow the recordserver to use the
 tuner? Unfortunately I only have the one tuner so it'd be great if this
 is possible :)

 Andrew

 

 I'm running a 1.7.3 (I think, not the latest 1.7, anyway) and that is the 
 default behaviour.
 You get a couple of warnings on the screen that a recording will be made, and 
 the tv picture gets cut off.
 Try it and see.

   
It's the upsoon plugin that does it, not sure if it's enabled by default 
but it should do what you want.

John

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording/watching priority

2008-03-02 Thread Andrew Jeffery
John Molohan wrote:
 Elizabeth Dodd wrote:
 On Sun, 2 Mar 2008, Andrew Jeffery wrote:
   
 Hey all,

 Is there any way to make recording a TV show a priority over watching?
 So say if someone is watching TV before a recording is scheduled freevo
 will stop the current session and allow the recordserver to use the
 tuner? Unfortunately I only have the one tuner so it'd be great if this
 is possible :)

 Andrew

 
 I'm running a 1.7.3 (I think, not the latest 1.7, anyway) and that is the 
 default behaviour.
 You get a couple of warnings on the screen that a recording will be made, 
 and 
 the tv picture gets cut off.
 Try it and see.

   
 It's the upsoon plugin that does it, not sure if it's enabled by default 
 but it should do what you want.
 
 John

Cheers - I'll give it a shot :)

Andrew
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] recording an X session

2007-03-26 Thread Alberto Hernando
Hi.

Recently, I've seen somewhere a software to record an X session. I know about 
xvidcap, but it eats a lot of cpu. The software I saw used some layer of the 
X protocol, and it sounded to be quite good. I thought that I had seen it 
here, but I can't find it. But I've seen the video of freevo2, and I was 
wondering how it was made. Perhaps using the program I'm talking about? If 
not, how?

Thanks

Alberto

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording an X session

2007-03-26 Thread Michel Hoogervorst

Something like this?:
http://recordmydesktop.sourceforge.net/


Michel

2007/3/26, Alberto Hernando [EMAIL PROTECTED]:


Hi.

Recently, I've seen somewhere a software to record an X session. I know
about
xvidcap, but it eats a lot of cpu. The software I saw used some layer of
the
X protocol, and it sounded to be quite good. I thought that I had seen it
here, but I can't find it. But I've seen the video of freevo2, and I was
wondering how it was made. Perhaps using the program I'm talking about? If
not, how?

Thanks

Alberto

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording an X session

2007-03-26 Thread Alberto Hernando
El Monday 26 March 2007 09:46:42 Michel Hoogervorst escribió:
 Something like this?:
 http://recordmydesktop.sourceforge.net/

Right! This is what I was looking for.
Now I just have to test it...

thanks

Alberto

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] recording server, how can this work???

2006-12-04 Thread Paul Sijben
All,

I tried getting the recording server to work, but I get no items in the
menu. OK so I look at the source code for dvdbackup.py. I see this

 if item.type == 'video' and item.mode == 'dvd' and hasattr(item,
'info_type'):
if item.info_type == track: #and item.media and
item.media.devicename:
#for dvd on disc
self.dvdsource = item.filename
self.title = int(split(item.url)[-1])
   
if hasattr(item, 'media') and hasattr(item.media,
'devicename'):
#we have a real dvd disc
self.dvdsource = item.media.devicename
self.title = int(item.url[6:])

self.item = item
return [ (self.encoding_profile_menu, _('Backup this dvd
title...')) ]
return []

Now there must be at least something wrong with this indentation because
a real DVD does not have a info_type.
So I hacked the code around a little to make sure that we got to the bit
that has the comment on the real dvd disc in it. Next issue: the url ==
dvd:// according to the log, which int should be put here in self.title?

At this point I am stumped. How can this code work? Am I missing something?
I have looked at both the plugin for 1.5.x as well as the version in
1.7.0rc1.
Input is greatly appreciated.

Paul

-- 
Paul Sijben mailto:[EMAIL PROTECTED]
Amersfoort, NL  http://www.sijben.net
tel:+31 334557522   fax:+31 33 4557523


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording server, how can this work???

2006-12-04 Thread Duncan Webb
Paul Sijben wrote:
 Duncan Webb wrote:

 Now there must be at least something wrong with this indentation because
 a real DVD does not have a info_type.

 You're not backing up a DVD but a title and titles have info_type.
   
 If I try and backup a DVD I come by the same code, and it is completely
 bypassed (because a DVD has no info_type) so I see no entry in the menu
 and can not backup. That is what I see happening. Is that correct?

You need to go to the sub-menu (Enter) of a DVD and then select a title
and then the sub-menu of a title, you will find it there.

The plug-in has a bad name is should really be called backupdvdtrack.

Duncan


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording server, how can this work???

2006-12-04 Thread Paul Sijben
Ah, OK will undo my changes and try again!

Duncan Webb wrote:
 Paul Sijben wrote:
   
 Duncan Webb wrote:
 
 Now there must be at least something wrong with this indentation because
 a real DVD does not have a info_type.
 
 You're not backing up a DVD but a title and titles have info_type.
   
   
 If I try and backup a DVD I come by the same code, and it is completely
 bypassed (because a DVD has no info_type) so I see no entry in the menu
 and can not backup. That is what I see happening. Is that correct?
 

 You need to go to the sub-menu (Enter) of a DVD and then select a title
 and then the sub-menu of a title, you will find it there.

 The plug-in has a bad name is should really be called backupdvdtrack.

 Duncan


 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users
   

-- 
Paul Sijben mailto:[EMAIL PROTECTED]
Amersfoort, NL  http://www.sijben.net
tel:+31 334557522   fax:+31 33 4557523

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording like high speed ??

2006-08-25 Thread Ignacio -
WTF! :P, I've done a record and has been recorded in dobule speed, i
think it plays in 1 second, 2 seconds of video and audio, What
happened?
here is my vcr conf:

VCR_CMD = (CONF.mencoder + ' ' +
   'tv:// ' +  # New mplayer requires this.
   '-tv driver=%s:input=%d' % (TV_DRIVER, TV_INPUT) +
   ':norm=%s' % CONF.tv +
   ':channel=%(channel)s' +# Filled in by Freevo
   ':chanlist=%s' % CONF.chanlist +
   ':width=%d:height=%d' % (TV_REC_SIZE[0], TV_REC_SIZE[1]) +
   ':outfmt=%s' % TV_REC_OUTFMT +
   ':device=%s' % TV_DEVICE +
   VCR_AUDIO + # set above
   ' -ovc lavc -lavcopts ' +   # Mencoder lavcodec video codec
   'vcodec=mpeg4' +# lavcodec mpeg-4
   ':vbitrate=4000:' + # Change lower/higher, bitrate
   'keyint=30 ' +  # Keyframe every 10 secs, change?
   '-oac mp3lame -lameopts ' + # Use Lame for MP3
encoding, must be enabled in mencoder!
   'br=128:cbr:mode=3 ' +  # MP3 const. bitrate, 128 kbit/s
   '-ffourcc divx ' +  # Force 'divx' ident, better compat.
   '-vf pp=lb ' +
   '-endpos %(seconds)s ' +# only mencoder uses this
so do it here.
   '-o %(filename)s') # Filled in by Freevo

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording like high speed ??

2006-08-25 Thread edodd
On Saturday 26 August 2006 04:08, Ignacio - wrote:
 WTF! :P, I've done a record and has been recorded in dobule speed, i
 think it plays in 1 second, 2 seconds of video and audio, What
 happened?
 here is my vcr conf:
You can achieve this effect if you start to record when the tv playing program 
is already running - well that's how I got that effect.
I think I had started tvtime outside of freevo on those occasions.
I tried putting kill commands in front of the mencoder command but that method 
didn't stop the sound from the tv playing with more disastrous results.

-- 
Loud burping while walking around the airport is prohibited in Halstead, 
Kansas.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording sound via cd (winfast expert)

2006-08-24 Thread Amadeus Stevenson
I think I'm getting closer; this is the script I'm using to record via 
the command line:

By enabling the cd mixer playback shouldn't I be hearing the tv program 
when this command is executed?

So far I can only hear a hiss that switches on/off when the tv card is 
accessed.

#!/bin/sh

mencoder='/usr/bin/mencoder'
channel=$1

width=320
height=240

adevice=/dev/alsa

output=/home/tv/test.avi

# set cd volume to 80% and mute playback

amixer cset numid=21 80%
#amixer cset numid=20 off
amixer cset numid=20 on   # so we can test if it's working

# capture source CD

amixer cset numid=26 1
amixer cset numid=27 on

$mencoder tv:// -tv 
driver=v4l:input=0:norm=pal:channel=$channel:width=$width:height=$height:outfmt=yuy2:device=/dev/video0:adevice=$adevice:audiorate=32000
 
buffersize=64 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=5000:keyint=30 
-oac mp3lame -lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 409 -o 
$output

# unmute playback

amixer cset numid=20 on

# capture source CD off

amixer cset numid=27 off


[EMAIL PROTECTED]:~$ amixer info
Card default 'IXP'/'ATI IXP rev 0 with AD1888 at 0xfe80, irq 209'
  Mixer name: 'Analog Devices AD1888'
  Components: 'AC97a:41445368'
  Controls  : 43
  Simple ctrls  : 29

The TV sound ouput is plugged into the CD in socket on the motherboard.

I am using the right channel, because if I watch tv in tvtime and run 
amixer cset numid=20 off then the sound is cut off. So it seems that the 
sound isn't getting output from the tv card at all when using mencoder.

:(

Amadeus

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Conficts

2005-11-25 Thread Scott Carr
I have been using freevo for the last couple of days, trying things 
out.  I really like the web interface, so far, as well as the fact that 
everything is in Python. 

Now to my question. 

I setup two programs to record, one at 9:00pm and the next at 9:30pm.  
The first one started great, then at 9:30pm the first one was stopped, 
and the next started recording, cutting off the first.


What I was expecting to see happen was the second show would be set to a 
conflict state, and would look through the tv guide to find the next 
showing, and schedule that to record.


Is there any way to set priority, and set conflict handling?

Thanks

--
Scott Carr
OpenOffice.org
Documentation Maintainer
http://documentation.openoffice.org



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording tv playback

2005-11-08 Thread Alberto Hernando
El Viernes, 4 de Noviembre de 2005 16:12, Alberto Hernando escribió:
 What is happening? Should it always work, or is there some trick
 I'm missing? Perhaps some buffer issue?

Hi. 

I think I've found it out. Just set a low cache for avi files. I have 500 now 
and I have to wait just some seconds before the playback.  But that's the 
key. If the file is smaller than the cache when you start the playback, the 
end of the file will go into the cache. If not, it's fine.

Alberto


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording tv playback

2005-11-08 Thread Alberto Hernando
El Martes, 8 de Noviembre de 2005 13:19, Alberto Hernando escribió:
 I think I've found it out. Just set a low cache for avi files. I have 500
 now and I have to wait just some seconds before the playback.

Hi.

Another thing: now I think that it's better just to use -nocache. There is 
another problem, though. If you start the playback long after the recording 
started, mplayer will need to make an index (option -idx), so it will take 
some time to start. I think that I'll just look for another codec with good 
quality and good search capabilities. mpeg/mpeg2? Disk space is not that 
important.

Alberto


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] recording tv playback

2005-11-04 Thread Alberto Hernando
Hi.

Some time ago, while talking about timeshifting, somebody said that what he 
did was start recording the show he wanted to watch. Then, instead of 
watching it with tv, he saw the recording, having timeshifting this way. I've 
tried it. In some cases, the playback ends as if it wasn't being recorded 
anymore. I mean, you start playback 10 seconds after you start recording, and 
you can see only 10 seconds. Start again, and you have only 20 seconds, and 
so on. Other times, it works, and I can see all the show, as it is being 
recorded. What is happening? Should it always work, or is there some trick 
I'm missing? Perhaps some buffer issue? Does anybody else do this?

thx


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording tv playback

2005-11-04 Thread Stephan Kanthak
Hi,

I think I was the one who mentioned that trick. Yes, it works exactly the
way you describe it. It seems that mplayer doesn't stream the file. Instead
it measures the size upon startup and only plays till he reaches that
position. I never fixed that issue, because my girlfriend and I perfectly came
along with that behaviour. In most cases, recording has already finished when
mplayer stops in the middle and we can start it a second time and seek to
that position to watch the rest. Maybe you can fix it by passing the recording
on stdin to mplayer:

cat *.avi | mplayer -

This way mplayer can't measure the size of the file and has to assume a
stream.

Stephan

On Friday 04 November 2005 16:12, Alberto Hernando wrote:
 Some time ago, while talking about timeshifting, somebody said that what he
 did was start recording the show he wanted to watch. Then, instead of
 watching it with tv, he saw the recording, having timeshifting this way.
 I've tried it. In some cases, the playback ends as if it wasn't being
 recorded anymore. I mean, you start playback 10 seconds after you start
 recording, and you can see only 10 seconds. Start again, and you have only
 20 seconds, and so on. Other times, it works, and I can see all the show,
 as it is being recorded. What is happening? Should it always work, or is
 there some trick I'm missing? Perhaps some buffer issue? Does anybody else
 do this?

-- 
_
Stephan Kanthak, Dipl.-Informatikermobil: +49 178 3883852
IT-Ingenieur, Markt 1-3, 52062 Aachenemail: [EMAIL 
PROTECTED]


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording tv playback

2005-11-04 Thread Justin
I do false time-shifting like that.  I do not compress the files on the
fly though, it is a raw mpeg stream that I watch while it records.  Mpeg
is generally a lot more forgiving to incomplete files and headers than
avi.

I watch with mplayer and record with mencoder -dumpstream blah.  Works
fine with this methodology for me.  10 seconds of prestream may not be
long enough though, as it will stop when it runs out of stream (one fast
forward and the file will end).  I tend to let it run for about 10 - 15
minutes at a minimum (not by choice.. I have kids) before I start
watching.  On most instances I end up watching the actual recording abut
a month later.

-Stygen



On Fri, 2005-11-04 at 16:12 +0100, Alberto Hernando wrote:
 Hi.
 
 Some time ago, while talking about timeshifting, somebody said that what he 
 did was start recording the show he wanted to watch. Then, instead of 
 watching it with tv, he saw the recording, having timeshifting this way. I've 
 tried it. In some cases, the playback ends as if it wasn't being recorded 
 anymore. I mean, you start playback 10 seconds after you start recording, and 
 you can see only 10 seconds. Start again, and you have only 20 seconds, and 
 so on. Other times, it works, and I can see all the show, as it is being 
 recorded. What is happening? Should it always work, or is there some trick 
 I'm missing? Perhaps some buffer issue? Does anybody else do this?
 
 thx
 
 
 ---
 SF.Net email is sponsored by:
 Tame your development challenges with Apache's Geronimo App Server. Download
 it for free - -and be entered to win a 42 plasma tv or your very own
 Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users
-- 
Justin [EMAIL PROTECTED]


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Volume?

2005-04-02 Thread Craig Cooper
OK, I have Freevo working very well now, but the recording level seems
a bit low (50%).

Is this set in loca_conf.py or in the OS, or in the mencoder options?!

any help appreciated.

Craig Cooper


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] recording fails

2005-03-24 Thread Bjoern Franke
Hello,

after updating my debian-sid-system some strange things happen:
freevo records only damaged avi's.
I enabled CHILDAPP_DEBUG=1, but nothing is logged into
/tmp/freevo/recorder_stdout and _err.

excert from recordserver-0.log:
2005/03/24 22:17 CET [*RecordServer*] found a program to clean
2005/03/24 22:17 CET [*RecordServer*] SAVE: saving cached file
(/var/cache/freev
o/record_schedule.xml)
2005/03/24 22:17 CET [*RecordServer*] SAVE: ScheduledRecordings has 2
items.
2005/03/24 22:17 CET [*RecordServer*] autokill timeout, stopping
recording
2005/03/24 22:17 CET [*RecordServer*] Record_Thread::run: past
wait()!!
2005/03/24 22:17 CET [*RecordServer*] Record_Thread::run: finished
recording
2005/03/24 22:17 CET [*RecordServer*] killing pid 1760 with sig 15
2005/03/24 22:17 CET [*RecordServer*] recorderver: After wait()
2005/03/24 22:17 CET [*RecordServer*] waiting on pid 1760
2005/03/24 22:17 CET [*RecordServer*] Record_Thread::run: mode=idle
2005/03/24 22:17 CET [*RecordServer*] Traceback (most recent call
last):
  File
/usr/lib/python2.3/site-packages/twisted/python/log.py, line 52
, in callWithContext
return context.call({ILogContext: newCtx}, func, *args,
**kw)
  File
/usr/lib/python2.3/site-packages/twisted/python/context.py, lin
e 43, in callWithContext
return func(*args,**kw)
  File
/usr/lib/python2.3/site-packages/twisted/internet/default.py, l
ine 126, in run
self.mainLoop()
  File
/usr/lib/python2.3/site-packages/twisted/internet/default.py, l
ine 134, in mainLoop
self.runUntilCurrent()
--- exception caught here ---
  File
/usr/lib/python2.3/site-packages/twisted/internet/base.py, line
 423, in runUntilCurrent
call.func(*call.args, **call.kw)
  File
/usr/lib/python2.3/site-packages/freevo/helpers/recordserver.py
, line 996, in handleEvents
vfs.getoverlay(os.path.splitext(prog.filename)[0] +
'.png'))
exceptions.OSError: [Errno 2] No such file or directory

Any ideas?

TIA
Bjoern
-- 
ICQ# 12220433 | http://www.nordwestlich.net | http://www.zeit-geist.org
Quod me nurit, me destruit
#383730 counter.li.org


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_ide95alloc_id396op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording from satellite/cable box with SPDIF IN

2005-03-03 Thread swrobel
I haven't set up a Freevo box yet, but I was considering the option of
using my satellite box (although I assume it would be the same way with
cable) through an analog capture card (probably s-video in) for the video,
but I figured why do analog audio capture if I can do digital.  Most boxes
(including my dish network satellite box) have SPDIF out, so is it
possible to record 5.1 (or just pure digital 2.0) audio through an SPDIF
input on a sound card using Freevo.  I figured someone out there has to
have tried this.  Thanks!





---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording automatically from favourites

2005-02-22 Thread Justin
Oh excellent.. thanks for that.

-Justin

On Mon, 2005-02-21 at 18:19 +0100, Bart Heremans wrote:
 If you don't use the 'freevo tv_grab' helper to grab your xmltv file you
 have to run the 'freevo schedulefavorites' to schedlue your favorite
 recordings after you grab the xmltv file.
 
 see :
 http://freevo.sourceforge.net/cgi-bin/doc/Recordserver#head-a384a0ecd443ecbdd32b5c060f7b078d3f7e2e44
 
 Bart
 
 On Tue, 2005-02-22 at 00:44 +0800, Justin wrote:
  Hi,
  
  I was wondering if it is possible to set a favourite and have freevo
  record it whenever it is on automatically.  An example would be if I set
  the News on CH7 between 6 and 6:30pm on weekdays as a favourite, it
  would then just automatically record.
  
  This would be preferrable to having to set multiple recordings of the
  same show on every xmltv update.
  
  Any ideas?  Functionality like this would actually make the favourites
  list usefull.  (Or is it supposed to do this anyway?)
  
  -Justin
  
  
 
 
 
 ---
 SF email is sponsored by - The IT Product Guide
 Read honest  candid reviews on hundreds of IT Products from real users.
 Discover which products truly live up to the hype. Start reading now.
 http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users
 
-- 
Justin [EMAIL PROTECTED]



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording automatically from favourites

2005-02-21 Thread Justin
Hi,

I was wondering if it is possible to set a favourite and have freevo
record it whenever it is on automatically.  An example would be if I set
the News on CH7 between 6 and 6:30pm on weekdays as a favourite, it
would then just automatically record.

This would be preferrable to having to set multiple recordings of the
same show on every xmltv update.

Any ideas?  Functionality like this would actually make the favourites
list usefull.  (Or is it supposed to do this anyway?)

-Justin


-- 
Justin [EMAIL PROTECTED]



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording automatically from favourites

2005-02-21 Thread Jesper Mathiassen
Justin wrote:
Hi,
I was wondering if it is possible to set a favourite and have freevo
record it whenever it is on automatically.  An example would be if I set
the News on CH7 between 6 and 6:30pm on weekdays as a favourite, it
would then just automatically record.
This would be preferrable to having to set multiple recordings of the
same show on every xmltv update.
Any ideas?  Functionality like this would actually make the favourites
list usefull.  (Or is it supposed to do this anyway?)
-Justin
 

AFAIK this is how it already works... if you push record on a show in 
the tv-guide and choose add to favorites, a submenu will appear allowing 
you to select when to record the show.. i.e. every at 6pm on ch7 ... (It 
looks up the name in the tv-guide to get the exact start and stop times..)

Works fin here at least :)
- Jesper
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording automatically from favourites

2005-02-21 Thread Bart Heremans
If you don't use the 'freevo tv_grab' helper to grab your xmltv file you
have to run the 'freevo schedulefavorites' to schedlue your favorite
recordings after you grab the xmltv file.

see :
http://freevo.sourceforge.net/cgi-bin/doc/Recordserver#head-a384a0ecd443ecbdd32b5c060f7b078d3f7e2e44

Bart

On Tue, 2005-02-22 at 00:44 +0800, Justin wrote:
 Hi,
 
 I was wondering if it is possible to set a favourite and have freevo
 record it whenever it is on automatically.  An example would be if I set
 the News on CH7 between 6 and 6:30pm on weekdays as a favourite, it
 would then just automatically record.
 
 This would be preferrable to having to set multiple recordings of the
 same show on every xmltv update.
 
 Any ideas?  Functionality like this would actually make the favourites
 list usefull.  (Or is it supposed to do this anyway?)
 
 -Justin
 
 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording TV - No sound

2005-01-30 Thread Mary Strimel
Hi John,

 However, when I try watching TV with
 mplayer I get a picture, but no sound.  The no sound problem carries
 over to when I try to record with mencoder, which is activated in my
 Freevo configuration, and also streamer (part of the xawtv package).

 At this point I'm working outside of Freevo with mplayer and mencoder
 at the command line level trying various options, but have not hit
 upon anything that works yet.

Not sure if this is your problem, but when I was debugging sound on my
system using an mencoder command string, I kept leaving off the
chanlist= option in the hope of keeping things simple ... after hours of
trying, I finally figured out that when I added that option back in, sound
worked again.  [in my case it was chanlist=us-cable IIRC].

to figure out the mixer settings I also found it helpful to run Freevo in a
window rather than fullscreen, run a graphical mixer in another window, and
watch the settings on the mixer to see what freevo does when it starts up.
It turned out Freevo was muting my mic, and aumix solved it as per other
posts to this list.
cheers,
Mary



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording TV - no sound

2005-01-29 Thread John Welch
Hello all,
I have been trying to setup Freevo to record TV shows, but I'm running 
into some problems.  I've worked through most of my issues, but now my 
big stumbling block is that I cannot get any sound to record.

My tv tuner card is a Leadtek Winfast TV2000 XP Expert, which uses the 
cx88 drivers.  This particular version of the card has an on-board audio 
out connection that goes directly to my sound card.

I can watch and hear TV just fine with tvtime (also used in my Freevo 
configuration) and xawtv.  However, when I try watching TV with mplayer 
I get a picture, but no sound.  The no sound problem carries over to 
when I try to record with mencoder, which is activated in my Freevo 
configuration, and also streamer (part of the xawtv package).

At this point I'm working outside of Freevo with mplayer and mencoder at 
the command line level trying various options, but have not hit upon 
anything that works yet.

I know this is not a Freevo specific issue, but I'm hoping that someone 
on the list has experienced similar problems and come up with a solution.

Thanks in advance.
John
---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording TV - no sound

2005-01-29 Thread Jesper Mathiassen
John Welch wrote:
Hello all,
I have been trying to setup Freevo to record TV shows, but I'm running 
into some problems.  I've worked through most of my issues, but now my 
big stumbling block is that I cannot get any sound to record.
Maybe you could list up these issues and how you solved them (where you 
found the information to solve it.. and stuff) Could help streamlining 
the installation for other people.

My tv tuner card is a Leadtek Winfast TV2000 XP Expert, which uses the 
cx88 drivers.  This particular version of the card has an on-board 
audio out connection that goes directly to my sound card.

I can watch and hear TV just fine with tvtime (also used in my Freevo 
configuration) and xawtv.  However, when I try watching TV with 
mplayer I get a picture, but no sound.  The no sound problem carries 
over to when I try to record with mencoder, which is activated in my 
Freevo configuration, and also streamer (part of the xawtv package).

At this point I'm working outside of Freevo with mplayer and mencoder 
at the command line level trying various options, but have not hit 
upon anything that works yet.

I know this is not a Freevo specific issue, but I'm hoping that 
someone on the list has experienced similar problems and come up with 
a solution.

Thanks in advance.
John
You should check your mixer settings. I find aumix to be a great utility 
for this, as it is commandline, and works equally well for both oss and 
alsa. Check to see if the IGain of your card is turned up while 
recording. This control sets the input volume from the recording source 
(which you should also make sure is set to Line, or which ever input you 
use). While watching TV however, the soundcard internal loopback is 
used, which is controlled by the Line controller in aumix, hence if your 
line is turned up and your IGain  is at 0 youd get sound while watching, 
but not while recording.
Sollution is to set Line to 0 and IGain to 90 (100 tends to distort 
sound slightly, at least on my card) while recording and Line to 100 and 
IGain to 0 while watching TV. (not really sure if IGain has to be 0 
here, but just in case..) you can use the VCR_PRE_CMD and VCR_POST_CMD 
in your local_conf.py to execute these mixersettings.

best of luck :)
- Jesper

---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording from satellite/cable box with SPDIF IN

2005-01-28 Thread Stefan Wrobel
I haven't set up a Freevo box yet, but I was considering the option of 
using my satellite box (although I assume it would be the same way with 
cable) through an analog capture card (probably s-video in) for the 
video, but I figured why do analog audio capture if I can do digital. 
Most boxes (including my dish network satellite box) have SPDIF out, so 
is it possible to record 5.1 (or just pure digital 2.0) audio through an 
SPDIF input on a sound card using Freevo.  I figured someone out there 
has to have tried this.  Thanks!

Stefan Wrobel
---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] recording sound in FC-3

2004-12-05 Thread Matthew Bettencourt
I just upgraded to FC3 and it seems that I can't record sound anymore 
either with mplayer or within freevo.  I noticed that it went from OSS 
to ALSA in this update and I am guessing that is my problem

My record line looks something like
 mencoder tv:// -tv 
driver=v4l:freq=55.250:device=/dev/video0:input=0:norm=NTSC:width=640:height=480 
-ovc 

This used to work if I selected the right channel for the audio with 
something like alsamixer, but no longer does...  I can hear the audio 
coming through the sound card if I unmute the video button on the mixer, 
but it does not record even though record is set.  I have a ensoniq 1391 
card and a BT878 video BTW.

Has anyone else run into this?
Thanks
matt
---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording TV in stereo

2004-11-28 Thread Ducson Nguyen
local_config.py has audio recording forced to mono, but is it possible
to record in stereo?

I finally have my home theatre complete and when I watch a Freevo
recording I'd like to have the same great Pro Logic II decoding I get
with live TV.

Thanks!

Ducson


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Bug/Feature Request other ideas

2004-09-29 Thread Trevor Phillips
I've recently started using Freevo to watch  record TV, and there's a
few niggling issues, or missing features with Freevo that bug me.

First up is the record padding. It would be REALLY nice if there was a
separate pre- and post- record padding. Shows here have a tendency to
start anywhere from on-time to minutes late, and can quite frequently
run even later. Ergo, I need a minimal pre-padding (a minute or two),
but a large post-padding (up to 15 mins).
I've hacked my own Freevo to support Pre/Post padding, and it works quite well.
Ideally, it'd be nice to set this per-channel, since some channels are
pretty decent, while others vary wildly.

Second up, a related issue, is record scheduling. I'd really like to
have the option of editing the details of a record item. I've had
times where the Guide has been a little inaccurate (and now once where
the finish time for a show was out by an hour). Sure, I could manually
add an item to record and stick in ALL the data, but it would be much
easier to just go Schedule to Record, then Edit, and tweak those
values which need it. Such a facility should be easy to implement in
the Webserver (and I may have a go at it myself if no-one else wants
to), but it'd be nice to have it in the normal interface as well.

Next, which is sort of a mix of the two above - an easy way to tweak
the padding of a recording/recorded show. So if you KNOW a particular
show is famous for running overtime (chat-shows have a tendency to do
it here), you can easily add/remove extra record time, say, in 2
minute chunks?

(Gee - can you tell I've missed the last 5 minutes of way too many shows? ^_^)

The next idea is also Recording, but a different slant - transcoding.
I have a DVB card, which means I natively get good quality mpeg2
streams saved when I record. This takes up quite a bit of disk tho, so
stuff I want to keep, I'd like to transcode into DivX. I have a little
script I whipped up to do this for me, but it's a manual process.

What would be great would be an option within Freevo to tag a recorded
show for transcoding. Even better would be a few transcoding options,
for different bit-rates (cooking shows (don't ask ^_^) don't need as
much bitrate as movies), and different cropping options (some shows
are 16:9, some are 4:3 - the signal/stream is always 16:9).

This could probably be done as a Plugin. I might give it a go myself
if I get time (Ha! Ahem...) I'd envisage a separate Transcode Daemon
to take care of the transcoding, perhaps auto pause/resuming
transcoding based on system load and/or other Freevo activity (ie; if
Freevo not playing anything, and not recording, then Transcode!).

There could also be options to auto-transcode if a show is old, and
disk is low...

Something that's been mentioned briefly in the past - the auto-icon
support. Sometimes this works, and sometimes it really doesn't. I've
had shows where the icon was of the show before (which still had
recorded bits of) - and sometimes it shows an Ad. The former can be
avoided by picking a frame nearer the middle of the show, rather than
the start. The latter is a bit harder to fix.

One solution would be to have an option to regenerate the icon which
shows a selection of images (9? 12?), and you select which to keep as
the icon.

Oh, and while I'm at it - support for widescreen layout of Freevo
menus would be appreciated. ^_^ Also, maybe some variants of the
standard skins using smaller fonts? (And more TV Guide columns? Is
that definable?)

Lastly - a bug of sorts. I keep having issues watching DVB streams
(ts/mpg) with Freevo. Sometimes it sucks all my CPU (not a very fast
one), the Sync goes straight out the window, and sometimes I get black
dots scattered around  in the borders of hard-white output. I *think*
it's rogue unneeded filters for mplayer kicking in, but I've yet to
reliably disable them. Any ideas?

-- 
Trevor Phillips  - http://jurai.murdoch.edu.au/
Web Technical Administrator  -  IT Services, Murdoch University
On nights such as this, evil deeds are done. And good deeds, of
course. But mostly evil, on the whole.
  -- (Terry Pratchett, Wyrd Sisters)


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Bug/Feature Request other ideas

2004-09-29 Thread Jaap Struyk
I forgot one thing to mention as a future request;
Apart from the allready available option to select a player for certain
suffix, is it possible to make the same kind of selection for vcd dvd
players?
-- 
Groetjes Japie



---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording Bug/Feature Request other ideas

2004-09-29 Thread Mick
 This could probably be done as a Plugin. I might give it a go myself
 if I get time (Ha! Ahem...) I'd envisage a separate Transcode Daemon
 to take care of the transcoding, perhaps auto pause/resuming
 transcoding based on system load and/or other Freevo activity (ie; if
 Freevo not playing anything, and not recording, then Transcode!).
 
Check out the encoding server package from the addons page.  den_RDC
wrote it with these exact features in mind.  It may be that only a
plugin is required.  

I'd be happy to to assist its developement, the existing plugin will
only send dvd's to the encoding server, I'd like th new plugin to be
able to create DVD's from any multimedia file and so forth..

 There could also be options to auto-transcode if a show is old, and
 disk is low...
 
Yes, this could easily be done within the same plugin.  I have written
one which will delete the the oldest avi in the tv_rec dir.  This could
easily be extended to listen to the recordign extention and then just
send it to the record server for re-coding...

Mick


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording doesn't work any longer

2004-08-11 Thread Mick
Post the command..

Mick
On Wed, 2004-08-11 at 15:06, Ren Schrder wrote:
 Hi,
 
 since 1.5.0-rc3 or 1.5.0-rc4 recording doesn't work. Now I am using
 freevo 1.5.0. I didn't change my VCR_CMD. If I try to record something I
 get the VCR_CMD output in the recordserver log file and I find the fxd
 file but no video file. A copy and paste of the mencoder command from
 the log file shows that mencoder works.
 
 Can somebody point me in the right direction.
 
 Thanks
 Rene


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording doesn't work any longer

2004-08-11 Thread Mick
 since 1.5.0-rc3 or 1.5.0-rc4 recording doesn't work. Now I am using
 freevo 1.5.0. I didn't change my VCR_CMD. If I try to record something I
 get the VCR_CMD output in the recordserver log file and I find the fxd
 file but no video file. A copy and paste of the mencoder command from
 the log file shows that mencoder works.
 
Does all recording fail?


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] recording server

2004-07-13 Thread skeeterskip
Where is recording server file located?


---
This SF.Net email sponsored by Black Hat Briefings  Training.
Attend Black Hat Briefings  Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording and XMLTV

2004-06-15 Thread Gavin Fuller
Hi all - I noticed that my mail didnt get through yesterday
, so I'm sending it again
 
 *
 
Hey all

I have a few problems that I cannot find info on - maybe
I'm just stupid, but I'm willing to take the rotten eggs
right now:)

Some pre info - freevo 1.4.1 running an unstable (and very
cut down) debian. Source was the source tarball.

Issue 1.

recording server - how the hell??? Ive looked at the docs
and NOWHERE do I find record_daemon.py. So all I get now is
record server unavailable. What gives - have I forgotten to
download something here?

Issue 2.

XMLTV listings. This weird. I can add my tv listings for a
day, maybe 2, but when the list goes over 2 days or is
2days long but wiht m,ultiple channels, the EPG just goes
blank. I would think it was a config or a pebcak issue, but
the fact that it works with a small list count and not with
a big one is disturbing. Anyone know the issue here, or
have I found an unwritten feature ;).

Cheers guys
 


---
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] recording and xmltv

2004-06-15 Thread Gavin Fuller
Hey all

I have a few problems that I cannot find info on - maybe
I'm just stupid, but I'm willing to take the rotten eggs
right now:)

Some pre info - freevo 1.4.1 running an unstable (and very
cut down) debian. Source was the source tarball.

Issue 1.

recording server - how the hell??? Ive looked at the docs
and NOWHERE do I find record_daemon.py. So all I get now is
record server unavailable. What gives - have I forgotten to
download something here?

Issue 2.

XMLTV listings. This weird. I can add my tv listings for a
day, maybe 2, but when the list goes over 2 days or is
2days long but wiht m,ultiple channels, the EPG just goes
blank. I would think it was a config or a pebcak issue, but
the fact that it works with a small list count and not with
a big one is disturbing. Anyone know the issue here, or
have I found an unwritten feature ;).

Cheers guys


---
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording and xmltv

2004-06-15 Thread Gavin Fuller
Hey Joe - thanks for the response

When I try and start it all I get is the following:

Traceback (most recent call last):
  File
/usr/local/lib/python2.3/site-packages/freevo/helpers/recordserver.py,
line 120, in ?
import rc
  File
/usr/local/lib/python2.3/site-packages/freevo/rc.py, line
59, in ?
import util
  File
/usr/local/lib/python2.3/site-packages/freevo/util/__init__.py,
line 55, in ?
from misc import *
  File
/usr/local/lib/python2.3/site-packages/freevo/util/misc.py,
line 55, in ?
from xml.utils import qp_xml
ImportError: No module named utils


I have even tried to reinstall all deps and freevo but
nothing helps.

Cheers

On Tue, 15 Jun 2004 08:47:01 -0400
 Joe Harris [EMAIL PROTECTED] wrote:
 record_daemon.py has been retired (pre 1.4 or something).
  I ran into
 the same issue trying to set mine up.  From the command
 line type:
  freevo recordserver  to start the daemon in the
 background.  I just
 add this line to my rc.local file.  Then you will be able
 to see if your
 config works for recording. Once used a log file will be
 created in (I
 think) /var/cache/freevo.  If recording doesn't work copy
 the line in
 the log file that is dumped from the config to record and
 try it from
 the command line until you can get it working.  It took
 me a little
 while to get this working, but it has been running super
 ever since.  
 
 Good luck,
 Joe Harris
 Director of Technical Services
 Whole Systems Solutions, Inc
 [EMAIL PROTECTED]
 Phone: 336.297.4977  
 Fax: 336.297.9787
 http://www.wss.net
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Gavin
 Fuller
 Sent: Monday, June 14, 2004 10:20 AM
 To: [EMAIL PROTECTED]
 Subject: [Freevo-users] recording and xmltv
 
 Hey all
 
 I have a few problems that I cannot find info on - maybe
 I'm just stupid, but I'm willing to take the rotten eggs
 right now:)
 
 Some pre info - freevo 1.4.1 running an unstable (and
 very
 cut down) debian. Source was the source tarball.
 
 Issue 1.
 
 recording server - how the hell??? Ive looked at the docs
 and NOWHERE do I find record_daemon.py. So all I get now
 is
 record server unavailable. What gives - have I forgotten
 to
 download something here?
 
 Issue 2.
 
 XMLTV listings. This weird. I can add my tv listings for
 a
 day, maybe 2, but when the list goes over 2 days or is
 2days long but wiht m,ultiple channels, the EPG just goes
 blank. I would think it was a config or a pebcak issue,
 but
 the fact that it works with a small list count and not
 with
 a big one is disturbing. Anyone know the issue here, or
 have I found an unwritten feature ;).
 
 Cheers guys
 
 
 ---
 This SF.Net email is sponsored by The 2004 JavaOne(SM)
 Conference
 Learn from the experts at JavaOne(SM), Sun's Worldwide
 Java Developer
 Conference, June 28 - July 1 at the Moscone Center in San
 Francisco, CA
 REGISTER AND SAVE! http://java.sun.com/javaone/sf
 Priority Code NWMGYKND
 ___
 Freevo-users mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/freevo-users
 
 
 ---
 This SF.Net email is sponsored by The 2004 JavaOne(SM)
 Conference
 Learn from the experts at JavaOne(SM), Sun's Worldwide
 Java Developer
 Conference, June 28 - July 1 at the Moscone Center in San
 Francisco, CA
 REGISTER AND SAVE! http://java.sun.com/javaone/sf
 Priority Code NWMGYKND
 ___
 Freevo-users mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/freevo-users



---
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Problem

2004-05-13 Thread Corey Halpin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
  Hello freevo-users.  I have one issue and a number of questions.
  The issue is this: I can't get freevo to record more than 5 minutes  
or so of anything.
  This seems to be the relevant portion of the recordserver log:

2004/05/13 08:31 CDT [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/05/13 08:31 CDT [*RecordServer*] popen  /home/freevo/bin/record  
tv://10 -tv  
driver=v4l:norm=NTSC:chanlist=us-cable:alsa:width=320:height=240: 
outfmt=yuy2:buffersize=256 -ovc lavc -lavcopts vcodec=mpeg4:vhq -oac  
mp3lame -lameopts vbr=3 -endpos 220 -o  
/usr/local/freevo/tv/05-13_08:30_test_-_.avi 2004/05/13 08:33 CDT  
[*RecordServer*] Reaping unregistered pid 32213! Status: 02004/05/13  
08:33 CDT [*RecordServer*] RECORDSERVER GOT EVENT NOTICE2004/05/13  
08:33 CDT [*RecordServer*] RECORDSERVER GOT EVENT NOTICE2004/05/13  
08:33 CDT [*RecordServer*] RECORDSERVER HANDLING EVENT2004/05/13 08:33  
CDT [*RecordServer*] killing pid 32213 with sig 152004/05/13 08:33 CDT  
[*RecordServer*] force killing with signal 92004/05/13 08:33 CDT  
[*RecordServer*] recorderver: After wait()2004/05/13 08:33 CDT  
[*RecordServer*] RECORDSERVER HANDLING EVENT2004/05/13 08:33 CDT  
[*RecordServer*] waiting on pid 32213

  /home/freevo/bin/record is a bash script that sets up volume levels,  
muting, etc, and then punts to mencoder.

  How do I fix this?  This has only been a problem recently.

  And some questions:
  how do I disable the creation of those .fxd files when I record a  
show?  I don't want them.
  Also, the filename in the .fxd is always .mpeg, regardless of if the  
associated show was recorded to a .avi.

  Thank you for some really neat software.

regards,
crh
- --
Corey R. Halpin
http://www.crhalpin.org/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (Darwin)
iD8DBQFAo30hHttEfMmUResRAjkKAKCH4G+PtzXynVTrSiaLXP6oXc52hACfV3oB
u8sdsHARS8xj+I0sVO0+QR8=
=8U9b
-END PGP SIGNATURE-
---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562alloc_id=6184op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Recording Issues

2004-04-14 Thread Mick
check the logs. Should be in /var/log/freevo/recordserver.log

very likely your mencoder command is broken.  BTW RTFMFFS.

THis question gets asked repeatedly.  Shortest path forward is to try the
mencoder command found in the above log and if it don't work, fix it.  Else,
provide the relevent info fromthe log with your next query..

Cheers

Mick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Lists
Sent: Sunday, 11 April 2004 5:44 AM
To: [EMAIL PROTECTED]
Subject: [Freevo-users] Recording Issues


I am running the newest version of freevo from the website install script.
(its not 5)

I run a ./freevo recordserver

I tell freevo to record something, if I look on the web interface, it says
it is recording.  however NO file is created.


Can someone please point me in the right direction?

Mike



---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users



---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Issues

2004-04-10 Thread Lists
I am running the newest version of freevo from the website install script.  
(its not 5)

I run a ./freevo recordserver

I tell freevo to record something, if I look on the web interface, it says 
it is recording.  however NO file is created. 


Can someone please point me in the right direction?

Mike



---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording through alsa

2004-04-05 Thread Zeratul
I updated the wiki with some info on recording through Alsa without OSS 
emulation in the btaudio page .

You have two options: use snd-bt87x (which is the alsa equivalent of 
btaudio) or use the line-in.
mencoder doesn't support btaudio (yet?) and the same problems arise with 
snd-bt87x, but it should work with mp1e with the patch from the wiki.
Access the snd-bt87x mixer through alsamixer -c 1 or alsamixer -D bt87x

For analog loopback cable recording add option 'alsa' to -tv options 
list, and take as adevice your soundcard (emu10k1 in my case)
adevice=/dev/adsp did NOT work for me (records only silence).

I have the following /etc/asound.conf:

pcm.emu10k1 { 
  type hw 
  card 0 
   } 

   ctl.emu10k1 { 
  type hw 
  card 0 
   } 

pcm.bt87x { 
  type hw 
  card 1 
   } 

   ctl.bt87x { 
  type hw 
  card 1 
   } 

Recording from line-in with the sound MUTED works, so I can use 
mplayer/mencoder for timeshift recording (of course, seeking doesn't 
work then).
Hope this is of any help for someone.

Zeratul



---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording through alsa

2004-04-05 Thread Zeratul
Guido Bakker wrote:

Hi,

I'm playing with this at the moment, but i only use SPDIF for audio out.
I could i route this?
I have no experience with SPDIF.
But the ALSA Wiki pages are a very good source of info IMO:
http://opensrc.org/alsa/index.php?page=emu10k1
Zeratul

---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording to vfat broken due to invalid characters (:) in filename

2004-03-28 Thread Ole Andre Schistad
I've seen this touched upon earlier but it looks like nobody found the 
cause. The reason why freevo cannot record to a fat32 (vfat) partition 
is that it uses illegal characters in the filename when creating a 
recorded TV show - the colon (:) character is not allowed on a FAT32 
filesystem.

At the moment I've written an external record command which amongst 
other things replaces the colon(s) with underscore(s), and this allows 
me to record to a vfat partition. Unfortunately, freevos database of 
recorded shows still refers to the original filename, and this has the 
inconvenient effect that all recorded shows are listed twice, once by 
name and description and once by filename, and of course only the latter 
actually works since the former filename is nonexistent.

I haven't looked very hard at the relevant portions of freevo (my python 
skills are at pidgin level) but I have a nasty suspicion that the 
HH:MM:SS format may be there for a good reason and that changing it may 
break things, but for what its worth it would be great if someone would 
consider a workaround - I'm sure there are lots of people using shared 
partitions or filesystems mounted from windows hosts who may benefit 
from such a fix. If I were more familiar with the code I'd at least do 
an honest attempt at fixing it myself, and may still do so, but it may 
not happen soon... :)

--
Ole


---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording to vfat broken due to invalid characters (:) in filename

2004-03-28 Thread Ole Andre Schistad
Rob Shortt wrote:

Ole Andre Schistad wrote:

recorded TV show - the colon (:) character is not allowed on a FAT32 


Yep.

At the moment I've written an external record command which amongst 
other things replaces the colon(s) with underscore(s), and this allows 


Ack...

HH:MM:SS format may be there for a good reason and that changing it 
may break things, but for what its worth it would be great if someone 
would 


Nothing relies on that format, its ok to change it, in fact there is a 
config variable to do so. :)

Change TV_RECORDFILE_MASK in your local_conf.py, it defaults to 
'%%m-%%d %%H:%%M %(progname)s - %(title)s', you may remove the ':' or 
reformat it how you wish.  The %% variables need to be valid for 
strftime.

-Rob
Wow, that was very quick and very useful, thank you! :)

--
Ole


---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording only makes 2kb file

2004-03-06 Thread Tim Walter
Hi, When recording TV it seems to trigger a 2kb file to be created and 
then quits  This is from my recordserver log, running it directly seems 
to run indifinitely but only the 2kb file created again

Any pointers?

2004/03/06 08:46 GMT [*RecordServer*] popen ./runtime/runapp
/usr/bin/mencoder
tv://on:driver=v4l:input=0:norm=pal:channel=35:chanlist=europe-west:width
=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp4:audior
ate=32000:forceaudio:forcechan=1:buffersize=64 -ovc lavc -lavcopts 
vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame -lameopts
br=128:cbr:mode=3 -ffourcc divx -endpos 829 -o 
/media/video/recorded/03-06_08:35_Scooby-Doo_and_Scrappy-Doo_-_.avi

--
Tim
http://yingtong.co.uk
AMD Athlon 1000, 400Mb Ram, 40GB HD
Hauppauge PCI TV card, PAL
Radeon 9200 VO, Fedora Core 1, Freevo1.4.1
---
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=1470alloc_id=3638op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not working

2004-02-29 Thread Manuel Borchers
Hi!

Am Sa, den 28.02.2004 schrieb [EMAIL PROTECTED] um 20:01:
  /usr/local/bin/mencoder tv://
 on:driver=v4l:inout=0:norm=NTSC:channel=11:chanlist=us-cable:width320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp0:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint -oac mp3lame
 -lameopts br=128:cbr:mode=3 -ffourcc divx test2.avi

You are missing the -tv switch before the tv options. Try removinf the
on: in the options, that did the trick for my setup. In this example,
you forgot the = for the width option.

Cheers,
Manuel

-- 
[EMAIL PROTECTED]
http://www.matronix.de - http://www.elektronik-kompendium.de/public/borchers

 18:05:54 up  5:23,  1 user,  load average: 0.10, 0.07, 0.01



---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not working

2004-02-29 Thread jonr
 Hi!

 Am Sa, den 28.02.2004 schrieb [EMAIL PROTECTED] um 20:01:
  /usr/local/bin/mencoder tv://
 on:driver=v4l:inout=0:norm=NTSC:channel=11:chanlist=us-cable:width320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp0:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint -oac mp3lame
 -lameopts br=128:cbr:mode=3 -ffourcc divx test2.avi

 You are missing the -tv switch before the tv options. Try removinf the
 on: in the options, that did the trick for my setup. In this example,
 you forgot the = for the width option.

 Cheers,
 Manuel

 --
 [EMAIL PROTECTED]
 http://www.matronix.de -
 http://www.elektronik-kompendium.de/public/borchers

  18:05:54 up  5:23,  1 user,  load average: 0.10, 0.07, 0.01

Hi Manuel,

Your first reply to me helped me figure it out. I took the command
mencoder was trying to run and tried it on the cli. From there I was able
to go and find other sites that showed the syntax they used. Once I was
able to find one that worked from the cli I put those commands in my
local_config.py file as my defaults for the VCR_CMD command. I shutdown
freevo and restarted but it only took some of the new parameters and
didn't add the tv:// in the command. I have no idea why, I had to reboot
and when I did it all worked correctly.

Thank you for your simple suggestion of trying it on the cli, that was the
catalyst for me to figure it out.

Thanks a lot Manuel!

Jon


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not working

2004-02-28 Thread jonr
 Hi!

 Am Fr, den 27.02.2004 schrieb [EMAIL PROTECTED] um 23:24:
 2004/02/27 13:10 AKST [*RecordServer*] popen ./runtime/runapp
 /usr/local/bin/mencoder -tv
 on:driver=v4l:input=0:norm=NTSC:channel=11:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp0:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame
 -lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 289 -o
 /home/jonr/Movies//02-27_13:10_Manual_Recorded_-_.avi
 2004/02/27 13:10 AKST [*RecordServer*] Record_Thread::run: past wait()!!
 2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
 2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
 2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER HANDLING EVENT
 2004/02/27 13:10 AKST [*RecordServer*] killing pid 31777 with sig 15

 That means, mencoder immediately dies.
 Did you try this exact command on the commandline to see, if mencoder is
 working at all?

 Cheers,
 Manuel

 --
 [EMAIL PROTECTED]
 http://www.matronix.de -
 http://www.elektronik-kompendium.de/public/borchers


 Thanks Manuel,

 I don't know why I didn't try that first before posting. When I run the
command from the command line this is the error I get:

 /usr/local/bin/mencoder tv://
on:driver=v4l:inout=0:norm=NTSC:channel=11:chanlist=us-cable:width320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp0:audiorate=44100:forceaudio:forcechan=1:buffersize=64
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint -oac mp3lame
-lameopts br=128:cbr:mode=3 -ffourcc divx test2.avi
MEncoder 1.0pre3-3.2.2 (C) 2000-2003 MPlayer Team

CPU: Intel Celeron 2/Pentium III Coppermine,Geyserville 731.1 MHz (Family:
6, Stepping: 3)
Detected cache-line size is 32 bytes
CPUflags: Type: 6 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 0
Compiled for x86 CPU with extensions: MMX MMX2 SSE

Reading /root/.mplayer/codecs.conf: Can't open
'/root/.mplayer/codecs.conf': No such file or directory
Reading /usr/local/etc/mplayer/codecs.conf: Can't open
'/usr/local/etc/mplayer/codecs.conf': No such file or directory
Using built-in default codecs.conf.
File not found: 'frameno.avi'
Failed to open frameno.avi
Reading config file /root/.mplayer/mencoder: No such file or directory
Error: option 'lavcopts' must have a parameter!
Exiting... (error parsing cmdline)

lavcopts does have the parameter vcodec= but it doesn't seem to recognize
this. Doing google searches turnedup many examples showing just this
syntax, what am I doing wrong?

Jon


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording not working

2004-02-27 Thread jonr
Whenever I try to record either through the web or through freevo directly
it always fails with this message in my /tmp/freevo/recordserver-500.log
file:

2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/27 13:10 AKST [*RecordServer*] popen ./runtime/runapp
/usr/local/bin/mencoder -tv
on:driver=v4l:input=0:norm=NTSC:channel=11:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp0:audiorate=44100:forceaudio:forcechan=1:buffersize=64
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 289 -o
/home/jonr/Movies//02-27_13:10_Manual_Recorded_-_.avi
2004/02/27 13:10 AKST [*RecordServer*] Record_Thread::run: past wait()!!
2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/27 13:10 AKST [*RecordServer*] killing pid 31777 with sig 15
2004/02/27 13:10 AKST [*RecordServer*] recorderver: After wait()
2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/27 13:10 AKST [*RecordServer*] waiting on pid 31777
2004/02/27 13:10 AKST [*RecordServer*] Record_Thread::run: mode=idle


Can someone give me an answer to what is going on here? Is there more info
I could post that would help with this?

Jon


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording not working

2004-02-27 Thread Manuel Borchers
Hi!

Am Fr, den 27.02.2004 schrieb [EMAIL PROTECTED] um 23:24:
 2004/02/27 13:10 AKST [*RecordServer*] popen ./runtime/runapp
 /usr/local/bin/mencoder -tv
 on:driver=v4l:input=0:norm=NTSC:channel=11:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp0:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame
 -lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 289 -o
 /home/jonr/Movies//02-27_13:10_Manual_Recorded_-_.avi
 2004/02/27 13:10 AKST [*RecordServer*] Record_Thread::run: past wait()!!
 2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
 2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
 2004/02/27 13:10 AKST [*RecordServer*] RECORDSERVER HANDLING EVENT
 2004/02/27 13:10 AKST [*RecordServer*] killing pid 31777 with sig 15

That means, mencoder immediately dies.
Did you try this exact command on the commandline to see, if mencoder is
working at all?

Cheers,
Manuel 

-- 
[EMAIL PROTECTED]
http://www.matronix.de - http://www.elektronik-kompendium.de/public/borchers

 23:29:23 up  4:02,  1 user,  load average: 0.04, 0.02, 0.00



---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Recording issue with mencoder

2004-02-09 Thread Patrick M Geahan
On Mon, 9 Feb 2004, Dave Smylie wrote:

 An easy way to do is to not encode audio to mp3 on the way, or decrease
 the resolution you are capturing at . . .

I'm already at 320x240, which I would think would be the lowest decent 
resolution I'd see.

What would you recommend for an easier audio encoding scheme?


---Patrick M [EMAIL PROTECTED]:3784715--
You know, this is how the sum total of human knowledge is increased. 
Not with idle speculation and meaningless chatter, but with a 
medium-sized hammer and some free time. - [EMAIL PROTECTED], a.f.c-a


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording issue with mencoder

2004-02-08 Thread Patrick M Geahan

Folks -

I recently put Freevo on an Epia M1, Nehemiah core, 512MB RAM, 1GB 
swap, Hauppage WinTV card. 

I'm having an issue with the recording function.  After a short period of 
time(less than three minutes), I start getting dropped audio frames and 
video buffer full errors.  

I've tried playing with some of the settings, and I've managed to get the 
time to full from 27 seconds to 170 seconds.  Needless to say, I'm hoping 
to get up to 30-60 minutes.  

Other than freevo, the system is only running sshd, lircd, and syslog.  

Can anyone offer some assistance?  Are there other M10K users out there 
who have a better working recorder script?

--
#!/bin/bash
  
CHAN=$1
TIME=$2
NAME=$3
 
WIDTH=320
HEIGHT=240
  
MENCODER=/usr/bin/mencoder
AMIXER=/usr/bin/amixer
  
NICE=nice -n -20
  
AUDIO=-oac mp3lame -lameopts cbr:br=1:mode=3 -ffourcc divx
#VIDEO=-ovc nuv -nuvopts q=3
VIDEO=-ovc lavc -lavcopts vcodec=mpeg1video:vbitrate=1200
DSP=adevice=/dev/sound/dsp1:buffersize=1024:audiorate=16000
TV= -tv 
driver=v4l:width=$WIDTH:height=$HEIGHT:input=0:device=/dev/v4l/video0:norm=NTSC:chanlist=us-cable:channel=$CHAN:$DSP
  
$MENCODER -o mpeg tv:// $TV $VIDEO $AUDIO -endpos $TIME -o $NAME.mpg
# Available formats: 444p 422p 411p yuy2 uyvy yvu9 if09 yv12 i420 iyuv clpl 
# hm12 y800 y8 nv12 nv21 bgr24 bgr32 bgr16 bgr15 bgr8 bgr4 bg4b bgr1 rgb24 rgb32 
# rgb16 rgb15 rgb8 rgb4 rg4b rgb1
--

Thanks!



---Patrick M [EMAIL PROTECTED]:3784715--
You know, this is how the sum total of human knowledge is increased. 
Not with idle speculation and meaningless chatter, but with a 
medium-sized hammer and some free time. - [EMAIL PROTECTED], a.f.c-a


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording issue with mencoder

2004-02-08 Thread Rob Shortt
Patrick M Geahan wrote:
I'm having an issue with the recording function.  After a short period of 
time(less than three minutes), I start getting dropped audio frames and 
video buffer full errors.  
You may be able to allocate more buffers when you load the module for 
your card.  I'm not sure which module your uses (bt878?) but run modinfo 
on it to see if that's possible.

-Rob



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording issue with mencoder

2004-02-08 Thread Jaap Struyk
Op ma 09-02-2004, om 00:41 schreef Patrick M Geahan:

 I'm having an issue with the recording function.  After a short period of 
 time(less than three minutes), I start getting dropped audio frames and 
 video buffer full errors.  

There is a problem with nehemiah CPU's with model 9 that prevents ffmpeg
(libavcodec/mplayer) from detecting mmx properly...

root:~# cat /proc/cpuinfo 
processor   : 0
vendor_id   : CentaurHauls
cpu family  : 6
model   : 9
model name  : VIA Nehemiah
stepping: 3
cpu MHz : 1000.058

If you have such a CPU, your lucky, there's a patch for it, if not I
can't help you.
In the source off mplayer in mplayer/libavcodec/i386/cputest.c
and/or in ffmpeg libavcodec/i386/cputest.c
Youll find the lines:

 } else if (ebx == 0x746e6543 
   edx == 0x48727561 
   ecx == 0x736c7561) {  /*  CentaurHauls */
/* VIA C3 */
cpuid(0x8000, eax, ebx, ecx, edx);
if ((unsigned)eax  0x8001)
goto inteltest;
cpuid(0x8001, eax, ebx, ecx, edx);
edx = 0x1380b035;   // - Add this for Nehemiah mmx -  
rval = 0;
if( edx  ( 1  31) )
  rval |= MM_3DNOW;
if( edx  ( 1  23) )
  rval |= MM_MMX;
if( edx  ( 1  24) )
  rval |= MM_MMXEXT;
return rval;

I've got the same problem on my V1000, and it prevented me from trowing
it ut of the window... (or even worse, install M$ on it ;)
-- 
Groetjes Japie
http://japie.deserver.nl

Gnu/Linux
2.4.20-wolk4.9s i686

Win98 is called Win98 because 98% of the code is untested
;^)



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Woes

2004-02-05 Thread Alex Cruz
Greetings All,
 Ok here's whats going on: I'm running Freevo 1.4.1 from the ebuild on Gentoo 
1.4 and I can schedule a recording nicely. What happens next, I'll let the 
log describe starting from the sceduled time of the recording:

2004/02/03 13:00 CST [*RecordServer*] Recorder::Record: /usr/bin/mencoder -tv 
on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 
-o /opt/freevo/Movies/Recorded/02-03_13:00_Secret_Strange_True_-_.avi
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: mode=record
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: 
cmd=/usr/bin/mencoder -tv 
on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 
-o /opt/freevo/Movies/Recorded/02-03_13:00_Secret_Strange_True_-_.avi
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/03 13:00 CST [*RecordServer*] popen  /usr/bin/mencoder -tv 
on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 
-o /opt/freevo/Movies/Recorded/02-03_13:00_Secret_Strange_True_-_.avi
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: past wait()!!
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: mode=idle
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/03 13:00 CST [*RecordServer*] killing pid 12052 with sig 15
2004/02/03 13:00 CST [*RecordServer*] recorderver: After wait()
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/03 13:00 CST [*RecordServer*] waiting on pid 12052

Ok so, if I run the mencoder command from the command line, I get this:

MEncoder 1.0pre3-3.2.3 (C) 2000-2003 MPlayer Team

CPU: Advanced Micro Devices Athlon MP/XP Thoroughbred 1102 MHz (Family: 6, 
Stepping: 0)
Detected cache-line size is 64 bytes
MMX supported but disabled
MMX2 supported but disabled
SSE supported but disabled
3DNow supported but disabled
3DNowExt supported but disabled
CPUflags: Type: 6 MMX: 0 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0
Compiled for x86 CPU with extensions:

Reading /home/alex/.mplayer/codecs.conf: Can't open 
'/home/alex/.mplayer/codecs.conf': No such file or directory
Reading /usr/share/mplayer/codecs.conf: 61 audio  169 video codecs
File not found: 'frameno.avi'
Failed to open frameno.avi
Reading config file /home/alex/.mplayer/mencoder: No such file or directory
-tv on is deprecated, use tv:// instead
Exiting... (error parsing cmdline)

Any ideas how I can fix this? 

-- 
-alex



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Woes

2004-02-04 Thread Alex Cruz
Greetings All,
 Ok here's whats going on: I'm running Freevo 1.4.1 from the ebuild on Gentoo 
1.4 and I can schedule a recording nicely. What happens next, I'll let the 
log describe starting from the sceduled time of the recording:

2004/02/03 13:00 CST [*RecordServer*] Recorder::Record: /usr/bin/mencoder -tv 
on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 
-o /opt/freevo/Movies/Recorded/02-03_13:00_Secret_Strange_True_-_.avi
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: mode=record
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: 
cmd=/usr/bin/mencoder -tv 
on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 
-o /opt/freevo/Movies/Recorded/02-03_13:00_Secret_Strange_True_-_.avi
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/03 13:00 CST [*RecordServer*] popen  /usr/bin/mencoder -tv 
on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:audiorate=44100:forceaudio:forcechan=1:buffersize=64
 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 
-o /opt/freevo/Movies/Recorded/02-03_13:00_Secret_Strange_True_-_.avi
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: past wait()!!
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/02/03 13:00 CST [*RecordServer*] Record_Thread::run: mode=idle
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/03 13:00 CST [*RecordServer*] killing pid 12052 with sig 15
2004/02/03 13:00 CST [*RecordServer*] recorderver: After wait()
2004/02/03 13:00 CST [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/02/03 13:00 CST [*RecordServer*] waiting on pid 12052

Ok so, if I run the mencoder command from the command line, I get this:

MEncoder 1.0pre3-3.2.3 (C) 2000-2003 MPlayer Team

CPU: Advanced Micro Devices Athlon MP/XP Thoroughbred 1102 MHz (Family: 6, 
Stepping: 0)
Detected cache-line size is 64 bytes
MMX supported but disabled
MMX2 supported but disabled
SSE supported but disabled
3DNow supported but disabled
3DNowExt supported but disabled
CPUflags: Type: 6 MMX: 0 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0
Compiled for x86 CPU with extensions:

Reading /home/alex/.mplayer/codecs.conf: Can't open 
'/home/alex/.mplayer/codecs.conf': No such file or directory
Reading /usr/share/mplayer/codecs.conf: 61 audio  169 video codecs
File not found: 'frameno.avi'
Failed to open frameno.avi
Reading config file /home/alex/.mplayer/mencoder: No such file or directory
-tv on is deprecated, use tv:// instead
Exiting... (error parsing cmdline)

Any ideas how I can fix this? 

-- 
-alex




---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording Woes

2004-02-04 Thread Matthieu Weber
On Wed 04.02.2004 at 05:22:53AM -0600, Alex Cruz wrote:
 Greetings All,
  Ok here's whats going on: I'm running Freevo 1.4.1 from the ebuild on
  Gentoo 1.4 and I can schedule a recording nicely. What happens next,
  I'll let the log describe starting from the sceduled time of the
  recording:
 
 2004/02/03 13:00 CST [*RecordServer*] Recorder::Record:
 /usr/bin/mencoder -tv
 on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:
  ^^  ^^
height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:
audiorate=44100:forceaudio:forcechan=1:buffersize=64
 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame
 -lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 
 -o /opt/freevo/Movies/Recorded/02-03_13:00_Secret_Strange_True_-_.avi
[...]
 -tv on is deprecated, use tv:// instead
^
 Exiting... (error parsing cmdline)
 
 Any ideas how I can fix this? 

The beginning of the -tv option (-tv on:...) is incorrect for recent
versions of mplayer/mencoder.
Use tv://your_channel -tv some:other:options

Matthieu
-- 
 (~._.~)Matthieu Weber - Université de Jyväskylä (~._.~)
  ( ? )email : [EMAIL PROTECTED]  ( ? ) 
 ()- -()   public key id : 452AE0AD  ()- -()
 (_)-(_)  Humor ist, wenn man trotzdem lacht (Germain Muller)  (_)-(_)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording Woes

2004-02-04 Thread Alex Cruz
On Wednesday 04 February 2004 06:30 am, Matthieu Weber wrote:

 The beginning of the -tv option (-tv on:...) is incorrect for recent
 versions of mplayer/mencoder.
 Use tv://your_channel -tv some:other:options

 Matthieu

So, should this work then:  

/usr/bin/mencoder  tv://76 -tv 
on:driver=v4l:input=0:norm=NTSC:channel=76:chanlist=us-cable:width=320:
height=240:outfmt=yv12:device=/dev/video0:adevice=/dev/dsp:
audiorate=44100:forceaudio:forcechan=1:buffersize=64
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 3589 -o 
/opt/freevo/Movies/Recorded/some-show-name-here.avi

And if so, then why am I passing 2 TV options to mencoder?

-alex



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording Woes

2004-02-04 Thread Jaap Struyk
Op wo 04-02-2004, om 12:22 schreef Alex Cruz:

 Any ideas how I can fix this? 

Change your local_conf.py;
/usr/bin/mencoder -tv on:driver=v4l.etc
to
/usr/bin/mencoder tv:// -tv driver=v4l.etc
-- 
Groetjes Japie



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording Woes

2004-02-04 Thread Alex Cruz
On Wednesday 04 February 2004 11:29 am, Jaap Struyk wrote:

 Change your local_conf.py;
 /usr/bin/mencoder -tv on:driver=v4l.etc
 to
 /usr/bin/mencoder tv:// -tv driver=v4l.etc

 Thanks Jaap. I'll try this when I get home later tonight and see if that 
works. Have a good day.

-alex



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py

2004-01-23 Thread free vo
Hi, I've been doing some more searching in the logs and I have discovered I 
have a recordserver-0.log and a recordserver-502.log. The 502 is the user 
and the 0 the root log. In the root log I find the error as reprorted below. 
In the 502 I find some of the succesfull recordings like ..

2004/01/21 13:21 CET [*RecordServer*] Recorder::Record: 2004-01-21 09:00 to 
2004-01-21 17:50  31.tvgids.nl RTL Z Nieuws
2004/01/21 13:21 CET [*RecordServer*] Record_Thread::run: mode=record
2004/01/21 13:21 CET [*RecordServer*] Record_Thread::run: started recording
2004/01/21 13:21 CET [*RecordServer*] Video Opened at /dev/video0
2004/01/21 13:21 CET [*RecordServer*] Setting Channel to s11+
2004/01/21 13:21 CET [HTTPChannel,2,127.0.0.1] 127.0.0.1 - - 
[21/Jan/2004:12:21:02 +] POST / HTTP/1.0 200 2794 - 
xmlrpclib.py/1.0.1 (by www.pythonware.com)
2004/01/21 13:21 CET [HTTPChannel,3,127.0.0.1] 127.0.0.1 - - 
[21/Jan/2004:12:21:14 +] POST / HTTP/1.0 200 2794 - 
xmlrpclib.py/1.0.1 (by www.pythonware.com)
2004/01/21 13:21 CET [twisted.web.server.Site] (Port 18001 Closed)
2004/01/21 13:21 CET [twisted.web.server.Site] Stopping factory 
twisted.web.server.Site instance at 0x40f87fac
2004/01/21 13:21 CET [*RecordServer*] Main loop terminated.

But in this log I see nothing about the scheduled recordings I have made. 
Those I see only in the 0 log, where mencoder is used what seems to me 
wrong.

Here is what I do. As root I check if the recordserver has started 
(/etc/init.d/freevo_recordserver restart). I start freevo (as a user), enter 
the tv guide menu, select a program, press f6, choose record, the program 
becomes green, and I wait. Nothing happens, no recording is made. I check 
the logs, there is only an entry in the 0 log (about mencoder) and nothing 
in the 502 logs.

In my local_conf.py I have commented out evertthing to do with VCR_CMD, I 
checked even the freevo.conf. But nothing gives.

Hope someone can help me. Thanks.






From: free vo [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py
Date: Thu, 22 Jan 2004 15:50:40 +
Hi, I'm trying to get the recording function to work properly. I have the 
recordserver running, when I'm in the TV GUIDE menu, F6, I can hoose record 
and I get a confirmation. However, I don't see anything happen and in my 
download folder I don't see the mpeg.

In my log I find

2004/01/22 16:25 CET [*RecordServer*] Recorder::Record: 
/usr/share/freevo/unmute; /usr/local/bin/mencoder tv:// -tv 
driver=v4l:input=0:norm=ntsc:channel=7+:chanlist=us-cable:width=640:height=480:outfmt=yuy2:device=/dev/video0:adevice=/dev/dsp:audiorate=32000:forceaudio:forcechan=1:buffersize=64 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 708 -o 
/tmp/freevo/Videos/01-22_16:25_Kinderfilm_theater_-_.avi ; 
/usr/share/freevo/mute;
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: mode=record
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: 
cmd=/usr/share/freevo/unmute; /usr/local/bin/mencoder tv:// -tv 
driver=v4l:input=0:norm=ntsc:channel=7+:chanlist=us-cable:width=640:height=480:outfmt=yuy2:device=/dev/video0:adevice=/dev/dsp:audiorate=32000:forceaudio:forcechan=1:buffersize=64 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 708 -o 
/tmp/freevo/Videos/01-22_16:25_Kinderfilm_theater_-_.avi ; 
/usr/share/freevo/mute;
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/01/22 16:25 CET [*RecordServer*] popen  /usr/share/freevo/unmute; 
/usr/local/bin/mencoder tv:// -tv 
driver=v4l:input=0:norm=ntsc:channel=7+:chanlist=us-cable:width=640:height=480:outfmt=yuy2:device=/dev/video0:adevice=/dev/dsp:audiorate=32000:forceaudio:forcechan=1:buffersize=64 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 708 -o 
/tmp/freevo/Videos/01-22_16:25_Kinderfilm_theater_-_.avi ; 
/usr/share/freevo/mute;
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: past wait()!!
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/01/22 16:25 CET [*RecordServer*] killing pid 6946 with sig 15
2004/01/22 16:25 CET [*RecordServer*] recorderver: After wait()
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/01/22 16:25 CET [*RecordServer*] waiting on pid 6946
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: mode=idle...

but I don't use ntsc and the setting don't look right to me. I have 
commented all the VCR_CMD in the local_conf.py, and the ivtv settings are 
allright

Re: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py

2004-01-23 Thread free vo
Hi Rob thanks for your replies.

this is my list of running processes...

numlock 0:uit   1:uit   2:uit   3:uit   4:uit   5:uit   6:uit
tmdns   0:uit   1:uit   2:uit   3:uit   4:uit   5:uit   6:uit
internet0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   6:uit
mtink   0:uit   1:uit   2:uit   3:uit   4:uit   5:uit   6:uit
cups0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   6:uit
hpoj0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   6:uit
freevo_recordserver 0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   
6:uit
freevo_webserver0:uit   1:uit   2:uit   3:uit   4:uit   5:uit   
6:uit

There is 1 entry for recordserver. I tried running is as user because it 
wouldn't work otherwise (and now its not working at all (but tv is working 
great thanks for that again)

You're right about the plugin (and I don't use it) to be sure I didn't use 
the generic one I looked in my local_conf.py but the 2 lines at the top 
(plugin.remove('tv.generic_record')
plugin_record = plugin.activate('tv.ivtv_record') )
are uncommented and under tv-plugins I have the ivtv basic uncommented.

I thaught and you confirm it that ivtv doesn't use mencoder so somewhere the 
record function gets the wrong command. I have my local_conf.py places in 
/.freevo and I have gone through the whole thing at least 3 times but I 
can't find anything.

#
# XXX Recording is still work in progress. You need to change
# XXX the entire string below to fit your local settings.
# XXX Eventually TV norm (PAL/NTSC) etc will be taken from the
# XXX other flags. VCR_xxx and TV_REC_xxx is not used yet!
# XXX You also need to have the recording daemon running, see
# XXX the website docs or the mailing lists if that fails.
# XXX Example cron script:
# XXX * * * * * /usr/local/freevo/freevo execute src/tv/record_daemon.py
# if using record_daemon from cron
#REC_SCHEDULE_FILE = '/tmp/freevo_record.lst'
# if using the persitant recordserver
TV_RECORD_SCHEDULE = '%s/record_schedule.xml' % FREEVO_CACHEDIR
TV_RECORD_SERVER_IP = 'localhost'
TV_RECORD_SERVER_PORT = 18001
# start every recording X minutes before scheduled,
# and stop X minutes after scheduled - default to zero minutes.
# This must be a value in seconds although at the moment only has
# the percision of one minute.
TV_RECORD_PADDING = 0 * 60
#if os.uname()[0] == 'FreeBSD':
 # FreeBSD's bsdbt848 TV driver doesn't support audio settings?
#  VCR_AUDIO = ''
#else:
#  VCR_AUDIO = (':adevice=%s' % AUDIO_DEVICE +
#   ':audiorate=32000' + # 44100 for better sound
#   ':forceaudio:forcechan=1:' + # Forced mono for bug in my 
driver
#   'buffersize=64') # 64MB capture buffer, change?

# TV capture size for viewing and recording. Max 768x480 for NTSC,
# 768x576 for PAL. Set lower if you have a slow computer!
#
# For the 'tvtime' TV viewing application, only the horizontal size is used.
# Set the horizontal size to 400 or 480 if you have a slow (~500MHz) 
computer,
# it still looks OK, and the picture will not be as jerky.
# The vertical size is always either fullscreen or 480/576 (NTSC/PAL)
# for tvtime.
#TV_VIEW_SIZE = (640, 480)
#TV_REC_SIZE = (640, 480)

# Input formats for viewing and recording. The format affect viewing
# and recording performance. It is specific to your hardware, so read
# the MPlayer docs and experiment with mplayer to see which one fits
# your computer best.
#TV_VIEW_OUTFMT = 'yuy2'   # Better quality, slower on pure FB/X11
#TV_REC_OUTFMT = 'yuy2'
# XXX Please see the mencoder docs for more info about the settings
# XXX below. Some stuff must be changed (adevice), others probably
# XXX should be (Change), or could be in some cases (change?)
#VCR_CMD = ('/usr/share/freevo/unmute; '+
#	CONF.mencoder + ' ' +
#   'tv:// ' +  # New mplayer requires this.
#   '-tv driver=%s:input=%d' % (TV_DRIVER, TV_INPUT) +
#   ':norm=%s' % CONF.tv +
#   ':channel=%(channel)s' +# Filled in by Freevo
#   ':chanlist=%s' % CONF.chanlist +
#   ':width=%d:height=%d' % (TV_REC_SIZE[0], TV_REC_SIZE[1]) +
#   ':outfmt=%s' % TV_REC_OUTFMT +
#   ':device=%s' % TV_DEVICE +
#VCR_AUDIO +# set above
#   ' -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, 
must be #enabled in mencoder!
#   '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 

Re: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py

2004-01-23 Thread Rob Shortt
free vo wrote:
I found in the main log this WARNING..

WARNING: duplicate plugin activation, ignoring:
tv.ivtv_record None None
I have only the 'plugin_record = plugin.activate('tv.ivtv_record')' 
uncommented and not the '#plugin.activate('tv.ivtv_record')' (but I have 
tried with uncommenting that line, didn't work) so I have no idea what 
the duplicate plugi activation is
Make sure you do:

plugin.remove('tv.generic_record')

first, and also make sure you didn't modify freev_config.py (just making 
sure).

-Rob



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py

2004-01-23 Thread free vo
 [HTTPChannel,86,127.0.0.1] removed recording: 
2004-01-23 19:27 to 2004-01-23 20:00  1.tvgids.nl Missie Warmoesstraat
2004/01/23 19:39 CET [HTTPChannel,86,127.0.0.1] 127.0.0.1 - - 
[23/Jan/2004:18:39:03 +] POST / HTTP/1.0 200 256 - 
xmlrpclib.py/1.0.1 (by www.pythonware.com)
2004/01/23 19:39 CET [HTTPChannel,87,127.0.0.1] 127.0.0.1 - - 
[23/Jan/2004:18:39:03 +] POST / HTTP/1.0 200 628 - 
xmlrpclib.py/1.0.1 (by www.pythonware.com)

It seems the freevo_conf.py settings are overriding the ones in the 
local_conf.py. What can I do about this???



reevo start at Fri Jan 23 19:24:06 2004
---
ROM_DRIVES: Auto-detected and added ('/mnt/cdrom', '/dev/scd0', 'CD-1')
Trying to autodetect type of /dev/hdd
/dev/hdd is a cdrom drive
ROM_DRIVES: Auto-detected and added ('/mnt/cdrom2', '/dev/hdd', 'CD-2')
WARNING: no pre-cached data
Freevo will cache each directory when you first enter it. This can
be slow. Start ./freevo cache to pre-cache all directories to speed
up usage of freevo..
But I still get no recording but I have a different error message in the 
recordserver).log..



From: Rob Shortt [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py
Date: Fri, 23 Jan 2004 11:41:33 -0400
free vo wrote:
I found in the main log this WARNING..

WARNING: duplicate plugin activation, ignoring:
tv.ivtv_record None None
I have only the 'plugin_record = plugin.activate('tv.ivtv_record')' 
uncommented and not the '#plugin.activate('tv.ivtv_record')' (but I have 
tried with uncommenting that line, didn't work) so I have no idea what the 
duplicate plugi activation is
Make sure you do:

plugin.remove('tv.generic_record')

first, and also make sure you didn't modify freev_config.py (just making 
sure).

-Rob



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users
_
Play online games with your friends with MSN Messenger 
http://messenger.msn.nl/



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py

2004-01-23 Thread free vo
Thanks, I checked and found several copies, I removed them all but nothing 
gives. Because Rob talked about running the recordserver only as roor and I 
had some difficulty in getting the thing op and running I uninstalled freevo 
completely, removed all folders and files and did a clean install. That gave 
me the following error when I tried ro record:

ROM_DRIVES: Auto-detected and added ('/mnt/cdrom', '/dev/scd0', 'CD-1')
Trying to autodetect type of /dev/hdd
/dev/hdd is a cdrom drive
ROM_DRIVES: Auto-detected and added ('/mnt/cdrom2', '/dev/hdd', 'CD-2')
freevo: unexpected token in line 102
freevo: unexpected token in line 125
freevo: unexpected token in line 186
freevo: unexpected token in line 254
WARNING: no pre-cached data
Freevo will cache each directory when you first enter it. This can
be slow. Start ./freevo cache to pre-cache all directories to speed
up usage of freevo
Om audio cd covers op te zoeken heb je een Amazon.com
Web Services license key nodig. Je lan zo'n key verbrijgen op:
https://associates.amazon.com/exec/panama/associates/join/developer/application.html
plugin audio.coversearch deactivated, reason: no amazon key
Traceback (most recent call last):
 File /usr/lib/python2.3/site-packages/freevo/tv/record_client.py, line 
105, in scheduleRecording
   (status, message) = server.scheduleRecording(marmalade.jellyToXML(prog))
 File /usr/lib/python2.3/xmlrpclib.py, line 1029, in __call__
   return self.__send(self.__name, args)
 File /usr/lib/python2.3/xmlrpclib.py, line 1316, in __request
   verbose=self.__verbose
 File /usr/lib/python2.3/xmlrpclib.py, line 1062, in request
   self.send_content(h, request_body)
 File /usr/lib/python2.3/xmlrpclib.py, line 1176, in send_content
   connection.endheaders()
 File /usr/lib/python2.3/httplib.py, line 712, in endheaders
   self._send_output()
 File /usr/lib/python2.3/httplib.py, line 597, in _send_output
   self.send(msg)
 File /usr/lib/python2.3/httplib.py, line 564, in send
   self.connect()
 File /usr/lib/python2.3/httplib.py, line 548, in connect
   raise socket.error, msg
error: (111, 'Connection refused')

It's a different error. I checked if my recordserver was running

mtink   0:uit   1:uit   2:uit   3:uit   4:uit   5:uit   6:uit
cups0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   6:uit
hpoj0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   6:uit
freevo_recordserver 0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   
6:uit
freevo_webserver0:uit   1:uit   2:aan   3:aan   4:aan   5:aan   
6:uit

It is.

I checked the recordserver IP, it's localhost, thats' ok. Port is 18001, ok 
to. That's all I can think of to check
Hope you can help.


From: Michael Ruelle [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] Recording + WinTV pvr 250 + local_conf.py
Date: 23 Jan 2004 14:15:09 -0500
freevo looks for local_conf.py in several places. make sure you don't
have multiple copies running around. try this as root:
updatedb; locate local_conf.py

--

_
Hotmail en Messenger on the move 
http://www.msn.nl/communicatie/smsdiensten/hotmailsmsv2/



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording + WinTV pvr 250 + local_conf.py

2004-01-22 Thread free vo
Hi, I'm trying to get the recording function to work properly. I have the 
recordserver running, when I'm in the TV GUIDE menu, F6, I can hoose record 
and I get a confirmation. However, I don't see anything happen and in my 
download folder I don't see the mpeg.

In my log I find

2004/01/22 16:25 CET [*RecordServer*] Recorder::Record: 
/usr/share/freevo/unmute; /usr/local/bin/mencoder tv:// -tv 
driver=v4l:input=0:norm=ntsc:channel=7+:chanlist=us-cable:width=640:height=480:outfmt=yuy2:device=/dev/video0:adevice=/dev/dsp:audiorate=32000:forceaudio:forcechan=1:buffersize=64 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 708 -o 
/tmp/freevo/Videos/01-22_16:25_Kinderfilm_theater_-_.avi ; 
/usr/share/freevo/mute;
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: mode=record
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: 
cmd=/usr/share/freevo/unmute; /usr/local/bin/mencoder tv:// -tv 
driver=v4l:input=0:norm=ntsc:channel=7+:chanlist=us-cable:width=640:height=480:outfmt=yuy2:device=/dev/video0:adevice=/dev/dsp:audiorate=32000:forceaudio:forcechan=1:buffersize=64 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 708 -o 
/tmp/freevo/Videos/01-22_16:25_Kinderfilm_theater_-_.avi ; 
/usr/share/freevo/mute;
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/01/22 16:25 CET [*RecordServer*] popen  /usr/share/freevo/unmute; 
/usr/local/bin/mencoder tv:// -tv 
driver=v4l:input=0:norm=ntsc:channel=7+:chanlist=us-cable:width=640:height=480:outfmt=yuy2:device=/dev/video0:adevice=/dev/dsp:audiorate=32000:forceaudio:forcechan=1:buffersize=64 
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=1200:keyint=30 -oac mp3lame 
-lameopts br=128:cbr:mode=3 -ffourcc divx -endpos 708 -o 
/tmp/freevo/Videos/01-22_16:25_Kinderfilm_theater_-_.avi ; 
/usr/share/freevo/mute;
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: past wait()!!
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER GOT EVENT NOTICE
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/01/22 16:25 CET [*RecordServer*] killing pid 6946 with sig 15
2004/01/22 16:25 CET [*RecordServer*] recorderver: After wait()
2004/01/22 16:25 CET [*RecordServer*] RECORDSERVER HANDLING EVENT
2004/01/22 16:25 CET [*RecordServer*] waiting on pid 6946
2004/01/22 16:25 CET [*RecordServer*] Record_Thread::run: mode=idle...

but I don't use ntsc and the setting don't look right to me. I have 
commented all the VCR_CMD in the local_conf.py, and the ivtv settings are 
allright.

_
Hotmail en Messenger on the move 
http://www.msn.nl/communicatie/smsdiensten/hotmailsmsv2/



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] recording..

2004-01-15 Thread Matthieu Weber
On Wed 14.01.2004 at 12:03:01PM -0500, bikr wrote:
 If I put input 1 it's blue screen , input 0 is green with static up top ,
 which for my Ati TV-Wonder VE is the no signal screen , does yours go green
 with static for both 0 and 1??  and blue if no signal on 2??

I tried yesterday evening an ATI 3D Rage II+ card (that's the name of
the processor, anyway), and got the same results. The Gatos drivers seem
unstable and not work properly when using XVideo as video output driver
with TV (but it works fine when watching a DivX...) x11 works fine,
though (but eats a lot of CPU time).

Matthieu, fighting to find *the* right display adapter for an RGB-SCART
connector
-- 
 (~._.~)Matthieu Weber - Université de Jyväskylä (~._.~)
  ( ? )email : [EMAIL PROTECTED]  ( ? ) 
 ()- -()   public key id : 452AE0AD  ()- -()
 (_)-(_)  Humor ist, wenn man trotzdem lacht (Germain Muller)  (_)-(_)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


  1   2   >