• 1
  • 67
  • 68
  • 69(current)
  • 70
  • 71
Release [MOD] AniDB.net scrapers for TV shows and Movies
Hello, is this Mod save for use in Kodi 19? Because of this Scraper i would stay on Kodi 18 if not.
Reply
(2021-02-19, 23:21)nille02 Wrote: Hello, is this Mod save for use in Kodi 19? Because of this Scraper i would stay on Kodi 18 if not.
Stay on 18. The addon works but the options in the settings are unreadable.
Reply
Hallo Friends,

I have Problems with K-On, Clannad and Gintama' not getting scraped. They are all named according to Anidb and Kodi naming convention:
https://imgur.com/uziT9Su
While K-On !! not getting scraped at all, Gintama' appears as Episodes of Gintama (without the ') and Clannad is getting scraped as Gekijouban Clannad.
Can you help me or point me into the right direction? I am having a mental brackdown after renaming 300+  Shows and now I have 10 that are giving me problems like above.
Reply
(2021-03-14, 18:54)akarinsama Wrote: Hallo Friends,

I have Problems with K-On, Clannad and Gintama' not getting scraped. They are all named according to Anidb and Kodi naming convention:
https://imgur.com/uziT9Su
While K-On !! not getting scraped at all, Gintama' appears as Episodes of Gintama (without the ') and Clannad is getting scraped as Gekijouban Clannad.
Can you help me or point me into the right direction? I am having a mental brackdown after renaming 300+  Shows and now I have 10 that are giving me problems like above.
Dont know why there is no Edit Button for my post. But I added more picutes and they were not showing at the link:
https://imgur.com/a/XQkjCOq
https://imgur.com/a/wuezRRC
Reply
(2021-03-14, 18:54)akarinsama Wrote: Hallo Friends,

I have Problems with K-On, Clannad and Gintama' not getting scraped. They are all named according to Anidb and Kodi naming convention:
https://imgur.com/uziT9Su
While K-On !! not getting scraped at all, Gintama' appears as Episodes of Gintama (without the ') and Clannad is getting scraped as Gekijouban Clannad.
Can you help me or point me into the right direction? I am having a mental brackdown after renaming 300+  Shows and now I have 10 that are giving me problems like above.
I would check to see what your settings are for these series. In Anidb I find the official title doesn't work all the time for matching so I end up naming folders by their english official titles.

K-On! S2 for example
Main Title K-On!! (a7307)
Official Title K-On! Season 2

