hupix X vamtic:
Ez egy egyszerű API, amely PYF Magyarország térképének változásait tárolja.
Használati utasítás
Letöltés
(Windows) PowerShell:
New-Item -ItemType Directory -Path ".\history" -Force | Out-Null; (Invoke-WebRequest
-Uri "https://api.vamtic.us.to/history/" -UseBasicParsing).Links | Where-Object { $_.href -match
"\.png$" } | ForEach-Object { $fileName = [System.IO.Path]::GetFileName($_.href); $filePath =
".\history\$fileName"; if (-Not (Test-Path -Path $filePath)) { Invoke-WebRequest -Uri
"https://api.vamtic.us.to/$($_.href)" -OutFile $filePath } }
(Linux, MacOS) Wget:
wget -r -np -nd -A "*.png" -R "index.html*" -P ./history -nc -l 1
https://api.vamtic.us.to/history
Konvertálás
FFmpeg:
ffmpeg -framerate 60 -pattern_type glob -i "hungary_*.png" -vf scale=3840:2160 -c:v
libx264 -pix_fmt yuv420p vamter.mp4
ImageMagick:
magick hungary*.png vamter.gif
(Részletesebb leírás az Információ oldalon.)