Difference between revisions of "Windows"
Jump to navigation
Jump to search
(Created page with "=Windows= === Convert with Ffmpeg === <pre> // Add in input uniform vec3 iResolution; // viewport resolution (in pixels) uniform float iTime;...") |
|||
Line 2: | Line 2: | ||
=== Convert with Ffmpeg === | === Convert with Ffmpeg === | ||
<pre> | <pre> | ||
− | // | + | // Lots of tricks here: https://berniebernie.fr/wiki/Windows_batch |
− | + | cd C:\folder | |
− | + | for %f in (*.wav) do ( ffmpeg -i "%f" -q:a 2 "%~nf.mp3" ) | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</pre> | </pre> |
Revision as of 18:35, 6 December 2022
Windows
Convert with Ffmpeg
// Lots of tricks here: https://berniebernie.fr/wiki/Windows_batch cd C:\folder for %f in (*.wav) do ( ffmpeg -i "%f" -q:a 2 "%~nf.mp3" )