2012-08-05, 21:00
(2012-07-26, 01:30)scoombe Wrote: And one more question. How does the script handle "&" in the parsing? I'm trying to get a video from the following location from Netflix through PlayOn:
<subfolder name="Browse Genres/Music/Rock & Pop Concerts/Classic Rock/L-P/Little Feat: High Wire Act Live 2003" type="music_videos" />
Any suggestions?
(2012-08-01, 16:00)slopokdave Wrote: Can someone tell me how to include a show with a forward slash in it's name in Hulu? I.e. "ABC 20/20". I don't want it to think the / is a break in the folder. Edit: I tried something, but it didn't work... now I've removed ABC 20/20 and yet it's skipping all my shows saying:
This label contains a '/', will remove it because it is reserved: "ABC 20/20"
In the meantime, here is code that is working for me to pull selective episodes from Hulu:
Also, here is one I found burried in the thread on XBMC Flix (netflix):Code:<!--Hulu videos from BlueCop's hulu plugin -->
<Hulu path="plugin://plugin.video.hulu" recursive="true" regex_name="true" >
<!--Path to full selected show from Subscriptions -->
<subfolder name="Subscriptions/Bachelor Pad/Episodes \([0-9]+\)"
max_series="10" type="episodes" suffix=" (Hulu)" >
<filter>
<regexp>/Episodes \([0-9]+\)/</regexp>
</filter>
<exclude>
<regexp>/season[s]? \([0-9]+\)</regexp> o
</exclude>
</subfolder>
<exclude>
<contains>/Recommended</contains>
<contains>/Clips</contains>
<contains>previous page</contains>
<contains>next page</contains>
</exclude>
</Hulu>
Code:<XBMCFlix path="plugin://plugin.video.xbmcflicks" recursive="true" prefix="[NF] " movie_set="XBMCFlix">
<subfolder name="Instant Movies and Shows/Instant Queue: All" type="movies" recursive="false">
<exclude>
<regexp>s[0-9]+e[0-9]+</regexp>
</exclude>
</subfolder>
<subfolder name="Instant Movies and Shows/Instant Queue: All" type="episodes">
<filter>
<regexp>s[0-9]+e[0-9]+</regexp>
</filter>
</subfolder>
</XBMCFlix>
use regular expression and substitute "." for all "/" characters. thats how i added 20/20 from free cable.