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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -21,9 +21,9 @@ tags:
21
 
22
  岁己每月直播的音频,因为录制直播流网络不稳定、断流,会导致部分文件时间码错误,使用时建议先转码为wav/flac等无损格式
23
 
24
- 下面是一个简单的aac转wav的powershell脚本,请保存为.ps1文件后运行,同时请确保path变量中有ffmpeg或自行修改ffmpeg.exe路径
25
 
26
- ```
27
  $OutPutPath = ".\"
28
  $InputSuffix = "aac"
29
  $OutputSuffix = "wav"
@@ -31,6 +31,8 @@ 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
  Pause
36
  ```
 
21
 
22
  岁己每月直播的音频,因为录制直播流网络不稳定、断流,会导致部分文件时间码错误,使用时建议先转码为wav/flac等无损格式
23
 
24
+ 下面是一个简单的aac转wav的powershell脚本
25
 
26
+ ```powershell
27
  $OutPutPath = ".\"
28
  $InputSuffix = "aac"
29
  $OutputSuffix = "wav"
 
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
36
  }
37
  Pause
38
  ```