[vdr] Jittering while playing recording with xinelibout

2012-10-07 Thread AlexW
Hi list,

I am trying to convert .vob to .ts with different tools.
Every new generated .ts file plays fine with vlc.

While playing this converted files in xinelibout, I can see everytime
jittering. (vdr-1.7.31/xinelibout with latest git)

Sample: http://www.russle.net/vomp/misc/1.ts.gz

At the moment I do not know, whats causing this. 

Can anybody confirm this?

Any Ideas?

Alex








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


[vdr] channels.conf overwritten when installing vdr 1.7.30

2012-10-07 Thread Joachim Wilke
Dear all,

I just upgraded vdr from 1.7.29 to 1.7.31. After that I noticed that I lost
my channels.conf as it was overwritten by make install. :-(
A closer look to the changes made in 1.7.30 revealed that install-conf
target in the Makefile no longer checks if the CONFDIR already exists. In
previous version *.conf-files where only installed once (when the CONFDIR
just was created).

Was this change made by intention?

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


Re: [vdr] channels.conf overwritten when installing vdr 1.7.30

2012-10-07 Thread Ulrich Eckhardt

Am 07.10.2012 18:27, schrieb Joachim Wilke:

Dear all,

I just upgraded vdr from 1.7.29 to 1.7.31. After that I noticed that I
lost my channels.conf as it was overwritten by make install. :-(
A closer look to the changes made in 1.7.30 revealed that install-conf
target in the Makefile no longer checks if the CONFDIR already exists.
In previous version *.conf-files where only installed once (when the
CONFDIR just was created).


The same applies also for disecq.conf and scr.conf

Best Regards
Uli
--
Ulrich Eckhardt  http://www.uli-eckhardt.de

Ein Blitzableiter auf dem Kirchturm ist das denkbar stärkste
Misstrauensvotum gegen den lieben Gott. (Karl Krauss)

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


[vdr] Polish EPG problems

2012-10-07 Thread Mariusz Bialonczyk
Hi,
I've been using vdr for very long time (since 1.2.1 afair), but the
polish epg problem is unfortunately still here in recent versions.
I made a deep analysis of the problem and here are the details.
Polish broadcasters are ignorants regarding dvb standards!
It's very sad but it's true :(
Of course e-mails to them about it doesn't give an any effect...
There are two kind of problems with polish providers on HotBird 13E:
First problem is that similar to one handled by CharsetOverride:
Part of the channels are encoded in ISO-8859-2 while not announce that,
this can be handled with VDR_CHARSET_OVERRIDE correctly.
The other part cannot be currently handled correctly in vdr without patching:
Some channels are using ISO6937 while announcing ISO-8859-5! (sic!)

There are also providers which are respecting standards,
but the above bad cases are for two main polish digital platforms,
so it would be great if vdr finally would handle it correctly.

I have two propositions to solve the problem:
1. check if VDR_CHARSET_OVERRIDE is set to ISO-8859-2 and based on
this information, force apply following change:
diff --git a/libsi/si.c b/libsi/si.c
index 80d34d1..bc34bd7 100644
--- a/libsi/si.c
+++ b/libsi/si.c
@@ -373,6 +373,8 @@ const char *getCharacterTable(const unsigned char *buffer, 
int length, bool *i
   length -= 1;
   if (isSingleByte)
  *isSingleByte = tag = SingleByteLimit;
+  if (tag == 0x01 /* ISO8859-5 */)
+ return cs6937;
   return CharacterTables1[tag];
}
return cs;
2. add additional VDR_CHARSET_OVERRIDE option, eg:
VDR_CHARSET_OVERRIDE=PL
this could also return cs6937 when ISO8859-5 is defined (like above).

Please tell me what you think about it.

ps. by the way i want to thank you for your work
and piece of a good software! :)

regards,
-- 
Mariusz Białończyk
jabber/e-mail: ma...@skyboo.net
https://github.com/manio

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


Re: [vdr] Polish EPG problems

2012-10-07 Thread Matti Lehtimäki

On 10/07/2012 09:59 PM, Mariusz Bialonczyk wrote:

Hi,
I've been using vdr for very long time (since 1.2.1 afair), but the
polish epg problem is unfortunately still here in recent versions.
I made a deep analysis of the problem and here are the details.
Polish broadcasters are ignorants regarding dvb standards!
It's very sad but it's true :(
Of course e-mails to them about it doesn't give an any effect...
There are two kind of problems with polish providers on HotBird 13E:
First problem is that similar to one handled by CharsetOverride:
Part of the channels are encoded in ISO-8859-2 while not announce that,
this can be handled with VDR_CHARSET_OVERRIDE correctly.
The other part cannot be currently handled correctly in vdr without patching:
Some channels are using ISO6937 while announcing ISO-8859-5! (sic!)

There are also providers which are respecting standards,
but the above bad cases are for two main polish digital platforms,
so it would be great if vdr finally would handle it correctly.


The EPGFixer-plugin has the capability to fix character set problem you 
have described. It can be found at 
http://projects.vdr-developer.org/projects/plg-epgfixer.


--
Matti Lehtimäki

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


Re: [vdr] Polish EPG problems

2012-10-07 Thread Mariusz Bialonczyk
On 10/07/2012 09:16 PM, Matti Lehtimäki wrote:
 The EPGFixer-plugin has the capability to fix character set problem you have 
 described. It can be found at 
 http://projects.vdr-developer.org/projects/plg-epgfixer.
Thank you for this tip, but I am rather interested to fix the problem in the 
mainline.

-- 
Mariusz Białończyk
jabber/e-mail: ma...@skyboo.net
https://github.com/manio

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