2013-06-12, 16:16
(2013-06-12, 14:40)matbor Wrote: * I can't run any python script from the commandline (via SSH), but I think that is because I use ATV2's (correct me if i'm wrong here)
I have the impression that this is indeed the problem. You should be able to execute the scripts from the command line for the addon to work. Could you first try to make them executable? So something like:
Code:
chmod +x xbmc_play.py
./xbmc_play.py
That should work, if not, make sure you have python installed correctly in your system:
Code:
/usr/bin/env python
That should start python (via command line)!
Hope it helps..