[REQUEST] Twit v0.1 Script Update
#1
I've been using the Twit v0.1 script for streaming podcast and vidcast (replace w/ my own urls) ever since I discovered XBMC. After the couple of recent XBMC updates the script no longer works. I've tried contacting the original author of the script, but with no luck. Would be great if someone can update the script. thanks Smile

Link
from xbmcsripts.com
Reply
#2
I got it to work on the latest T3CH build. It was the simplest modification to get it to work.

change
Code:
ROOT_DIR = os.getcwd()[:-1]+'\\'
To
Code:
ROOT_DIR = os.getcwd()
Reply
#3
Now I need help with the background. The current script uses root, but the new format uses sub directories. How to you format it?

here's how it set right now.
Code:
IMAGE_DIR = ROOT_DIR+'images\\'
Reply
#4
untested:

it should be using os.path.join(), but since this isn't your script the quick and easy way is:
Code:
IMAGE_DIR = ROOT_DIR+'[b][color=red]\\[/color][/b]images\\'
Always read the XBMC online-manual, FAQ and search and search the forum before posting.
For troubleshooting and bug reporting please read how to submit a proper bug report.

If you're interested in writing addons for xbmc, read docs and how-to for plugins and scripts ||| http://code.google.com/p/xbmc-addons/
Reply
#5
It worked!

Thank You rwparris2!
Reply
#6
Edit: Made a thread here: http://forum.xbmc.org/showthread.php?tid=42892
Reply

Logout Mark Read Team Forum Stats Members Help
[REQUEST] Twit v0.1 Script Update0