Quote:
Originally Posted by rykorb
|
Thanks for highlighting this, managed to fix capturebate on my Raspberry Pi with this.
In case there's anyone out there looking for specific steps to fix their own livestreamer-based capturebate setup on Raspi (and likely anything Linux), then you simply need to:
Code:
cd /usr/lib/python2.7/dist-packages/livestreamer/plugins
Code:
sudo nano chaturbate.py
Then replace
Quote:
_playlist_url_re = re.compile("html \+= \"src='(?P<url>[^']+)'\";")
|
with
Quote:
_playlist_url_re = re.compile("loadHlsVideo\('(?P<url>[^']+)")
|
Hit Ctrl+X, press y, and enter. This will save the file. It should now work. The inital directory might be different depending on your python version.