Update README.md
Browse files
README.md
CHANGED
@@ -21,9 +21,9 @@ tags:
|
|
21 |
|
22 |
岁己每月直播的音频,因为录制直播流网络不稳定、断流,会导致部分文件时间码错误,使用时建议先转码为wav/flac等无损格式
|
23 |
|
24 |
-
下面是一个简单的aac转wav的powershell
|
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 |
```
|