boxeebox-xbmc
boxeebox-xbmc copied to clipboard
Disclose TV addon - playback issues with VP8
Seems the Boxee doesn't like playing VP8 video format on this plugin, to overcome this do the following:
Edit line 80 of 'scraper.py' from
match = re.search(r"(https?://video.*?\.(flv|mp4|webm))", data)
to
match = re.search(r"(https?://video.*?\.(flv))", data)
The video will play back as MP4 (SMD - h265), using hardware.
Just a quick, easy fix...