Is the Rendevous plugin meant to help users find the web interface, or
to help the freevo app and webserver find a recordserver?
Aubin Paul wrote:
I used it a few times after I initially wrote it, but I haven't been
using it recently. I'm guessing some things have changed and I never
updated it
In the nightly I just installed tonight, the value of VCR_AUDIO inherits
from AUDIO_DEVICE, like this:
VCR_AUDIO = (':adevice=%s' % AUDIO_DEVICE +
':audiorate=32000' + # 44100 for better sound
':forceaudio:forcechan=1:' + # Forced mono for bug in my
driver
Attached is a teeny tiny patch that fixes a problem I found in the
recordserver.py, RecordServer.adjustPriority in CVS.
It's simply a missing "self dot" qualification when getFavorite is called.
-Ross
574c574
< (status, me) = getFavorite(favname)
---
> (status, me) = self.getFavo