Re: HowTo watch IPTV on A/B/C/D series, PS3 and so on...
Posted: Mon Aug 13, 2012 9:32 am
1. You can edit xupnpd.lua dirrectly and add/remove unwanted playlists (remove whole row or just add -- at the beginning - this row will be ignored by xupnpd):
Change
to
2. If you run xupnpd binary from your custom script, make sure you start it to background, not foreground.
The &
Another reason of a lot of output is :
A) debug is on
B) xupnpd NOT as daemon
all what is needed is set to on/off in xupnpd.lua and after changes restart of TV is needed (be sure pid fileon /dtv/ is deleted if no TV reboot.)
Change
Code: Select all
-- playlist (m3u file path or path with alias
playlist=
{
{ './playlists/mozhay.m3u', 'Mozhay.tv' },
-- { './localmedia', 'Local Media Files', '127.0.0.1;192.168.1.1' }
}
Code: Select all
-- playlist (m3u file path or path with alias
playlist=
{
-- { './playlists/mozhay.m3u', 'Mozhay.tv' },
-- { './localmedia', 'Local Media Files', '127.0.0.1;192.168.1.1' }
}
Code: Select all
/path/to/xupnpd-rc/xupnpd-arm &
Another reason of a lot of output is :
A) debug is on
B) xupnpd NOT as daemon
all what is needed is set to on/off in xupnpd.lua and after changes restart of TV is needed (be sure pid fileon /dtv/ is deleted if no TV reboot.)