Miuzarte commited on
Commit
bec9954
·
1 Parent(s): 5e5f483

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -29,7 +29,7 @@ $InputSuffix = "aac"
29
  $OutputSuffix = "wav"
30
  New-Item $OutPutPath -Type Directory
31
  foreach($Files in Get-Item * -Include *$InputSuffix){
32
- $OutputFile = $UserPath + $Files.BaseName + "." + $OutputSuffix
33
  ffmpeg.exe -i $Files $OutputFile
34
  #如果同时要转换为单声道:
35
  #ffmpeg.exe -i $Files -ac 1 $OutputFile
 
29
  $OutputSuffix = "wav"
30
  New-Item $OutPutPath -Type Directory
31
  foreach($Files in Get-Item * -Include *$InputSuffix){
32
+ $OutputFile = $OutPutPath + $Files.BaseName + "." + $OutputSuffix
33
  ffmpeg.exe -i $Files $OutputFile
34
  #如果同时要转换为单声道:
35
  #ffmpeg.exe -i $Files -ac 1 $OutputFile