Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: vdr 1.1.15 time shift doesn`t work



Joerg Riechardt wrote:
> 
> ...
> > > channels.conf
> > > Das Erste:11837:h:S19.2E:27500:101:102:104:301:28106
> > > ZDF:11954:h:S19.2E:27500:110:120:130:301:28006
> > >
> > > ca.conf
> > > 101    CAM
> > > 301    Astra
> > > 222    Hotbird
> > >
> > > setup.conf
> > > CaCaps = 1 301 222
> > > CaCaps = 2 301 101
> >
> > Well, as I suspected: the channels _are_ marked as "conditional access".
> 
> Ok, now I understand what you meant with "encrypted".
> 
> >
> > You need to set the 'Ca' parameters to 0 in order to enable multiple
> > recordings per DVB card or simultaneous recording and replay.
> 
> Yes! With 0 it works. Thanks!
> 
> >
> >
> > The different satellites should be switched to using DiSEqC.
> 
> In the moment I use 2 cards. The first gets Astra and Hotbird.
> The second Astra only. So with a Hotbird transmission I can't timeshift.
> When I put in the 3rd card again, there is Astra on card 1 and 3, Hotbird on card 2.
> No timeshift at all.
> I think this limitation comes from the way vdr uses ca.conf, which was originally meant
> for CAMs.
> But I and other people, who posted on this list use ca.conf for assigning satellites to
> cards.
> It can't be done differently, can it?
> For people like me it's a wish, that one day vdr would be able to take that into
> account.
> Am I clear enough? Do you understand what I mean?

You could achieve this through a quick hack in cDvbDevice::ProvidesSource().
Just do something along the lines of

  if (CardIndex() == 0 && Source != cSource::FromString("S19.2E") ||
      CardIndex() == 1 && Source != cSource::FromString("S13E"))
     return false;

before the other lines in that function. Haven't explicitly tested this
(not even sure if it will compile), but you should get the idea.
Of course you also need to set the 'source' parameter correctly for all
your channels.

Klaus
-- 
_______________________________________________________________

Klaus Schmidinger                       Phone: +49-8635-6989-10
CadSoft Computer GmbH                   Fax:   +49-8635-6989-40
Hofmark 2                               Email:   kls@cadsoft.de
D-84568 Pleiskirchen, Germany           URL:     www.cadsoft.de
_______________________________________________________________


-- 
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index