Tumgik
#theres probably a better more automated way to do this. does gallery-dl support wix sites..?
wrestlezon · 1 year
Text
saving photos off the aew website
aew posts photos from dynamite/rampage in their photo gallery here: https://www.allelitewrestling.com/aew-photos
you can't right-click on anything in the wix gallery, which means you can't right-click save the images. however you can click and drag the image to a new browser tab, freeing it from the clutches of the wix gallery.
now you can right-click save the image, but its actually a "webp" file. bad! i hate webp!
you can access the jpg version of the image by simply deleting everything after the "~mv2.jpg" part of the url. so you want to keep only this highlighted part, basically:
Tumblr media
now you are looking at the jpg version of the photo! it's not a webp and as a bonus its at its largest original size. congrats.
its kind of a pain in the ass to manually delete part of the url for every photo if youre saving a bunch of them. i use a bookmarklet to truncate the url automatically. here:
javascript:location.href = location.href.substring(0,location.href.indexOf("/v1"));
you use this by adding a new website bookmark in your browser, but instead of putting a website url you put that whole javascript line in there.
when you click this new bookmark, it'll look for the phrase "/v1" in your current tab's URL and delete it along with everything after it for you, and then load that url. handy!
it will do this for any website or url. so dont click it when you dont want to
48 notes · View notes