Re: [Freevo-users] [Freevo-devel] Conflict resolution

2007-01-21 Thread Duncan Webb
Dirk Meyer wrote:
> "Justin Wetherell" wrote:
>> Hey guys/gals,
>>
>> I'd like to implement some sort of conflict resolution. Is the priority
>> system current working? Does anyone have any ideas of a decent technique to
>> do conflict resolution?

Do you mean conflicts in overlapping recordings?

If so then there is none in freevo one, except to highlight them. The
priority should be:
manual recordings (very deliberate recording)
scheduled recording (deliberate recording, and can see the conflict)
favourites in order of preference.

Duncan

> 
> There is some code in 2.0 which works well. It is based on priorities
> and card quality. Check out svn://svn.freevo.org/freevo/trunk/tvserver
> file src/conflict.py
> 
> 
> Dischi
> 
> 
> 
> 
> 
> -
> 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.php&p=sourceforge&CID=DEVDEV
> 
> 
> 
> 
> ___
> Freevo-devel mailing list
> Freevo-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-devel



-
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.php&p=sourceforge&CID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Making fastword and seek work correctly

2007-01-21 Thread Stephen Rowles

Hi all,

I use a MS remote (version 2), which has separate fast forward/rewind 
and skip/replay.


I wanted to have the ability to fast forward as well as skip in time. 
Having changed event.py and xine.py to make the changes. skip / reply 
still uses the SEEK event, where as fast forward and rewind now use the 
new SPEED event instead. This means I can now fast forward and re-wind 
recordings as well as skipping by a minute.


I also removed the 30 limit from xine.py to allow me to skip forward 
greater amounts. I had tried to get xine to skip 5 minutes by passing in 
300 seconds, but it won't play ball with any value greater than 60 :(


I've attached my changes as patches to 1.6.2 (the version I am running) 
in case people would find them useful. There is also a spurious edit to 
xine.py  I needed to do to make the post play commands work. But I 
didn't know how to remove it.


2 diffs:

/usr/lib/python2.4/site-packages/freevo/video/plugins/xine.py
and
/usr/lib/python2.4/site-packages/freevo/event.py

I'm not great with patches - I can send the real files if needed :D
143d142
<
150d148
<
182a181,187
> execute commands if defined
> """
> if config.VIDEO_POST_PLAY != '':
> if self.item.mode == 'dvd':
> os.system( config.VIDEO_POST_PLAY )
>
> """
202c207
< if event == PAUSE or event == PLAY:
---
> if event == PAUSE:
205a211,214
>   if event == PLAY:
> self.app.write('SpeedReset\n')
> return True
>
221,222d229
< else:
< pos = 30
225a233,240
>   if event == SPEED:
>   dir = event.arg
>   if dir == '+':
> self.app.write('SpeedFaster\n')
> else:
> self.app.write('SpeedSlower\n')
>   return True
>
323a339,350
>   if event == MIXER_VOLUP:
> if self.item.mode == 'dvd':
> if config.VIDEO_VOL_UP_CMD != '':
> os.system( config.VIDEO_VOL_UP_CMD )
> return True
>
> if event == MIXER_VOLDOWN:
> if self.item.mode == 'dvd':
> if config.VIDEO_VOL_DOWN_CMD != '':
> os.system( config.VIDEO_VOL_DOWN_CMD )
> return True
>

154a155
> SPEED= Event('SPEED')
319,320c320,323
< 'REW'   : Event(SEEK, arg=-10),
< 'FFWD'  : Event(SEEK, arg=10),
---
> 'REPLAY': Event(SEEK, arg=-60),
> 'SKIP'  : Event(SEEK, arg=60),
> 'REW'   : Event(SPEED, arg='-'),
> 'FFWD'  : Event(SPEED, arg='+'),
345,346c348,351
< 'REW'   : Event(SEEK, arg=-10),
< 'FFWD'  : Event(SEEK, arg=10),
---
> 'REPLAY': Event(SEEK, arg=-60),
> 'SKIP'  : Event(SEEK, arg=60),
> 'REW'   : Event(SPEED, arg='-'),
> 'FFWD'  : Event(SPEED, arg='+'),
366,367c371,374
< 'REW'   : Event(SEEK, arg=-10),
< 'FFWD'  : Event(SEEK, arg=10),
---
> 'REPLAY': Event(SEEK, arg=-60),
> 'SKIP'  : Event(SEEK, arg=60),
> 'REW'   : Event(SPEED, arg='-'),
> 'FFWD'  : Event(SPEED, arg='+'),
384,385c391,394
< 'REW'   : Event(SEEK, arg=-10),
< 'FFWD'  : Event(SEEK, arg=10),
---
> 'REPLAY': Event(SEEK, arg=-60),
> 'SKIP'  : Event(SEEK, arg=60),
> 'REW'   : Event(SPEED, arg='-'),
> 'FFWD'  : Event(SPEED, arg='+'),
409,410c418,421
< 'REW'   : Event(SEEK, arg=-10),
< 'FFWD'  : Event(SEEK, arg=10),
---
> 'REPLAY': Event(SEEK, arg=-60),
> 'SKIP'  : Event(SEEK, arg=60),
> 'REW'   : Event(SPEED, arg='-'),
> 'FFWD'  : Event(SPEED, arg='+'),
-
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.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Conflict resolution

