XBMC.MyLibrary - Scan any source to the library (Hulu/Netflix/Plugins)

  Thread Rating:
  • 5 Votes - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
scoombe Offline
Junior Member
Posts: 24
Joined: Mar 2012
Reputation: 0
Post: #411
Thanks for the great tool! This makes xbmc so much more girlfriend friendly!! Big Grin

One question: Has anyone got Seinfeld episodes to pull from crackle, either through playon or the crackle plugin? I have been able to pull Crackle movies using playon, but I haven't been able to pull any TV episodes. Any help would be appreciated. Thanks again for the the great script!!
find quote
scoombe Offline
Junior Member
Posts: 24
Joined: Mar 2012
Reputation: 0
Post: #412
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?
find quote
slopokdave Offline
Junior Member
Posts: 26
Joined: Sep 2010
Reputation: 0
Post: #413
I 2nd the BlueCop Hulu subscription script, can anyone share? This is all I really need from Hulu and I'll be set! Big Grin

Thanks!!
find quote
brad1823 Offline
Junior Member
Posts: 10
Joined: Jun 2011
Reputation: 0
Post: #414
I'm not really too sure how to set-up this program to scrap from Netflix, so I would be willing to pay anybody willing to guide me through how to set-up, if you would like to help just send me a message. Thank you for your help.
find quote
slopokdave Offline
Junior Member
Posts: 26
Joined: Sep 2010
Reputation: 0
Post: #415
(2012-07-28 18:44)brad1823 Wrote:  I'm not really too sure how to set-up this program to scrap from Netflix, so I would be willing to pay anybody willing to guide me through how to set-up, if you would like to help just send me a message. Thank you for your help.

Which netflix are you referring to? Playon's addon or XBMC Flix? I see the instructions for the play on version, but I can't even get play on and netflix to work. I am using XBMC flix but also would like to know how to code for it too, if thats what you're talking about.
find quote
brad1823 Offline
Junior Member
Posts: 10
Joined: Jun 2011
Reputation: 0
Post: #416
(2012-07-29 20:33)slopokdave Wrote:  
(2012-07-28 18:44)brad1823 Wrote:  I'm not really too sure how to set-up this program to scrap from Netflix, so I would be willing to pay anybody willing to guide me through how to set-up, if you would like to help just send me a message. Thank you for your help.

Which netflix are you referring to? Playon's addon or XBMC Flix? I see the instructions for the play on version, but I can't even get play on and netflix to work. I am using XBMC flix but also would like to know how to code for it too, if thats what you're talking about.

I have xbmc flix, if you could help me set it up I would really appreciate it.
find quote
slopokdave Offline
Junior Member
Posts: 26
Joined: Sep 2010
Reputation: 0
Post: #417
(2012-07-29 20:48)brad1823 Wrote:  
(2012-07-29 20:33)slopokdave Wrote:  
(2012-07-28 18:44)brad1823 Wrote:  I'm not really too sure how to set-up this program to scrap from Netflix, so I would be willing to pay anybody willing to guide me through how to set-up, if you would like to help just send me a message. Thank you for your help.

Which netflix are you referring to? Playon's addon or XBMC Flix? I see the instructions for the play on version, but I can't even get play on and netflix to work. I am using XBMC flix but also would like to know how to code for it too, if thats what you're talking about.

I have xbmc flix, if you could help me set it up I would really appreciate it.

If you are having issues with just getting xbmc flix to work, pm me, but otherwise I think we are in the same boat and trying to figure out how to scrape from it to be included in our tv show library.
find quote
brad1823 Offline
Junior Member
Posts: 10
Joined: Jun 2011
Reputation: 0
Post: #418
I'm now using playon as its a lot easier to use than xbmcflix, does any body know how to set up netflix from playon to be scraped by xbmc?
find quote
slopokdave Offline
Junior Member
Posts: 26
Joined: Sep 2010
Reputation: 0
Post: #419
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:
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>
Also, here is one I found burried in the thread on XBMC Flix (netflix):

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>
(This post was last modified: 2012-08-01 16:14 by slopokdave.)
find quote
slopokdave Offline
Junior Member
Posts: 26
Joined: Sep 2010
Reputation: 0
Post: #420
This is driving me nuts! Now I can't scan anything in because I get:

08/01/2012 06:53:02 PM INFO Find:Subfolder Searching for subfolder: Hulu/Subscriptions/The Daily Show with Jon Stewart (HD)/Episodes \([0-9]+\)
08/01/2012 06:53:04 PM INFO Find:Subfolder This label contains a '/', will remove it because it is reserved: "ABC 20/20"
08/01/2012 06:53:04 PM ERROR Find:Subfolder No matching subfolder named "Hulu/Subscriptions/The Daily Show with Jon Stewart (HD)/Episodes \([0-9]+\)" was found. Skipping

Why is it still searching for ABC 20/20? It never scanned it in. It's not in my library. I also deleted the mysql database and started over. Same thing!

Edit: I moved the My.Library script to another computer, same thing.... why is it still picking up this error and ABC 20/20 deal? Where is it at and in which database?
(This post was last modified: 2012-08-02 22:59 by slopokdave.)
find quote
Post Reply