Dup Ver Goto 📝

Powershell String Manipulation Examples

To
4 lines, 25 words, 141 chars Page 'StringManipulation1' does not exist.

Example: batch ffmpeg conversion

ls *.wav | foreach { $a = $_.name; $b = $a.replace(".wav",".mp3"); ffmpeg -i $a -b:a 160k $b;  }