[vdr] Conax CAM:s and multiple streams..
Hi! I'm looking for Conax CAM:s that support more than two simultaneous streams. I have a 'Dual CA Conax & Irdeto' which only supports watching two channels at a time and I need four or more. Has someone allready done some documentation on CAM:s somewhere? If not, I could document your experiences and share the information. Sincerely Markus Ingalsuo ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Conax CAM:s and multiple streams..
Markus Ingalsuo wrote: > I'm looking for Conax CAM:s that support more than two simultaneous > streams. I have a 'Dual CA Conax & Irdeto' which only supports watching > two channels at a time and I need four or more. Has someone allready > done some documentation on CAM:s somewhere? If not, I could document > your experiences and share the information. > I have Conax 4.00e that can decrypt at least two streams. Cannot test now how many actually because I've switched to VDR 1.5.9 and now it only supports one stream with this CA, previously with VDR 1.4.7 it could handle at least two. Anyone know how to bypass this limitation? -- Kende ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Rotor plugin crashing with valid dat a in diseqc.conf
> Built a new system with an Athlon64 x2 running and64 linux. I went with > vdr-1.5.9. I tried to use the diseqc.conf from my old system, but vdr > crashes in startup when the rotor plugin is used. I found the problem seems > to be the use of commands to control the rotor in the diseqc.conf. with [E0 > 31 6B 26] and rotor plugin, vdr crashes at startup. remove ether the rotor > plugin or all [E0 31 6B xx] entries and it starts. I used the vdr-1.5.5 > patch in the patches folder of rotor. may be the logs in syslog from rotor plugin will help to you. For this you need to use this path --- 1/dvbdevice.c 2007-09-07 21:54:12.0 +0200 +++ 2/dvbdevice.c 2007-09-10 18:52:42.0 +0200 @@ -168,6 +168,7 @@ dvb_frontend_event Event; while (ioctl(fd_frontend, FE_GET_EVENT, &Event) == 0) ; // just to clear the event queue - we'll read the actual status below + isyslog("Rotor-command %X %X %X %X %X sent",diseqc_cmd.msg[0],diseqc_cmd.msg[1],diseqc_cmd.msg[2],diseqc_cmd.msg[3],diseqc_cmd.msg[4]);/*MIROHA*/ } } while (1) { Igor ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [Wishlist] Loggingsection in the PLUGIN.html
Hi Klaus, I noticed there isn't any wird about the loggingmechanism in the plugin.html, so you have to search through the existing code in order to see how to use it. Maybe this should be added. Shure, it's not very important, but because there is a common loggingmechanism, it should receive one or two sentences :) Maybe something like (just an idea): - If the plugin should print logmessages you can use dsyslog, isyslog or esyslog. dsyslog prints the logmessage only if the loglevel of vdr is set to the level DEBUG. isyslog prints the logmessage only if the loglevel of vdr is set to the level INFO. esyslog always prints the logmessage. The output of this log is the syslog of the system vdr is running on. The logmessage can be formatted like printf. Note: The logmessage will be given as provided, the pluginname will not automatically be added, so make shure your logmessages are obvious enough. - Greetings Torsten ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Conax CAM:s and multiple streams..
Marko Kenttälä wrote: > Markus Ingalsuo wrote: >> I'm looking for Conax CAM:s that support more than two simultaneous >> streams. I have a 'Dual CA Conax & Irdeto' which only supports watching >> two channels at a time and I need four or more. Has someone allready >> done some documentation on CAM:s somewhere? If not, I could document >> your experiences and share the information. >> > > I have Conax 4.00e that can decrypt at least two streams. Cannot test > now how many actually because I've switched to VDR 1.5.9 and now it only > supports one stream with this CA, previously with VDR 1.4.7 it could > handle at least two. Anyone know how to bypass this limitation? > This was possible in 1.4.x by fixing the CA id to the specific card instead of B00. VDR would just try to use the card wihout caring about CA stuff (if you had B00 it would not let you access multiple streams). I'm not sure how the same could be achieved with 1.5.x though. But in general the implementation in 1.5.x is now much better because you can have multiple CAM's of the same type but with different set of services on each. It's just that Conax CAMs don't respond to the standard way of asking how many streams it can decrypt simultaneosly I guess.. -- Heikki M ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] Rotor plugin crashing with valid data in diseqc.conf
Applied the patch and started with the problem conf. Not much help. Only mention I found of any problem was in the syslog: Sep 21 15:38:59 x64VDR vdr: [20139] starting plugin: dvd Sep 21 15:38:59 x64VDR vdr: [20139] starting plugin: femon Sep 21 15:38:59 x64VDR vdr: [20139] starting plugin: weatherng Sep 21 15:38:59 x64VDR vdr: [20139] plugin 'weatherng' called obsolete function RegisterI18n() Sep 21 15:38:59 x64VDR vdr: [20139] starting plugin: rotor Sep 21 15:38:59 x64VDR vdr: [20139] plugin 'rotor' called obsolete function RegisterI18n() Sep 21 15:38:59 x64VDR vdr: [20139] loading /etc/vdr/plugins/rotor.conf Sep 21 15:38:59 x64VDR vdr: [20150] CI adapter on device 0 thread started (pid=20139, tid=20150) Sep 21 15:38:59 x64VDR vdr: [20153] EPGSearch: conflictcheck thread started (pid=20139, tid=20153) The Weatherng plugin, thoug showing the same error, seems ok. - Original Message - From: "Igor" <[EMAIL PROTECTED]> To: "VDR Mailing List" Sent: Friday, September 21, 2007 2:40 AM Subject: Re: [vdr]Rotor plugin crashing with valid data in diseqc.conf > may be the logs in syslog from rotor plugin will help to you. For this you need to use this path > > --- 1/dvbdevice.c 2007-09-07 21:54:12.0 +0200 > +++ 2/dvbdevice.c 2007-09-10 18:52:42.0 +0200 > @@ -168,6 +168,7 @@ > dvb_frontend_event Event; > while (ioctl(fd_frontend, FE_GET_EVENT, &Event) == 0) >; // just to clear the event queue - we'll read the actual status below > + isyslog("Rotor-command %X %X %X %X %X sent",diseqc_cmd.msg[0],diseqc_cmd.msg[1],diseqc_cmd.msg[2],diseqc_cmd.msg[3 ],diseqc_cmd.msg[4]);/*MIROHA*/ > } > } >while (1) { > > > > Igor ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr