☰
Dup
Goto
📝
Powershell String Manipulation Examples
PT2
/
lang
/
powershell
powershell
string
11-26 18:59:32
To
Pop
4 lines, 25 words, 141 chars
Sunday 2023-11-26 18:59:32
Example: batch ffmpeg conversion
ls *.wav | foreach { $a = $_.name; $b = $a.replace(".wav",".mp3"); ffmpeg -i $a -b:a 160k $b; }