2010-06-25, 17:08
Would it be possible by your how-to to watch IPTV?
ant_thomas Wrote:I've got a problem where XBMC crashes on start. It only gets to the XBMC logo at which point the little cursor/X appears and it restarts XBMC, this happens continuously.
It only has happened after I rebooted after sorting my channels.conf file.
AuXBoX Wrote:VDR is not starting. This happened to me.
There must be something wrong with the channels.conf file.
scan -x 0 -o vdr -a 0 /usr/share/dvb/dvb-t/uk-RidgeHill > /etc/vdr/channels.conf
ant_thomas Wrote:Is there a way to disable TV from the command line so I can get back to using XBMC without having LiveTV enabled?
sudo nano ~/.xbmc/userdata/guisettings.xml
ant_thomas Wrote:Do you know how you go about solving the channels.conf file issues? It was the one generated with the
Code:scan -x 0 -o vdr -a 0 /usr/share/dvb/dvb-t/uk-RidgeHill > /etc/vdr/channels.conf
style command (obviously changing for my local tv mast).
sudo /etc/init.d/vdr stop
w_scan -ft -c [b]AU[/b] -o7 >> /etc/vdr/channels.conf
sudo /etc/init.d/vdr start
sudo chmod 777 /etc/vdr/channels.conf
sudo /etc/init.d/vdr stop
sudo rm /etc/vdr/channels.conf /var/lib/vdr/channels.conf
sudo /etc/init.d/vdr start
<pvrmanager>
<channelmanager></channelmanager>
<channelscan></channelscan>
<enabled>false</enabled>
<resetdb></resetdb>
</pvrmanager>
<pvrmanager>
<channelmanager></channelmanager>
<channelscan></channelscan>
<enabled>true</enabled>
<resetdb></resetdb>
</pvrmanager>
Swifty Wrote:AuxBox; How are you loading VDR ?
If it loads through /etc/init.d then you could pre-pend the vdr init script with 99-
eg; /etc/init.d/vdr < changes to > /etc/init.d/99-vdr
This would make VDR run last, hopefully by which time your firmware has loaded for your tuner.
Edit, whoops just noticed Hepi has probably already answered this one.. if so ignore
ant_thomas Wrote:Finally got it working I think my main issue was XBMC using the VNSI addon when VNSI wasn't installed. Streamdev was installed but there was no addon.xml file for the Streamdev addon. So I ended up making the Streamdev addon.xml, that meant XBMC would start fine but there was no channels. To fix this I had to copy the channels.conf file to /var/lib/vdr/channels.conf.
Anyway, time to edit the TV database to get the channels in order!
Thanks for the help.
Oh, also, in guisettings.xml to disable the TV if things have messed up you just need to change
Code:<pvrmanager>
<channelmanager></channelmanager>
<channelscan></channelscan>
<enabled>false</enabled>
<resetdb></resetdb>
</pvrmanager>
to
Code:<pvrmanager>
<channelmanager></channelmanager>
<channelscan></channelscan>
<enabled>true</enabled>
<resetdb></resetdb>
</pvrmanager>
dongioia Wrote:Are you able to use the streamdev addon?