9 lines
405 B
Plaintext
9 lines
405 B
Plaintext
|
|
Windows11:power shell
|
|||
|
|
|
|||
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force
|
|||
|
|
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
|
|||
|
|
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
|||
|
|
choco install imagemagick -y
|
|||
|
|
magick --version
|
|||
|
|
magick.exe "output_3s_100x100.mp4" -resize 100x100 -quality 95 frame_%04d.jpg
|