Gintama S2 has a different character for the accent they use. In the main title they use a grave accent (`) as opposed to the apostrophe (') that I see in your screenshot. I recommend using one of the Anidb clients to parse and rename your files or just copy/paste the title from the Anidb site for your folder name. (Also you can see that even further complicating things they use an acute accent (´) on the japanese official title... >.< )
Main Title Gintama` (a8126)
Official Title 銀魂´

Good luck and I hope this helps. I currently having trouble getting Re:Zero S2 to recognize..
Reply
Quick update for anyone who's interested.
Since I couldn't figure out how to teach this scraper to properly recognise common episode names from the usual sources, with considerable help, I now got a renamescript for my debian setup.
What it does:
  1. Remove the Season Part (S01, S02, s03 - S99), since anidb thinks every show ever is s01
  2. If there is free standing double digits, it'll add an 'E' in front of them, just like this scraper wants it
  3. Run every 5 minutes
sh:
#!/bin/bash
while true
do
shopt -s globstar

start_dir="//folder/to/watch/"               # edit this part to your anime collection
for name in "$start_dir"/**/*.*; do          # search the directory recursively
      [ [ -f $name ] ] || continue          # skip if "$name" is not a file
      newname=$(sed -E 's/[sS](0[1-9]|[1-9][0-9]) *//; s/\b([0-9]{2})\b/E\1/' <<< "$name") if [ [ "$name" != "$newname" ] ]; then
                                             # skip if the filenames are the same       
     mv -- "$name" "$newname" fi

done
  sleep 300                                  # loop after 5 minutes
done
I made this a daemon so it keeps running after system reboot.
! If you decide to use this, of course I take no responsibility in case it causes any problems.
! Only use this for anime. Regular TV-Show scrapers need the season part in there.
! Wherever you point this, it'll rename everything in that folder-tree.

! If there is an anime with two free standing digits in it's title, this will brick it.
Reply
Can anyone get the anime "Vivy Fluorite Eye`s Song" recognised?
I've tried naming the folder
Vivy Fluorite Eye`s Song
Vivy -Fluorite Eye`s Song-
and tried to manually name it as
Vivy: Fluorite Eye`s Song
no chance.
Reply
@scudlee 

just found out Vivy Fluorite Eye`s Song is not on the scraper's anime list.
Reply
Can someone post some pics of the four tabs of AniDB (General, anidb1, anidb2 thetvdb) ? I'm on Matrix and a lot of text is missing. Thx
Reply
(2021-05-08, 16:37)Sc0r Wrote: @scudlee 

just found out Vivy Fluorite Eye`s Song is not on the scraper's anime list.
There is a fork with new titles: https://github.com/Anime-Lists/anime-lists
However, still does not work for me. Seems something else is also not right. Will debug this soon. I need my animu scapper on AniDb!
Reply
(2021-07-06, 15:22)Sesshoumaru Wrote:
(2021-05-08, 16:37)Sc0r Wrote: @scudlee 

just found out Vivy Fluorite Eye`s Song is not on the scraper's anime list.
There is a fork with new titles: https://github.com/Anime-Lists/anime-lists
However, still does not work for me. Seems something else is also not right. Will debug this soon. I need my animu scapper on AniDb!
Obviously you have to use this new paths to get new anime updates, because ScudLees originals are not updated anymore.
https://raw.github.com/Anime-Lists/anime...e-list.xml
https://raw.github.com/Anime-Lists/anime...titles.xml

Secondly, you need to change this paths not just on the Addon itself (no, that would have been to easy), but on the folder where AniDb.Mod is set as scrapper, there you have as well. It seems that Kodi stores these settings in the database and does not take it from the addon.settings.file later anymore. You have to enforce an update.

After that you get the new anime shows. So i could scrap "Vivy" or "Odd Taxi" or "Shinigami Bocchan to Kuro Maid" afterwards without issue.
Reply
(2021-07-06, 21:13)Sesshoumaru Wrote:
(2021-07-06, 15:22)Sesshoumaru Wrote:
(2021-05-08, 16:37)Sc0r Wrote: @scudlee 

just found out Vivy Fluorite Eye`s Song is not on the scraper's anime list.
There is a fork with new titles: https://github.com/Anime-Lists/anime-lists
However, still does not work for me. Seems something else is also not right. Will debug this soon. I need my animu scapper on AniDb!
Obviously you have to use this new paths to get new anime updates, because ScudLees originals are not updated anymore.
https://raw.github.com/Anime-Lists/anime...e-list.xml
https://raw.github.com/Anime-Lists/anime...es.xml.xml

Secondly, you need to change this paths not just on the Addon itself (no, that would have been to easy), but on the folder where AniDb.Mod is set as scrapper, there you have as well. It seems that Kodi stores these settings in the database and does not take it from the addon.settings.file later anymore. You have to enforce an update.

After that you get the new anime shows. So i could scrap "Vivy" or "Odd Taxi" or "Shinigami Bocchan to Kuro Maid" afterwards without issue.

I'm not sure why, but whenever I try to update these fields, they remove one of the Anime-Lists from that URL. It deletes the Scudlee part just fine, though. I've no idea why this is happening. Any ideas how to work around this?

Thanks,
-z
Reply
Also, the second link comes up with a 404 error. Are you sure that link is correct?
Reply
(2021-07-10, 00:06)zmonkey Wrote: Also, the second link comes up with a 404 error. Are you sure that link is correct?

There was an "xml" too much on the end of the file name. Sorry, fixed it. Works now.

I am planning to move to Matrix soon.
Is there a port of or another AniDb scapper running with Matrix and the new Scapper System (Phyton 3 based as far as I remember)?
Reply
(2021-07-10, 13:43)Sesshoumaru Wrote:
(2021-07-10, 00:06)zmonkey Wrote: Also, the second link comes up with a 404 error. Are you sure that link is correct?

There was an "xml" too much on the end of the file name. Sorry, fixed it. Works now.

I am planning to move to Matrix soon.
Is there a port of or another AniDb scapper running with Matrix and the new Scapper System (Phyton 3 based as far as I remember)?

Oh, gotcha. Thanks for fixing that. I'm still not sure why I can't save the changes I make to those fields. When I type in Anime-Lists to replace the Scudlee, it just won't save on either configuration screen... I'll try switching to the default skin to make the changes and see if that helps. It's odd, because I know the links work, so even if it verifies that before saving, it should have been fine. I'll also try copying and pasting it from this forum in full, just to see if I somehow missed some other change.
Reply
  • 1
  • 67
  • 68
  • 69(current)
  • 70
  • 71

Logout Mark Read Team Forum Stats Members Help
[MOD] AniDB.net scrapers for TV shows and Movies8