VDR VNSI Timer issue if event name has / character - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: PVR & Live TV Support (https://forum.kodi.tv/forumdisplay.php?fid=167) +---- Forum: VDR (https://forum.kodi.tv/forumdisplay.php?fid=169) +---- Thread: VDR VNSI Timer issue if event name has / character (/showthread.php?tid=158313) |
VDR VNSI Timer issue if event name has / character - Nachteule - 2013-03-04 Hi, i'm using Frodo with VDR 1.7.27 and Plugin/vnsiserver4 from here https://github.com/FernetMenta/xbmc-pvr-addons If the event name has the character '/' for example "Die Tierärzte vom Kilimanjaro (2/3)", the '/' character will not be handled correctly. If recording is started, directory structure looks like " Code: Die_Tierärzte_vom_Kilimanjaro_(2 instead of Code: Die_Tierärzte_vom_Kilimanjaro_(2~3) There is also a difference in timers.conf, it looks like Code: 1:T-8468-514-515:2013-03-05:1605:1710:99:99:Die Tierärzte vom Kilimanjaro (2/3):<vdradmin-am><bstart>10</bstart><bstop>10</bstop></vdradmin-am> if timer is programmed with vdradmin-am and Code: 1:T-8468-514-515:2013-03-05:1613:1710:50:99:Die Tierärzte vom Kilimanjaro (2~3): if timer is programmed via xbmc. Here is a vdr.log of an event i programmed last night: Code: Mar 4 01:00:31 [32730] VNSI: Timer 1 (2 0043-0250 'Kommissarin Lund Das Verbrechen III (4~5)') added Recording has been successfully finished, only directory structure is wrong. RE: VDR VNSI Timer issue if event name has / character - FernetMenta - 2013-03-04 check cVNSIData::AddTimer (addon). Replacement of directory reparators should be done before adding the title. Code: // replace directory separators If you got time, a pull request is very welcome RE: VDR VNSI Timer issue if event name has / character - Nachteule - 2013-03-04 Thank you for your quick response. Currently i looked to the code and found the same position to change the code in exactly the same way you would. I will make the change and test it. After it works, i will try to make a PR |