Dear List,
I am desperately trying to get the german umlauts going for both vdr receiving EPG information (out of the air directly from the channels...) and via epg4vdr 0.5 http://www.wontorra.net/article.php?story=20050429181815661
I've noticed that standard EPG has the correct encoding, but only the one from epg4vdr has not. However the pulled .xml files still have the right (i.e. utf-8) encoding.
Only when this information is transferred to vdr (I guess via SVDRP) umlauts and everything is distorted. Also then the dumped epgdata file contains wrongly encoded parts...
Any ideas what I could do about this?
Soeren
On Mittwoch, 16. April 2008, Soeren Sonnenburg wrote:
I guess you need to know the encoding your vdr runs with, and then use this for the SVDRP connection.
For future VDR development I still think it could be useful to: 1. Either add a header for epg data (and other places where vdr exchanges texts) telling the encoding.
2. or switch all external interfaces (epg.data, svdrp, channels.conf) to utf8.
3. going even further, switch vdr so that it internally only uses utf8 (or utf16 if one can tell that is easier - I doubt). So all code that does switch/case on the charset can be simplified.
Regards Matthias
On Wed, 2008-04-16 at 14:45 +0200, Matthias Schwarzott wrote:
I guess you need to know the encoding your vdr runs with, and then use this for the SVDRP connection.
Well so it is epg4vdr then that is doing some conversion internally (I use a system wide utf-8 encoding) ...
I guess easiest would be to have a single encoding as a requirement, however in a real world there are always exceptions that cause breakage :(
Soeren
On 04/16/08 14:45, Matthias Schwarzott wrote:
The only reasonable thing IMO would be to make an SVDRP command (or extend an existing one) that tells which encoding is used by this VDR. Maybe an extended signon message would be ok, like
220 video SVDRP VideoDiskRecorder 1.7.1; Sat Apr 19 11:43:27 2008; ISO-8859-1
I wouldn't like to fiddle around with headers in many places.
Not going to happen - my systems all run with ISO-8859-1 ;-).
VDR currently uses the codeset that is used on the system. If it is UTF-8, all is done in UTF-8.
You'll always have to be careful when exchanging data between systems that use different codesets.
Klaus
On Sat, 2008-04-19 at 11:48 +0200, Klaus Schmidinger wrote:
That sounds like a good solution.
Regarding the specific epg4vdr problem: it was sufficient to
a) put the locale to some utf8 locale b) extract the epg4vdr archive and change the occurance of iso8859 to utf8 for writng the xml file
Otherwise utf8 is erraneously read as iso8859-1. Also as a workaround I wrote a small proxy that does this translation on the fly (attached).
Soeren