add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/flac.md Normal file
View File

@@ -0,0 +1,20 @@
# flac
> 编码、解码和测试FLAC文件。
> 更多信息:<https://xiph.org/flac>。
- 将WAV文件编码为FLAC这将创建一个与WAV文件位于同一位置的FLAC文件
`flac {{path/to/file.wav}}`
- 将WAV文件编码为FLAC指定输出文件
`flac -o {{path/to/output.flac}} {{path/to/file.wav}}`
- 将FLAC文件解码为WAV指定输出文件
`flac -d -o {{path/to/output.wav}} {{path/to/file.flac}}`
- 测试FLAC文件的正确编码
`flac -t {{path/to/file.flac}}`