Guest User

Untitled

a guest
Nov 15th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Function flactomp3($folderPath) {
  2. Set-Location $folderPath;
  3. Get-ChildItem -Filter *.flac | ForEach-Object {
  4. ffmpeg.exe -i "$_" -ab 320k -map_metadata 0 -id3v2_version 3 ($_.basename + ".mp3")
  5. }
  6. }
Add Comment
Please, Sign In to add comment