A bunch of scriptlets I created or found
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
CLITools/2mp3.ps1

10 lines
211 B

$file = $args[0]
if ($file -eq $null)
{
$file = Read-Host -Prompt "Enter filename"
}
$filenew = $file.Substring(0,$file.Length-4)
ffmpeg -i `"$file`" -vn -ar 44100 -ac 2 -ab 320k -f mp3 `"$filenew.mp3`"