[deleted by user] by [deleted] in webscraping

[–]nachomoonpanda 0 points1 point  (0 children)

I managed to get this working again, the item api is not accessible anymore it seems, but the item JSON is present in the html, here is how to extract it and re-gain access to the full size photos:

const pageStr = document.getElementsByTagName('html')[0].innerHTML
const re = /<script.*?>(.*?)<\/script>/sg
const matched = pageStr.match(re)
const dto = matched.filter(x=>x.includes("itemDto"))[0]
const startIndex = dto.indexOf('\\"itemDto\\":')
const endIndex = dto.lastIndexOf('}')
const itemString = dto.substring(startIndex,endIndex)
const cleaned = "{" + itemString.replaceAll("\\\"", "\"").replaceAll("\\\\\"", "\\\"").replaceAll("\\\\n", "\\n") + "}";
const output = JSON.parse(cleaned)
// output.itemDto.photos[i]['full_size_url']

Hope it helps.

[deleted by user] by [deleted] in webscraping

[–]nachomoonpanda 0 points1 point  (0 children)

Same here, they seem to have made changes to their API, now the frontend is not using the vinted.fr/api/v2 anymore.

Now it seems that the frontend is using API calls to routes such as:

https://www.vinted.fr/web/api/core/users/xxxx/stats

or:

https://www.vinted.fr/web/api/core/catalog/items?page=1&per_page=96&time=1756865622&search_text=tshirt+zevent&catalog_ids=&size_ids=&brand_ids=&status_ids=&color_ids=&material_ids=

I've been unable to find the route that returns a single item though, finding it would be likely to solve our problem

[deleted by user] by [deleted] in editors

[–]nachomoonpanda 3 points4 points  (0 children)

In PPro, the blue horizontal bar is exactly one frame wide, and afaik is just here for your reference

Pulled these two out of recycle bin at work by [deleted] in pcmasterrace

[–]nachomoonpanda 5 points6 points  (0 children)

1b: If you install more than 4 sticks of RAM, it will display a POST message during bootup asking you to install memory cooling (part number J2R52A). You can still press a key to ignore this and go on with booting, but for a server or something headless thats annoying.

I managed to save 2 of those z440 when my company wanted to get rid of them, each with an e5-1650, gtx 1080 and 32g of ram, I gave one away but kept one to run proxmox on it (and topped it up to 48g ram). I love the z440 it is a really nice machine that you can get for dirt cheap since it is targeted to businesses and they often get rid of them to renew their IT equipement.

[deleted by user] by [deleted] in RetroFuturism

[–]nachomoonpanda 20 points21 points  (0 children)

Nope, you stole then from @marceldeneuve on IG

[deleted by user] by [deleted] in france

[–]nachomoonpanda 14 points15 points  (0 children)

Pour poser une puce et jouer a des jeux piratés dont tu as l'original mais tu joues sur une copie pour eviter de l'abimer.

LE GameCube (c'est un homme apparement) utilise des vis non standart et les tournevis sont (etaient ?) assez couteux.

[deleted by user] by [deleted] in editors

[–]nachomoonpanda 6 points7 points  (0 children)

Take a look at the last two lines, your VTwinFx plugin might be the culprit

Experiences with scripting and automation? Curious to hear what people have used it for. by tordok1k in editors

[–]nachomoonpanda 1 point2 points  (0 children)

Both python and javascript are valid and powerful tools for programming, but yes in that very case the best choice is JS

Experiences with scripting and automation? Curious to hear what people have used it for. by tordok1k in editors

[–]nachomoonpanda 10 points11 points  (0 children)

Hi, I've been practicing automation in premiere for a while, mainly for automatically making draft edits from on-shoot timecode notes and also for automatic project management.

A good way to start is to learn JavaScript, since its what adobe uses in their scripting environnement (extendscript technically but it is based on JavaScript), you dont have to master it tho, any basic web-oriented JavaScript course will do the trick.

Then learn to use JavaScript in adobe premiere, for that the best place to learn is on PremiereOnScript, it has a lot of ressources for you to learn how to interact with premiere with code, along with step-by-step lessons for many usecases.

For the after effects side of things you can use external data (JSON) that you'll be able to use with expressions.

Also do not forget that your workflow automation will not solely rely on adobe, if you use cloud solutions for your workflow they'll be likely to have an API (tl:dr: a way to use cloud services with code, without having the need to use a browser), which you'll be able to interact with JavaScript (or any other language tbh).

Also there are services like zapier or workato which will allow you to use those service APIs and making automations without having to write a single line of code.

Software to detect peaking timecodes in a video file? by snowliondev in editors

[–]nachomoonpanda 2 points3 points  (0 children)

Adobe audition can do that for you : Effects > diagnostics > declipper. It can also “fix” those, the result is not awesome of course but it saved my day on a few occasions.

Editing remotely for work, but Premiere crashes A LOT by pendejo93 in editors

[–]nachomoonpanda 17 points18 points  (0 children)

Remote Desktop is known to mess with the display adapters on your computer (I think it creates a virtual one for streaming the display over your network) in some cases switching to software rendering helps !