How to add hundreds of episodes to mylist at the same time?
Moderator: AniDB
How to add hundreds of episodes to mylist at the same time?
Imagine if... I have seen all episodes of:
+SailorMoon
+Pokemon
+DragonBall
+...
please... I do not want to add them one by one on my list... Is there a button to mass add all episodes of a given anime to mylist? It was on TV, so it would be generic files.
+SailorMoon
+Pokemon
+DragonBall
+...
please... I do not want to add them one by one on my list... Is there a button to mass add all episodes of a given anime to mylist? It was on TV, so it would be generic files.
there is a simple way actually.
Get the Anidb-o-matic client.
Set it to automatically cache certain directories. And then set it to auto add to your list the ones cached. It can be set to auto set them all on watched aswell.
In this case it ONLY adds ones that already exist (ie, if the CRC matches it will auto recognize what file it is). In fact, you can even choose to have it autorename the files in a way that pleases you (using the existing data).
Get the Anidb-o-matic client.
Set it to automatically cache certain directories. And then set it to auto add to your list the ones cached. It can be set to auto set them all on watched aswell.
In this case it ONLY adds ones that already exist (ie, if the CRC matches it will auto recognize what file it is). In fact, you can even choose to have it autorename the files in a way that pleases you (using the existing data).
Re: How to add hundreds of episodes to mylist at the same ti
taltamir, note this:
Amour wrote:It was on TV, so it would be generic files.
No, there is a fast way:
1) You use the java-trick to mass-add generic files (you need Firefox):
http://anidb.info/perl-bin/animedb.pl?show=mylist
3) You check any anime you want
4) You use the drop-down menu at the bottom to change generic state on DVD
1) You use the java-trick to mass-add generic files (you need Firefox):
2) You go to Mylist:javascript:var elems = document.getElementsByTagName("i"); for(i=0; i<elems.length; i++){var elem = elems.item(i); if (elem.innerHTML == "generic file"){elem.parentNode.previousSibling.childNodes.item(1).checked = true;};} exit(0);
http://anidb.info/perl-bin/animedb.pl?show=mylist
3) You check any anime you want
4) You use the drop-down menu at the bottom to change generic state on DVD
And to actually contribute something here, I modified the script to check the first N generics. (Came in handy when having to check 48 of the 96 eps of Maison Ikkoku). Warning: this is the first time I mess with javascript, but it seems to work fine for me.
Code: Select all
javascript:var j = 0; var n = prompt("How many?"); if (n<1) {exit(0);} var elems = document.getElementsByTagName("i"); for(i=0; i<elems.length; i++){ var elem = elems.item(i); if (elem.innerHTML == "generic file"){ elem.parentNode.previousSibling.childNodes.item(1).checked = true; j++; if (j>=n) {break;} }; } exit(0);
also available here:
http://www.anidb.net/wiki/index.php?tit ... at_once.3F
and thx epsilon for the new version of the bookmarklet ^^ added it to the wiki.
http://www.anidb.net/wiki/index.php?tit ... at_once.3F
and thx epsilon for the new version of the bookmarklet ^^ added it to the wiki.