[WIP] AniDB.net Anime Video Scraper

  Thread Rating:
  • 3 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
gates Offline
Member
Posts: 67
Joined: Jun 2010
Reputation: 0
Post: #381
hi,

@bambi, i guess Smile

In xbmc_video database, the table "tvshow" contains a column "c12"
In "c12" column contains the thetvdb-ID.
When you export mediatheque into .nfo file, this thetvdb-ID is between <id></id> balise.

Without this information in database, you can use extrafanart/artwork downloader addons.

Do you think is-it possible with anidb scrapper to get and put thetvdb-id in xbmc_video database ?

by the way, thx for this wonderwull scrapper
(with appropriate advancedsettings, it matches 100% of my media (100+ anime))
find quote
shinner Offline
Member
Posts: 52
Joined: Jan 2012
Reputation: 2
Post: #382
Garandor Wrote:Also, the scraper isn't able to pick up series that have characters not printable in filenames, case in point: Fate/Zero, which after renaming is called Anime/FateZero/FateZero - 01.mkv etc.
Since no entry exists in anidb for "FateZero", the lookup fails. Any way to get this to work?

On a different note, someone really needs to put an introduction to get this scraper to work in a wiki, almost everyone posting here has the exact same problem.

Quick fix: try renaming it to Fate-Zero, it works for my Fate/Stay Night series.

Agreed on the wiki. Anyone with the know how to write one? I can share a little of my experiences (which is not a lot ^^').
find quote
j3tang Offline
Junior Member
Posts: 6
Joined: Feb 2012
Reputation: 0
Post: #383
I dug through many pages of this thread and actually found that this regex seems to pick up everything in my anime arsenal except for multi-part anime episodes. For instance, Naruto Shippuuden 135-136 gets picked up as episode 136 only.

All the files follow the pattern below and are recognized without problems except for multi-part episodes, e.g.: [Taka]_Naruto_Shippuuden_135-136.mp4

Anyone have any suggestions for me?


Code:
<advancedsettings>
<tvshowmatching action="prepend">
<regexp>anime[\\/].*[/\._ \-]([0-9]+)</regexp>
</tvshowmatching>
</advancedsettings>
find quote
gates Offline
Member
Posts: 67
Joined: Jun 2010
Reputation: 0
Post: #384
hi,

look at :
http://wiki.xbmc.org/index.php?title=Adv...atching.3E
and
http://forum.xbmc.org/showthread.php?tid=51614
=>
http://pastebin.com/UPPrk7VU

from wiki :
<regexp>[/\._ \-]()([0-9]+)(-[0-9]+)?</regexp>
find quote
shinner Offline
Member
Posts: 52
Joined: Jan 2012
Reputation: 2
Post: #385
gates Wrote:hi,

@bambi, i guess Smile

Do you think is-it possible with anidb scrapper to get and put thetvdb-id in xbmc_video database ? With this information in database, you can use extrafanart/artwork downloader addons.

I second this, it'd make getting artwork much easier. Is the anidb id in the <id></id> tags used by the way? Is it ok to put the tvdb id there instead?
find quote
gates Offline
Member
Posts: 67
Joined: Jun 2010
Reputation: 0
Post: #386
From my experience (over 100 anime), <id></id> tags was often empty.
Somtimes, it was the anidb.net ID.

Fanart.tv use the same ID than thetvdb, so it will be smart to put this ID instead.

regards
find quote
wentzelfcp Offline
Junior Member
Posts: 15
Joined: Mar 2012
Reputation: 0
Question  RE: [WIP] AniDB.net Anime Video Scraper Post: #387
hi, this is my first time here in the forum. for quite some time now, i have been searching the net,for help on how to scrape anime with the anidb.net scraper, and havent found a clue.
my xbmc, when i set content and pick the anidb scraper, doesnt even recognize the shows, so basically it doesnt scrape them, a message appears in the top saying "compressing database".
my point being, i would really appreciate some help, on how to scrape from anidb,im really lost, i am a total newb to this, so can someone plz give me a full guide on how to get anime scraped from anidb?

Thx for your time and help Big Grin
find quote
gates Offline
Member
Posts: 67
Joined: Jun 2010
Reputation: 0
Post: #388
hi wentzelfcp,

Read my post (#384 - in this same page Smile )
You'll find all what you need in wiki
find quote
wentzelfcp Offline
Junior Member
Posts: 15
Joined: Mar 2012
Reputation: 0
Post: #389
hi thankx for the fast reply. but i dont know anything about regexp, or programming, i dont even know where to start,so can you give me a little push, tip?
find quote
shinner Offline
Member
Posts: 52
Joined: Jan 2012
Reputation: 2
Post: #390
That's weird though, because even if you don't have any custom regex, xbmc should still pick up the tv shows (just not episodes). I tried with an empty folder and it detected the show.

First things first, how are your files named and organized? Each show should have its own folder. Eg, mine are like this:
Code:
Anime TV (root folder)
      -- Baccano! (folder)
            --Baccano 01.mkv (file)
             --Baccono 02.mkv
        
      -- Blood+ (folder)
            --Blood+ 01.mkv (file)

etc. "Anime TV" is then added as a TV source in XBMC.

Once you get the shows detected, you either need to rename all your files (eek!), or follow the custom regex method outlined by Gates. It's not that hard, you just need to follow the instructions. You don't need to understand how regex works, just copy and paste Tongue
(This post was last modified: 2012-03-13 12:36 by shinner.)
find quote
Post Reply