2007-01-21 Thread Dirk Meyer
"Justin Wetherell" wrote:
> Is the priority system implemented in 1.7 svn currently working?

No idea. The 2.0 tvserver code is a complete rewrite.


Dischi

-- 
You sound reasonable...Time to up my medication.


pgpm3Pkf73wZs.pgp
Description: PGP signature
-
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.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Conflict resolution

2007-01-21 Thread Justin Wetherell

Is the priority system implemented in 1.7 svn currently working?

On 1/21/07, Dirk Meyer <[EMAIL PROTECTED]> wrote:


"Justin Wetherell" wrote:
> Hey guys/gals,
>
> I'd like to implement some sort of conflict resolution. Is the priority
> system current working? Does anyone have any ideas of a decent technique
to
> do conflict resolution?

There is some code in 2.0 which works well. It is based on priorities
and card quality. Check out svn://svn.freevo.org/freevo/trunk/tvserver
file src/conflict.py


Dischi

--
Error 13: Illegal brain function. Process terminated.


-
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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Conflict resolution

2007-01-21 Thread Dirk Meyer
"Justin Wetherell" wrote:
> Hey guys/gals,
>
> I'd like to implement some sort of conflict resolution. Is the priority
> system current working? Does anyone have any ideas of a decent technique to
> do conflict resolution?

There is some code in 2.0 which works well. It is based on priorities
and card quality. Check out svn://svn.freevo.org/freevo/trunk/tvserver
file src/conflict.py


Dischi

-- 
Error 13: Illegal brain function. Process terminated.


pgpGFwIEU670w.pgp
Description: PGP signature
-
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.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Conflict resolution

2007-01-21 Thread Justin Wetherell

Hey guys/gals,

I'd like to implement some sort of conflict resolution. Is the priority
system current working? Does anyone have any ideas of a decent technique to
do conflict resolution?

If anyone would like to help out, it would be appreciated.

Thanks,
Justin
-
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.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] mplayer and svd's

2007-01-21 Thread Cornelius Koelbel
Hello,

found some of the old self-burned super video CDs and put them into my 
freevo box, which is running with directfb (matrox) and freevo 1.6.0.

But when watching the films i get the problem, that the video is not 
fullscreen - since it is the PAL resoultion of 480x576 points. Any idea 
how to zoom these to fullscreen?

Thanks in advance
Cornelius

--
This Mail was scanned using Mailscanner.info


-
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.php&p=sourceforge&CID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] web tv question

2007-01-21 Thread Jaap Struyk
> Has anybody set up freevo to read a networked video stream for a tv
> program, from the web?

VIDEO_ITEMS = [ '/home/freevo/.freevofreevo/webtv.fxd' ]
-- 
Groetjes Japie


  
  

  
	
	rtsp://realstreams.omroep.nl/tv/nos/journaal/bb.laatste.rm
	  mplayer
	
  
  
	Altijd het laatste NOS journaal.
  



  
	
	http://81.23.249.10/caz_studio_03
	  mplayer
	
  
  
	CAZ, Live...
  


  

-
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.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Freevo doesn't start MPLAYER with correct "cache"

2007-01-21 Thread Faser
Hi Guys,

some how freevo seems to ignore the cache setting in local_conf.py.

I have the following seeting in local_conf.py

MPLAYER_ARGS = { 'dvd': '-cache 8192',
 'vcd': '-cache 4096',
 'cd' : '-cache 1024 -cdda speed=2',
 'tv' : '-nocache',
 'ivtv'   : '-cache 8192',
 'avi': '-cache 5000 -idx',
 'rm' : '-cache 8192 -forceidx',
 'rmvb'   : '-cache 5000 -forceidx',
 'webcam' : 'tv:// -tv 
driver=v4l:width=352:height=288:outfmt=yuy2:device=/dev/video2',
 'default': '-cache 5000'
 }

But all the time when I start webradio freevo starts mplayer with 
"-cache 100" only.

/opt/mplayer-bin/bin/mplayer-bin -slave -autosync 100 -nolirc -autoq 100 
-screenw 768 -screenh 576 -fs -vo null -ao alsa -cache 100 
mms://213.200.75.252/swr3$livestream.wma

Any explanantion?

Cheers

Faser

-
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.php&p=sourceforge&CID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] web tv question

2007-01-21 Thread naudefj
Hi Duncan,

On Saturday 20 January 2007 19:45, Duncan Webb wrote:
>
> Has anybody set up freevo to read a networked video stream for a tv
> program, from the web?
>

One should be able to create a MovieFxd pointing to the TV feed and add it to 
VIDEO_ITEMS in local_conf.py. Example:



  

  
http://zdpub.vo.llnwd.net/o2/dltv/hdtvspecial/dl.tv.hdtv.mp4

  


  n-tv live video stream

  


Best regards.

Frank

-
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.php&p=sourceforge&CID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users