Latest Comments

Comment Types:
Comment in Feedback
20/03/2024 13:07 — Anonymous
thx
Comment in Feedback
19/03/2024 23:06 — admin
You can find relevant info at https://animetosho.org/about/logistics
Comment in Feedback
19/03/2024 16:47 — Anonymous
how much does it cost to run all of anime tosho?
Comment in Feedback
17/03/2024 17:41 — c_n
Thanks!
Comment in Feedback
17/03/2024 13:05 — admin
but if I understand correctly, this would also not allow for detecting duplicate files that aren't aligned to block boundaries, is that the case?
Correct, it's only intended to match the first file in the torrent.

which CRC polynomial is actually used here? The Ethernet one?
Correct.
Comment in Feedback
17/03/2024 11:37 *c_n
You don't know how the partial block at the end will be filled [...]
Oh, I see the problem now. Thanks for your explanation. The last block of the file might contain information from the next file, and since that would be included in the block hash, it wouldn't be useful for detecting duplicates.

My thought process was to split the file into blocks and hash the partial last block, but I didn't consider the interaction with torrents containing multiple files.

Sorry to be a bother, but if I understand correctly, this would also not allow for detecting duplicate files that aren't aligned to block boundaries, is that the case?

It would also be nice to know the rich text formatting used on this feedback page. Figured it out, it's pseudo-HTML.

Another minor question: the documentation says "CRC32" a lot sometimes, which CRC polynomial is actually used here? The Ethernet one?
Comment in Feedback
17/03/2024 10:50 *admin
Is there a reason it's done this way?
As opposed to including the partial block at the end? If so, I don't see how you could make it work.

Keep in mind that the point is to provide an indicator to detect duplicates. Arguably it's not 100% accurate, but it should be close.
You don't know how the partial block at the end will be filled - if it's the last block of the torrent, it isn't padded, if it's not the last block, it's filled with the contents of the next file. There's no way to compute the hash for the latter case, since you can't anticipate what file will be concatenated onto the end. The former case is computable, but would only be useful to match against torrents where that file is at the end and the file's offset is block aligned - basically it'd only be useful for matching against single file torrents, but useless for matching batches.
Comment in Feedback
17/03/2024 08:07 — Anonymous: "c n"
(Does this use BBCode?)

[quote]The hash isn't intended to detect errors, but if you used it for such, then yes.[/quote]
Ah, of course, my bad. Ditto for duplicate detection though, files with different trailing data will hash equal. Is there a reason it's done this way? In any case, it's not like it can be changed at this point, and even if, it would be of small benefit, if any. Thanks for the quick response.
Comment in Feedback
17/03/2024 04:16 — admin
This means that errors in the last block will not be detected, right?
The hash isn't intended to detect errors, but if you used it for such, then yes.

This has made me curious about that scheme.
It's just a raw LZMA2 stream with a preset dictionary and CRC32 checksum.

Thank you for the compliments.
Comment in Feedback
16/03/2024 23:24 — Anonymous: "c n"
Also, your SIMD stuff is pretty nice.
Comment in Feedback
16/03/2024 22:59 — Anonymous: "c n"
From the DB export page:

> torpc_sha1_*: hex encoded SHA1 hash of concatenated SHA1 hashes (binary encoded) of the respective block size. For example, the torpc_sha1_16k hash is obtained by breaking the file into 16KB blocks (if the last block is less than 16KB, it is discarded), calculating a 20 byte SHA1 hash for each block, concatenating these hashes, which is then fed through SHA1 to obtain the final hash. The selected block sizes correspond with the most common piece sizes used for torrents, and hence this hash can be useful in trying to detect duplicate torrents which have different info hash values.

This means that errors in the last block will not be detected, right?

> Mediainfo and related data are currently not included mainly due to size and time it takes to dump the data. The data is also compressed using a custom LZMA2 based scheme, which users would need to implement a decompressor for. I may consider including this data if many are interested in such.

This has made me curious about that scheme. Would you mind sharing it or some code implementing it?

Thanks for the awesome site, cute design, and making these database dumps available :) Very cool!
Comment in Feedback
14/03/2024 14:21 — Anonymous
Works! Great!
Comment in Feedback
06/03/2024 08:16 — Memories
Yeahhh, thanks.
Comment in Feedback
06/03/2024 08:03 — admin
Not sure if I'll get a reason out of the host - the info they're giving me doesn't really make sense.
But it seems the server's all good now.
Comment in Feedback
05/03/2024 13:26 — admin
Not sure what's going on with the server exactly. Host has done something funny with it - will need to wait for them to fix.
Sorry for the delay.
Comment in Feedback
05/03/2024 13:14 — Anonymous
yep feed.animetosho.org and storage.animetosho.org seem to be dead,
maybe because admin changing stuff for tor / onion website
Comment in Feedback
05/03/2024 11:20 — Anonymous
feed is dead ;-;
Comment in Feedback
04/03/2024 10:52 — admin
Done, thanks for the suggestion!
Comment in Feedback
03/03/2024 13:31 — Anonymous
Suggestion for https://animetosho.org/comments

Change links like:
Comment in Title

Into:
Comment in Title

For separate "visited" link style.
Currently I made this change in a little userscript for myself.
Comment in Feedback
03/03/2024 06:24 — Anonymous: "Anothenymous"
Thank you!
Comment in Feedback
03/03/2024 02:24 *admin
I've added an .onion address. Don't know how well it'll be in the long run, so no promises that it'll stay at this stage.
Comment in Feedback
29/02/2024 12:15 — admin
Thanks for the info!
Yeah, I suspected that might be the case; I'd need to change how the setup a bit to make it work.
Comment in Feedback
29/02/2024 03:26 — Anonymous
No, accessing a subdomain on an onion address (storage.xxxxx.onion) has no meaning in Tor, it will always go to the onion service by the xxxxx public key. The HTTP client/web browser will however send `Host: storage.xxxxx.onion` so it's useful for virtual hosting on the same webserver/onion identity. Since the main site and storage server are physically separate you should instead run two onion services, one on each server, which will have different identities (xxxxx.onion for the server on animetosho.org, yyyyy.onion for the server on storage.animetosho.org).
Comment in Feedback
28/02/2024 12:53 — admin
Attachments are listed in the show=torrent request.
See Attachment Files Table for info on how to construct the attachment URL.
Comment in Feedback
28/02/2024 12:52 — admin
Thanks for the suggestion. This site doesn't actually use load balancing; subdomains direct requests to the secondary server (e.g. storage.animetosho.org).
Do you know if subdomains can be set up to direct requests to different servers (without a load balancer)?
Comment in Feedback
28/02/2024 08:08 — Anonymous
Onionbalance may be what you're looking for. (Load balancing an onion url against two servers)
Comment in Feedback
28/02/2024 03:06 — Anonymous
Can the JSON API be used to download attachments and subtitles?
Comment in Feedback
25/02/2024 21:54 — admin
That's not nice.
Comment in Feedback
25/02/2024 17:22 — Anonymous
pajeets tend to not have
Comment in Feedback
25/02/2024 12:06 — Anonymous
If you can access the site   Nyaa.si
Comment in Feedback
25/02/2024 00:42 — Anonymous
Turn out the title was "The End of the F******g World"
Comment in Feedback
24/02/2024 17:11 — Anonymous
not as such, but for live action:

https://chauthanh.info/drama/browse/ALL.html
Comment in Feedback
24/02/2024 12:06 — Anonymous
Hello! Is there an "Animetosho for live action" site? (There is an anglo-american TV series said to be very similar to Bokuyaba / Dangers in My Heart in its characters and premise, so I want to check it out.)
Comment in Feedback
23/02/2024 21:12 — admin
Thanks for the suggestion!

I had a quick look at it and it initially appears straightforward. A complication is that this site runs across two servers, so I'm not sure how easy it is to configure it that way.
I'll put it on the nice-to-have list for now.
Comment in Feedback
22/02/2024 17:44 — Anonymous
Regrettably, such a channel could only be used for downloading Spy x Family episodes...
Comment in Feedback
22/02/2024 09:22 — Anonymous
Could you add .onion domain for accessing animetosho over Tor Browser? It would be cool to not rely on regular DNS/exit nodes for Tor users.
Comment in Feedback
09/02/2024 23:31 — admin
Updated, thanks.
Comment in Feedback
09/02/2024 18:58 — Anonymous
yeah sorry, it says ep 20 when its ep 22*
Comment in Feedback
09/02/2024 18:21 — Anonymous
You're still wrong, episode 46 is episode 22 of season 2.
Comment in Feedback
09/02/2024 18:00 — Anonymous
Mr. tosho man seems like this release has the wrong anidb EID: https://animetosho.org/view/subsplease...kv.1829915 it says its ep 20 when its ep 18 [I think]
Comment in Feedback
05/02/2024 16:56 — Rozugorgi1979
Yes, but the uploader will still be you - even if you automated the process of retrieving the files from torrent and uploading it then linking the NZB.
Comment in Feedback
05/02/2024 10:15 — admin
No-one does the uploads, it's all automated.
Comment in Feedback
04/02/2024 17:00 — Rozugorgi1979
Ah damn, you are right i can just use the GZip'd files in my downloader. Thanks for the tip! I meant, if the contents of the NZBs are uploaded by you or by someone else.
Comment in Feedback
04/02/2024 03:59 — admin
Thanks. Most clients should accept a GZip'd NZB directly, so it shouldn't really matter if it's archived or not. You can just remove the '.gz' at the end of the URL to get something that isn't in a GZip.
I don't get your 'hotlinked' question. The NZB is generated here.
Comment in Feedback
04/02/2024 01:38 — Rozugorgi1979
Love this website, would love having NZBs not archived but i understand the attempt on saving Space. Are the NZBs uploaded by the website or are they 'hotlinked' too?
Comment in Feedback
03/02/2024 12:23 — Anonymous
Probably your ISP has blocked nyaa.si
Use nyaa.land mirror instead.
Comment in Feedback
30/01/2024 11:24 — Anonymous
no
Comment in Feedback
30/01/2024 08:23 — Anonymous
nyaa.si is down?
Comment in Feedback
29/01/2024 21:15 — admin
Thanks for the question. The size limit is mostly there to minimise bandwidth wastage in the case of failures (often, you can only tell if the upload succeeded or not after all the data has been sent). It's sometimes also helpful for downloaders, as not all hosts play nicely with resume.
For Gofile, it's set at 2GB, so the vast majority of files won't be split.

I can look at increasing the threshold if there's interest in such.
Comment in Feedback
29/01/2024 19:21 — Anonymous
but animetosho splits it up differently for different dll sites anyways so it wont be a that big of a challenge to just not split it for gofile

also i don't think these file splits even get written to disk, so uploading a arbitrarily split file should not problem
beta
Anime DDL+NZB mirror
Current Time: 17/04/2026 19:53



About/FAQs

Discord