EPG Charset
Added by Nasuh Özsakallı over 13 years ago
Hi,
in eutelsat w3a epg datas are not showing correctly.
I use this line for vdr in runscript to fix problem
export VDR_CHARSET_OVERRIDE="ISO-8859-9"
Is there any change to apply this to tvheadend or any other option?
Replies (5)
RE: EPG Charset - Added by Martin Mrvka over 13 years ago
A solution for this is in progress.
https://github.com/andoma/tvheadend/pull/22
If it goes into one of the next releases, you can set the charset per service.
RE: EPG Charset - Added by Hakensline Hak over 13 years ago
Tanks for the patch !
It's possible to change de default_charset of the all channels ?
I have 150 channels and two tunners (300 changes)
:-)
RE: EPG Charset - Added by Martin Mrvka over 13 years ago
Hakensline Hak wrote:
Tanks for the patch !
It's possible to change de default_charset of the all channels ?
I have 150 channels and two tunners (300 changes)
:-)
Since the EPG charset depends on the service provider, and there are many different on one transponder, it makes no sense to provide a generic setting.
But for a bulk change, you could change the config files directly (be sure to backup your configuration first!)
1) shutdown tvheadend to ensure that config files are untouched
2) assuming your configuration is stored under /home/hts/tvheadend/.hts/, backup this directory
3) execute following command on your console, it will add the ISO8859-9 charset config option for each mapped service to a channel
find /home/hts/tvheadend/.hts/tvheadend/dvbtransports -type f -exec perl -p -i -e 's/"mapped": 1,/"mapped": 1,\n\t"dvb_default_charset": "ISO8859-9",/' {} \;
4) start tvheadend
HTH