Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-21 Thread Marek Hajduk
Marek Hajduk píše v St 13. 05. 2009 v 23:56 +0200:
> I found out that errors in picture is caused by decryption of channel.
> With every new ecm I get error (break up) in picture. Interesting thing
> is that packet UPC has  about 70 channels, however only several has
> problem with decryption.
> 
> Can somebody tell me, how can I provide more debug info?
> 
> BR
> 
> Marky
> 
> 
This problem is solved by new sc-plugin from today.

BR

Marky 


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-13 Thread Marek Hajduk
I found out that errors in picture is caused by decryption of channel.
With every new ecm I get error (break up) in picture. Interesting thing
is that packet UPC has  about 70 channels, however only several has
problem with decryption.

Can somebody tell me, how can I provide more debug info?

BR

Marky




Marek Hajduk píše v Út 05. 05. 2009 v 10:41 +0200: 
> I have tu confirm, that I used both patches and it now works-I get
> picture. But picture has errors.
> 
> BR
> 
> Marky
> 
> 
> Ales Jurik píše v Út 05. 05. 2009 v 09:59 +0200:
> > On Tuesday 05 of May 2009, Klaus Schmidinger wrote:
> > > On 05/05/09 00:04, Ales Jurik wrote:
> > ...
> > > >
> > > > Many thanks, it seems to works (with type of 2), but it is necessary to
> > > > set "Update channels" to "no".
> > >
> > > Please try this:
> > >
> > > --- remux.c 2009/05/03 14:43:25 2.20
> > > +++ remux.c 2009/05/05 07:27:21
> > > @@ -795,6 +795,7 @@
> > >scanner <<= 8;
> > >scanner |= Data[i];
> > >switch (type) {
> > > +case 0x01: // MPEG 1 video
> > >  case 0x02: // MPEG 2 video
> > >   if (scanner == 0x0100) { // Picture Start
> > > Code if (synced && Processed)
> > >
> > > With this you should be able to turn "Update channels" on again.
> > >
> > > Klaus
> > 
> > Thanks for pointing me to the problem. But for working it it was necessary 
> > to 
> > add these two changes more:
> > 
> > --- remux.c 2009-05-05 09:44:01.0 +0200
> > +++ remux.c 2009-05-05 09:50:56.854167360 +0200
> > @@ -481,6 +481,7 @@ void cPatPmtParser::ParsePmt(const uchar
> >   for (SI::Loop::Iterator it; Pmt.streamLoop.getNext(stream, it); ) {
> >   dbgpatpmt(" stream type = %02X, pid = %d", 
> > stream.getStreamType(), stream.getPid());
> >   switch (stream.getStreamType()) {
> > +   case 0x01: // MPEG1
> > case 0x02: // STREAMTYPE_13818_VIDEO
> > case 0x1B: // MPEG4
> >vpid = stream.getPid();
> > @@ -702,7 +703,7 @@ cFrameDetector::cFrameDetector(int Pid, 
> >newFrame = independentFrame = false;
> >numPtsValues = 0;
> >numIFrames = 0;
> > -  isVideo = type == 0x02 || type == 0x1B; // MPEG 2 or MPEG 4
> > +  isVideo = type == 0x01 || type == 0x02 || type == 0x1B; // MPEG 1,2 or 4
> >frameDuration = 0;
> >framesInPayloadUnit = framesPerPayloadUnit = 0;
> >payloadUnitOfFrame = 0;
> > 
> > Now it seems to works as on older vdr versions (with PES), but video 
> > discontinuities are still present on Spektrum (as on many other channels 
> > from 
> > other providers). On STB's these discontinuities are not present in video.
> > 
> > Thanks and BR,
> > 
> > Ales
> > 
> > ___
> > vdr mailing list
> > vdr@linuxtv.org
> > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
> 
> 
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-10 Thread Klaus Schmidinger
On 05/05/09 13:52, alexw wrote:
> Hi,
> 
> You can also add one more case :
> 
> case 0x19: // advanced codec HD digital television service

Can you please post a tested patch that implements this?

Klaus

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-05 Thread alexw
Hi,

You can also add one more case :

case 0x19: // advanced codec HD digital television service

Rgds,

Alex

Marek Hajduk wrote:
> I made recording with vdr 1.7.7 and prewious patches.
> I get picture with several errors. Here: 
> http://rapidshare.com/files/229350889/2009-05-05.10.45.1220-0.rec.tar.gz.html
>
> BR
>
> Marky
> Marek Hajduk píše v Út 05. 05. 2009 v 10:41 +0200:
>   
>> I have tu confirm, that I used both patches and it now works-I get
>> picture. But picture has errors.
>>
>> BR
>>
>> Marky
>>
>>
>> Ales Jurik píše v Út 05. 05. 2009 v 09:59 +0200:
>> 
>>> On Tuesday 05 of May 2009, Klaus Schmidinger wrote:
>>>   
 On 05/05/09 00:04, Ales Jurik wrote:
 
>>> ...
>>>   
> Many thanks, it seems to works (with type of 2), but it is necessary to
> set "Update channels" to "no".
>   
 Please try this:

 --- remux.c 2009/05/03 14:43:25 2.20
 +++ remux.c 2009/05/05 07:27:21
 @@ -795,6 +795,7 @@
scanner <<= 8;
scanner |= Data[i];
switch (type) {
 +case 0x01: // MPEG 1 video
  case 0x02: // MPEG 2 video
   if (scanner == 0x0100) { // Picture Start
 Code if (synced && Processed)

 With this you should be able to turn "Update channels" on again.

 Klaus
 
>>> Thanks for pointing me to the problem. But for working it it was necessary 
>>> to 
>>> add these two changes more:
>>>
>>> --- remux.c 2009-05-05 09:44:01.0 +0200
>>> +++ remux.c 2009-05-05 09:50:56.854167360 +0200
>>> @@ -481,6 +481,7 @@ void cPatPmtParser::ParsePmt(const uchar
>>>   for (SI::Loop::Iterator it; Pmt.streamLoop.getNext(stream, it); ) {
>>>   dbgpatpmt(" stream type = %02X, pid = %d", 
>>> stream.getStreamType(), stream.getPid());
>>>   switch (stream.getStreamType()) {
>>> +   case 0x01: // MPEG1
>>> case 0x02: // STREAMTYPE_13818_VIDEO
>>> case 0x1B: // MPEG4
>>>vpid = stream.getPid();
>>> @@ -702,7 +703,7 @@ cFrameDetector::cFrameDetector(int Pid, 
>>>newFrame = independentFrame = false;
>>>numPtsValues = 0;
>>>numIFrames = 0;
>>> -  isVideo = type == 0x02 || type == 0x1B; // MPEG 2 or MPEG 4
>>> +  isVideo = type == 0x01 || type == 0x02 || type == 0x1B; // MPEG 1,2 or 4
>>>frameDuration = 0;
>>>framesInPayloadUnit = framesPerPayloadUnit = 0;
>>>payloadUnitOfFrame = 0;
>>>
>>> Now it seems to works as on older vdr versions (with PES), but video 
>>> discontinuities are still present on Spektrum (as on many other channels 
>>> from 
>>> other providers). On STB's these discontinuities are not present in video.
>>>
>>> Thanks and BR,
>>>
>>> Ales
>>>
>>> ___
>>> vdr mailing list
>>> vdr@linuxtv.org
>>> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>>>   
>> ___
>> vdr mailing list
>> vdr@linuxtv.org
>> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>> 
>
>
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
>   



___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-05 Thread Marek Hajduk
I made recording with vdr 1.7.7 and prewious patches.
I get picture with several errors. Here: 
http://rapidshare.com/files/229350889/2009-05-05.10.45.1220-0.rec.tar.gz.html

BR

Marky
Marek Hajduk píše v Út 05. 05. 2009 v 10:41 +0200:
> I have tu confirm, that I used both patches and it now works-I get
> picture. But picture has errors.
> 
> BR
> 
> Marky
> 
> 
> Ales Jurik píše v Út 05. 05. 2009 v 09:59 +0200:
> > On Tuesday 05 of May 2009, Klaus Schmidinger wrote:
> > > On 05/05/09 00:04, Ales Jurik wrote:
> > ...
> > > >
> > > > Many thanks, it seems to works (with type of 2), but it is necessary to
> > > > set "Update channels" to "no".
> > >
> > > Please try this:
> > >
> > > --- remux.c 2009/05/03 14:43:25 2.20
> > > +++ remux.c 2009/05/05 07:27:21
> > > @@ -795,6 +795,7 @@
> > >scanner <<= 8;
> > >scanner |= Data[i];
> > >switch (type) {
> > > +case 0x01: // MPEG 1 video
> > >  case 0x02: // MPEG 2 video
> > >   if (scanner == 0x0100) { // Picture Start
> > > Code if (synced && Processed)
> > >
> > > With this you should be able to turn "Update channels" on again.
> > >
> > > Klaus
> > 
> > Thanks for pointing me to the problem. But for working it it was necessary 
> > to 
> > add these two changes more:
> > 
> > --- remux.c 2009-05-05 09:44:01.0 +0200
> > +++ remux.c 2009-05-05 09:50:56.854167360 +0200
> > @@ -481,6 +481,7 @@ void cPatPmtParser::ParsePmt(const uchar
> >   for (SI::Loop::Iterator it; Pmt.streamLoop.getNext(stream, it); ) {
> >   dbgpatpmt(" stream type = %02X, pid = %d", 
> > stream.getStreamType(), stream.getPid());
> >   switch (stream.getStreamType()) {
> > +   case 0x01: // MPEG1
> > case 0x02: // STREAMTYPE_13818_VIDEO
> > case 0x1B: // MPEG4
> >vpid = stream.getPid();
> > @@ -702,7 +703,7 @@ cFrameDetector::cFrameDetector(int Pid, 
> >newFrame = independentFrame = false;
> >numPtsValues = 0;
> >numIFrames = 0;
> > -  isVideo = type == 0x02 || type == 0x1B; // MPEG 2 or MPEG 4
> > +  isVideo = type == 0x01 || type == 0x02 || type == 0x1B; // MPEG 1,2 or 4
> >frameDuration = 0;
> >framesInPayloadUnit = framesPerPayloadUnit = 0;
> >payloadUnitOfFrame = 0;
> > 
> > Now it seems to works as on older vdr versions (with PES), but video 
> > discontinuities are still present on Spektrum (as on many other channels 
> > from 
> > other providers). On STB's these discontinuities are not present in video.
> > 
> > Thanks and BR,
> > 
> > Ales
> > 
> > ___
> > vdr mailing list
> > vdr@linuxtv.org
> > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
> 
> 
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-05 Thread Marek Hajduk
I have tu confirm, that I used both patches and it now works-I get
picture. But picture has errors.

BR

Marky


Ales Jurik píše v Út 05. 05. 2009 v 09:59 +0200:
> On Tuesday 05 of May 2009, Klaus Schmidinger wrote:
> > On 05/05/09 00:04, Ales Jurik wrote:
> ...
> > >
> > > Many thanks, it seems to works (with type of 2), but it is necessary to
> > > set "Update channels" to "no".
> >
> > Please try this:
> >
> > --- remux.c 2009/05/03 14:43:25 2.20
> > +++ remux.c 2009/05/05 07:27:21
> > @@ -795,6 +795,7 @@
> >scanner <<= 8;
> >scanner |= Data[i];
> >switch (type) {
> > +case 0x01: // MPEG 1 video
> >  case 0x02: // MPEG 2 video
> >   if (scanner == 0x0100) { // Picture Start
> > Code if (synced && Processed)
> >
> > With this you should be able to turn "Update channels" on again.
> >
> > Klaus
> 
> Thanks for pointing me to the problem. But for working it it was necessary to 
> add these two changes more:
> 
> --- remux.c   2009-05-05 09:44:01.0 +0200
> +++ remux.c   2009-05-05 09:50:56.854167360 +0200
> @@ -481,6 +481,7 @@ void cPatPmtParser::ParsePmt(const uchar
>   for (SI::Loop::Iterator it; Pmt.streamLoop.getNext(stream, it); ) {
>   dbgpatpmt(" stream type = %02X, pid = %d", 
> stream.getStreamType(), stream.getPid());
>   switch (stream.getStreamType()) {
> +   case 0x01: // MPEG1
> case 0x02: // STREAMTYPE_13818_VIDEO
> case 0x1B: // MPEG4
>vpid = stream.getPid();
> @@ -702,7 +703,7 @@ cFrameDetector::cFrameDetector(int Pid, 
>newFrame = independentFrame = false;
>numPtsValues = 0;
>numIFrames = 0;
> -  isVideo = type == 0x02 || type == 0x1B; // MPEG 2 or MPEG 4
> +  isVideo = type == 0x01 || type == 0x02 || type == 0x1B; // MPEG 1,2 or 4
>frameDuration = 0;
>framesInPayloadUnit = framesPerPayloadUnit = 0;
>payloadUnitOfFrame = 0;
> 
> Now it seems to works as on older vdr versions (with PES), but video 
> discontinuities are still present on Spektrum (as on many other channels from 
> other providers). On STB's these discontinuities are not present in video.
> 
> Thanks and BR,
> 
> Ales
> 
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-05 Thread Ales Jurik
On Tuesday 05 of May 2009, Klaus Schmidinger wrote:
> On 05/05/09 00:04, Ales Jurik wrote:
...
> >
> > Many thanks, it seems to works (with type of 2), but it is necessary to
> > set "Update channels" to "no".
>
> Please try this:
>
> --- remux.c 2009/05/03 14:43:25 2.20
> +++ remux.c 2009/05/05 07:27:21
> @@ -795,6 +795,7 @@
>scanner <<= 8;
>scanner |= Data[i];
>switch (type) {
> +case 0x01: // MPEG 1 video
>  case 0x02: // MPEG 2 video
>   if (scanner == 0x0100) { // Picture Start
> Code if (synced && Processed)
>
> With this you should be able to turn "Update channels" on again.
>
> Klaus

Thanks for pointing me to the problem. But for working it it was necessary to 
add these two changes more:

--- remux.c 2009-05-05 09:44:01.0 +0200
+++ remux.c 2009-05-05 09:50:56.854167360 +0200
@@ -481,6 +481,7 @@ void cPatPmtParser::ParsePmt(const uchar
  for (SI::Loop::Iterator it; Pmt.streamLoop.getNext(stream, it); ) {
  dbgpatpmt(" stream type = %02X, pid = %d", 
stream.getStreamType(), stream.getPid());
  switch (stream.getStreamType()) {
+   case 0x01: // MPEG1
case 0x02: // STREAMTYPE_13818_VIDEO
case 0x1B: // MPEG4
   vpid = stream.getPid();
@@ -702,7 +703,7 @@ cFrameDetector::cFrameDetector(int Pid, 
   newFrame = independentFrame = false;
   numPtsValues = 0;
   numIFrames = 0;
-  isVideo = type == 0x02 || type == 0x1B; // MPEG 2 or MPEG 4
+  isVideo = type == 0x01 || type == 0x02 || type == 0x1B; // MPEG 1,2 or 4
   frameDuration = 0;
   framesInPayloadUnit = framesPerPayloadUnit = 0;
   payloadUnitOfFrame = 0;

Now it seems to works as on older vdr versions (with PES), but video 
discontinuities are still present on Spektrum (as on many other channels from 
other providers). On STB's these discontinuities are not present in video.

Thanks and BR,

Ales

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-05 Thread Klaus Schmidinger
On 05/05/09 00:04, Ales Jurik wrote:
> On Monday 04 of May 2009, Klaus Schmidinger wrote:
>> On 04.05.2009 23:05, Marek Hajduk wrote:
>>> It's a pity, no answer.
>>> I would like to note, that with vdr 1.7.7 is result same-NO video but
>>> audio is OK. Receiving these channels with sat boxes like dreambox or
>>> triple dragon is without problem.
>> '1' is not a known video stream type in VDR.
>>
>> Try '2' or '27', as in
>>
>> AXN,AXN;UPC
>> Direct:10921:hC56M2O0S0:S19.2E:22000:651=2:660=hun,661=cze,662=eng:0:D02,18
>> 15:20352:1:1063:0
>>
>> or
>>
>> AXN,AXN;UPC
>> Direct:10921:hC56M2O0S0:S19.2E:22000:651=27:660=hun,661=cze,662=eng:0:D02,1
>> 815:20352:1:1063:0
>>
>> Klaus
> 
> Many thanks, it seems to works (with type of 2), but it is necessary to  
> set "Update channels" to "no". 

Please try this:

--- remux.c 2009/05/03 14:43:25 2.20
+++ remux.c 2009/05/05 07:27:21
@@ -795,6 +795,7 @@
   scanner <<= 8;
   scanner |= Data[i];
   switch (type) {
+case 0x01: // MPEG 1 video
 case 0x02: // MPEG 2 video
  if (scanner == 0x0100) { // Picture Start Code
 if (synced && Processed)

With this you should be able to turn "Update channels" on again.

Klaus

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-04 Thread Marek Hajduk
Many Thanks, Klaus.

It works. I will try to record several seconds, because picture has
errors.

once again, thanks for help.

BR

Marky 


Klaus Schmidinger píše v Po 04. 05. 2009 v 23:34 +0200:
> On 04.05.2009 23:05, Marek Hajduk wrote:
> > It's a pity, no answer.
> > I would like to note, that with vdr 1.7.7 is result same-NO video but audio 
> > is OK.
> > Receiving these channels with sat boxes like dreambox or triple dragon is 
> > without problem.
> 
> '1' is not a known video stream type in VDR.
> 
> Try '2' or '27', as in
> 
> AXN,AXN;UPC 
> Direct:10921:hC56M2O0S0:S19.2E:22000:651=2:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0
> 
> or
> 
> AXN,AXN;UPC 
> Direct:10921:hC56M2O0S0:S19.2E:22000:651=27:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0
> 
> Klaus
> 
> 
> > -Original Message-
> > From: vdr-boun...@linuxtv.org [mailto:vdr-boun...@linuxtv.org] On Behalf Of 
> > Marek Hajduk
> > Sent: Friday, May 01, 2009 11:30 AM
> > To: vdr@linuxtv.org
> > Subject: Re: [vdr] Black screen on some channels with vdr 1.7.6
> > 
> > Marek Hajduk píše v Út 28. 04. 2009 v 23:07 +0200:
> >> Hi,
> >>
> >> On some channels I get only audio. Screen is still black without
> >> Picture. There are two encrypted channels from 19.2E, in UPC packet:
> >>
> >> AXN,AXN;UPC
> >> Direct:10921:hC56M2O0S0:S19.2E:22000:651=1:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0
> >> Spektrum,Spektrum;UPC
> >> Direct:11671:hC56M2O0S0:S19.2E:22000:401=1:410=hun,411=cze:420:D02,1815:20360:1:1031:0
> >>  
> >>
> >> I am using eHD, but with VDPAU and xine is result same = black screen.
> >> When I try to record thease channels, recording has 0 kB.
> >>
> >> However, I can watch thease channels through streamdev plugin and
> >> popcornhour or vlc, but Picture has lot of errors. Here is recording
> >> through streamdev plugin.
> >>
> >>  Download link: http://rapidshare.com/files/226876888/1220.ts
> >>
> >>
> >>  If  somebody will want to fix it, I can provide some more debug info.
> >>
> >>  
> >>
> >> Regards
> >>
> >>  
> >>
> >> Marky
> >>
> >>
> > Hi again,
> > 
> > I checked this recording with TS Doctor
> > and I get this continuing errors:
> > 
> > TS ERROR: Invalid paket xxx! Error: sync_byte_error
> > Resync found for next paket yy with offset: -zzz.
> > 
> > Maybe it helps.
> > 
> > BR
> > 
> > Marky 
> 
> ___
> vdr mailing list
> vdr@linuxtv.org
> http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-04 Thread Ales Jurik
On Monday 04 of May 2009, Klaus Schmidinger wrote:
> On 04.05.2009 23:05, Marek Hajduk wrote:
> > It's a pity, no answer.
> > I would like to note, that with vdr 1.7.7 is result same-NO video but
> > audio is OK. Receiving these channels with sat boxes like dreambox or
> > triple dragon is without problem.
>
> '1' is not a known video stream type in VDR.
>
> Try '2' or '27', as in
>
> AXN,AXN;UPC
> Direct:10921:hC56M2O0S0:S19.2E:22000:651=2:660=hun,661=cze,662=eng:0:D02,18
>15:20352:1:1063:0
>
> or
>
> AXN,AXN;UPC
> Direct:10921:hC56M2O0S0:S19.2E:22000:651=27:660=hun,661=cze,662=eng:0:D02,1
>815:20352:1:1063:0
>
> Klaus

Many thanks, it seems to works (with type of 2), but it is necessary to  
set "Update channels" to "no". 

BR,

Ales



___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-04 Thread Klaus Schmidinger
On 04.05.2009 23:05, Marek Hajduk wrote:
> It's a pity, no answer.
> I would like to note, that with vdr 1.7.7 is result same-NO video but audio 
> is OK.
> Receiving these channels with sat boxes like dreambox or triple dragon is 
> without problem.

'1' is not a known video stream type in VDR.

Try '2' or '27', as in

AXN,AXN;UPC 
Direct:10921:hC56M2O0S0:S19.2E:22000:651=2:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0

or

AXN,AXN;UPC 
Direct:10921:hC56M2O0S0:S19.2E:22000:651=27:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0

Klaus


> -Original Message-
> From: vdr-boun...@linuxtv.org [mailto:vdr-boun...@linuxtv.org] On Behalf Of 
> Marek Hajduk
> Sent: Friday, May 01, 2009 11:30 AM
> To: vdr@linuxtv.org
> Subject: Re: [vdr] Black screen on some channels with vdr 1.7.6
> 
> Marek Hajduk píše v Út 28. 04. 2009 v 23:07 +0200:
>> Hi,
>>
>> On some channels I get only audio. Screen is still black without
>> Picture. There are two encrypted channels from 19.2E, in UPC packet:
>>
>> AXN,AXN;UPC
>> Direct:10921:hC56M2O0S0:S19.2E:22000:651=1:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0
>> Spektrum,Spektrum;UPC
>> Direct:11671:hC56M2O0S0:S19.2E:22000:401=1:410=hun,411=cze:420:D02,1815:20360:1:1031:0
>>  
>>
>> I am using eHD, but with VDPAU and xine is result same = black screen.
>> When I try to record thease channels, recording has 0 kB.
>>
>> However, I can watch thease channels through streamdev plugin and
>> popcornhour or vlc, but Picture has lot of errors. Here is recording
>> through streamdev plugin.
>>
>>  Download link: http://rapidshare.com/files/226876888/1220.ts
>>
>>
>>  If  somebody will want to fix it, I can provide some more debug info.
>>
>>  
>>
>> Regards
>>
>>  
>>
>> Marky
>>
>>
> Hi again,
> 
> I checked this recording with TS Doctor
> and I get this continuing errors:
> 
> TS ERROR: Invalid paket xxx! Error: sync_byte_error
> Resync found for next paket yy with offset: -zzz.
> 
> Maybe it helps.
> 
> BR
> 
> Marky 

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-04 Thread Marek Hajduk
It's a pity, no answer.
I would like to note, that with vdr 1.7.7 is result same-NO video but audio is 
OK.
Receiving these channels with sat boxes like dreambox or triple dragon is 
without problem.

Thanks for any suggestions.

BR

Marky

-Original Message-
From: vdr-boun...@linuxtv.org [mailto:vdr-boun...@linuxtv.org] On Behalf Of 
Marek Hajduk
Sent: Friday, May 01, 2009 11:30 AM
To: vdr@linuxtv.org
Subject: Re: [vdr] Black screen on some channels with vdr 1.7.6

Marek Hajduk píše v Út 28. 04. 2009 v 23:07 +0200:
> Hi,
> 
> On some channels I get only audio. Screen is still black without
> Picture. There are two encrypted channels from 19.2E, in UPC packet:
> 
> AXN,AXN;UPC
> Direct:10921:hC56M2O0S0:S19.2E:22000:651=1:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0
> Spektrum,Spektrum;UPC
> Direct:11671:hC56M2O0S0:S19.2E:22000:401=1:410=hun,411=cze:420:D02,1815:20360:1:1031:0
>  
> 
> I am using eHD, but with VDPAU and xine is result same = black screen.
> When I try to record thease channels, recording has 0 kB.
> 
> However, I can watch thease channels through streamdev plugin and
> popcornhour or vlc, but Picture has lot of errors. Here is recording
> through streamdev plugin.
> 
>  Download link: http://rapidshare.com/files/226876888/1220.ts
> 
> 
>  If  somebody will want to fix it, I can provide some more debug info.
> 
>  
> 
> Regards
> 
>  
> 
> Marky
> 
> 
Hi again,

I checked this recording with TS Doctor
and I get this continuing errors:

TS ERROR: Invalid paket xxx! Error: sync_byte_error
Resync found for next paket yy with offset: -zzz.

Maybe it helps.

BR

Marky 


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-05-01 Thread Marek Hajduk
Marek Hajduk píše v Út 28. 04. 2009 v 23:07 +0200:
> Hi,
> 
> On some channels I get only audio. Screen is still black without
> Picture. There are two encrypted channels from 19.2E, in UPC packet:
> 
> AXN,AXN;UPC
> Direct:10921:hC56M2O0S0:S19.2E:22000:651=1:660=hun,661=cze,662=eng:0:D02,1815:20352:1:1063:0
> Spektrum,Spektrum;UPC
> Direct:11671:hC56M2O0S0:S19.2E:22000:401=1:410=hun,411=cze:420:D02,1815:20360:1:1031:0
>  
> 
> I am using eHD, but with VDPAU and xine is result same = black screen.
> When I try to record thease channels, recording has 0 kB.
> 
> However, I can watch thease channels through streamdev plugin and
> popcornhour or vlc, but Picture has lot of errors. Here is recording
> through streamdev plugin.
> 
>  Download link: http://rapidshare.com/files/226876888/1220.ts
> 
> 
>  If  somebody will want to fix it, I can provide some more debug info.
> 
>  
> 
> Regards
> 
>  
> 
> Marky
> 
> 
Hi again,

I checked this recording with TS Doctor
and I get this continuing errors:

TS ERROR: Invalid paket xxx! Error: sync_byte_error
Resync found for next paket yy with offset: -zzz.

Maybe it helps.

BR

Marky 


___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] Black screen on some channels with vdr 1.7.6

2009-04-28 Thread Ales Jurik
On Tuesday 28 of April 2009, Marek Hajduk wrote:
> Hi,
>
> On some channels I get only audio. Screen is still black without
> Picture. There are two encrypted channels from 19.2E, in UPC packet:
>
> AXN,AXN;UPC
> Direct:10921:hC56M2O0S0:S19.2E:22000:651=1:660=hun,661=cze,662=eng:0:D02,18
>15:20352:1:1063:0
>Spektrum,Spektrum;UPC 
> Direct:11671:hC56M2O0S0:S19.2E:22000:401=1:410=hun,411=cze:420:D02,1815:203
>60:1:1031:0
>
>
> I am using eHD, but with VDPAU and xine is result same = black screen.
> When I try to record thease channels, recording has 0 kB.
>
> However, I can watch thease channels through streamdev plugin and
> popcornhour or vlc, but Picture has lot of errors. Here is recording
> through streamdev plugin.
>
>  Download link: http://rapidshare.com/files/226876888/1220.ts
>
>
>  If  somebody will want to fix it, I can provide some more debug info.

I confirm this situation, maybe some more info - up to vdr-1.7.2 it was 
possible to receive those channels, but Spektrum was receivable with errors 
(discontinuities) in video, AXN was receivable without visible errors. From 
vdr version vdr-1.7.4 (1.7.3 I didn't use) those channels are not receivable. 
Decoding is ok as the sound is receivable without problems.

Ales

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr