/zoo/ - Zoophilia

Animal Love

Index Catalog Archive Bottom Refresh
Name
Options
Subject
Message

Max message length: 12000

files

Max file size: 32.00 MB

Total max file size: 50.00 MB

Max files: 5

Supported file types: GIF, JPG, PNG, WebM, OGG, and more

E-mail
Password

(used to delete files and posts)

Misc

Remember to follow the Rules

The backup domains are located at 8chan.se and 8chan.cc. TOR access can be found here, or you can access the TOR portal from the clearnet at Redchannit 3.0.

US Election Thread

8chan.moe is a hobby project with no affiliation whatsoever to the administration of any other "8chan" site, past or present.

ATTENTION ALL OREGONIANS LEGAL INFO YOU MUST READ. IF YOU ARE FROM OREGON GTFO ACCORDING TO ORS 167.341 [2015 c.324 §2] YOU ARE MEGA GAY, AND ITS JUST NOT LEGAL TO HAVE MEN SO GAY. YOU MUST LEAVE NOW. IT IS A CLASS A MISDEMEANOR TO REMAIN. LEAVE LAWBREAKER NOW! LOOK DONT ASK ME YOU VOTED FOR THE TOO QUEER FOR INTERNET LAW FAGS YOU DEAL WITH IT. Comics|Books and Stories|Stories|Video Games|Weapons|Furry|Random Bullshit|Retro Vidya

(14.08 KB 363x480 rocks.PNG)

animalpornrocks.co archive Animal Enthusiast 03/21/2024 (Thu) 09:08:01 No. 12106
Back in 2022 I backed up most of animalpornrock.co to an encrypted drive that I just figured out how to get into. Anyone know where I can upload it if anywhere? can I just tar/7z it and encrypt it and host on mega/archive?
(11.66 MB 266x474 100456_SD [100456_SD].mp4)

(13.25 MB 360x360 100455_SD [100455_SD].mp4)

(21.01 MB 640x332 100406_SD [100406_SD].mp4)

(29.61 MB 352x640 109728_SD [109728_SD].mp4)

(29.60 MB 592x474 103631_SD [103631_SD].mp4)

(29.38 MB 640x360 109026_SD [109026_SD].mp4)

(29.37 MB 478x848 105284_SD [105284_SD].mp4)

(29.36 MB 368x640 105142_SD [105142_SD].mp4)

(28.88 MB 640x360 105074_SD [105074_SD].mp4)

(28.73 MB 562x378 109256_SD [109256_SD].mp4)

(28.33 MB 568x320 102839_SD [102839_SD].mp4)

(28.16 MB 640x360 106674_SD [106674_SD].mp4)

(27.48 MB 640x360 111634_SD [111634_SD].mp4)

(27.45 MB 752x432 107619_SD [107619_SD].mp4)

>>12298 It's gone, the directory is empty, either OP or the cloud provider deleted it. >>12367 Is that a donkey? I would love to see a video where I can see his eyes.
>>12371 I'm OP and I can view it just fine. I'm not even signed into the account or using the IP I uploaded it with either lol.I imagine the dir is blank if you have a bad password but I can't replicate your problem. Just get the torrent if this is that hard, I've seeded it for 2TB and still going. 99GB is pretty small, less than a video game these days and less than the smallest microSD anyone sanely buys anymore. Phoneposters have no excuse either. I saw a peer complete this very torrent on a fucking android TV or something.
>>12334 nice! you have a lot more storage than me :) >>12313 i have a script for you. i came up with a simple way to scrape video titles from ZooX18. afaik their server doesn't provide an endpoint mapping video IDs -> titles that isn't protected by Cloudflare. however, their unprotected video search results pages (sorted by most recent) seem to list out every video on the site, so you can mass download those and scrape the HTML. here's the URL template (* starts at 1): https://www.zoox18.com/videos?o=mr&page=* you'd need to mass download these pages using whatever tool you want. I found this FOSS "uGet" download manager that provides a good amount of flexibility while still being easy to use. to set it up for downloading these pages, open it, then click Category -> Properties. and bump "active downloads" up higher than the default. in the defaults for new downloads, set the Referrer to "https://www.zoox18.com" and copy your browser's user agent into the User Agent box. finally click FIle -> Batch Downloads -> URL Sequence and set it up correctly. you can find the current max page number by opening page 1 in your browser and scrolling to the bottom (3618 when I last checked). as you download the pages, new videos may arrive, which may cause duplicates to appear, but that's okay. i attached a "scrape_video_titles.sh" script to this post (remove the .txt from filename). it takes a directory containing downloaded HTML files and outputs the video IDs and their corresponding titles. if you run it without any arguments it prints the usage info. once you have the "id_title_map.txt", you can use something like this to bulk rename your video files: id_title_map="id_title_map.txt" # replace with path to id_title_map.txt videos="./videos" # replace with path to video files for file in "$videos"/*.mp4; do bn=$(basename "$file") v_id=$(echo "$bn" | cut -d'_' -f1) # "head -n1" used in case there are duplicates v_title=$(grep "$v_id" "$id_title_map" | head -n1 | cut -d'|' -f2) mv "$file" "$(dirname "$file")/$v_id - $v_title.mp4" done you could get more efficient with sorting ("sort -n") and duplicate removal ("uniq") and whatnot but it may not be necessary. i would try and mass download myself but my internet connection is dogshit. hope it works for you. thanks for your archiving work.
(9.13 MB urls_150000.txt)

>>12334 i was having trouble coming up with a good way to share the list of generated video urls as per the method i described above because of the "timestamp" portion of the url. if too much time elapses before all the links are downloaded, they will expire. this can be addressed but it's annoying so i didn't bother. but i just found something cool that i didn't think to check before: zx18 only checks if the timestamp is too old, not if it's too *new*. so i just hardcoded a timestamp which is one year from today and generated valid urls for all potential videos from ID 1 to 150000. (the current largest ID is 147527 and the smallest ID reported by the search results page is 14780). you should be able to plug this list into any downloader program. just make sure it follows redirects, and the Referrer is set to something starting with "https://www.zoox18.com", and User-Agent should be set to something valid (copy-paste from your browser). if the "brute force" approach is working for you, that's fine, i just thought i'd share this as another option.
(728.00 B gen_urls.py.txt)

>>12389 also, here's the script i used to generate this if someone's interested
>>12387 oops, there's a few issues with the example bulk rename script i provided. change line 8 to: v_title=$(grep "^$v_id|" "$id_title_map" | head -n1 | cut -d'|' -f2) insert this after line 8: if [[ "$v_title" == "" ]]; then continue; fi change line 10 (formerly line 9) to: mv "$file" "$(dirname "$file")/${v_id}_SD - $v_title.mp4" everything else looks good.
>>12387 >>12389 >>12390 >>12391 wow thanks for these! I was originally going to try and rename these using a csv file lol. I'll almost definitely use something from this approach though. Great suggestion with xmllint.
>>12387 this actually works, this is galaxy brain shit. you're a genius.
(9.47 MB 352x640 135242_SD [135242_SD].mp4)

(3.04 MB 266x474 135236_SD [135236_SD].mp4)

(7.47 MB 640x360 135229_SD [135229_SD].mp4)

(6.08 MB 280x474 135214_SD [135214_SD].mp4)

(2.36 MB 540x960 135209_SD [135209_SD].mp4)

(8.27 MB 576x1024 135206_SD [135206_SD].mp4)

(10.36 MB 640x360 135204_SD [135204_SD].mp4)

(3.55 MB 432x480 135186_SD [135186_SD].mp4)

(6.83 MB 280x480 134956_SD [134956_SD].mp4)

(26.56 MB 640x360 134766_SD [134766_SD].mp4)

(10.53 MB 266x474 134752_SD [134752_SD].mp4)

>>12353 That video on the porch is insane probably my favorite video now
Any help with this one? I have small clips of her, but can't find much.
>>12174 Could someone please do this but with the gaybeast torrent?
>>12174 So this is broken now.
>>20627 >Without limits you mean pedophilia, like every group without limits that ever existed
>>20629 No. No Pedophilia. Only Zoo.
>>20630 id encourage you to bring that up whenever youre sharing links because i also hear 'no limits' and think pedo shit and i dont want that
>>20630 if it's only zoo why can't you post it here
>>20637 intended for rougher content that isn't allowed here
Any gingytrix/gingysnaps content amongst these before I download?


Forms
Delete
Report
Quick Reply