ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    如何使用 ffmpeg 将文件采样率转换为16k或以上?

    May 31, 20231 min read

    使用以下命令:

    ffmpeg -i input_file -ar 16000 output_file
    

    其中,input_file 是要转换采样率的输入文件,output_file 是转换后的输出文件。-ar 是采样率参数,设为16k(16000 Hz)即可。

    相关文章

    CaseIterable是 Swift 中的一个协议,用于提供枚举类型的所有实例值的访问能力?

    CaseIterable 是 Swift 中的一个协议,它允许枚举类型通过 allCases 属性访问并遍历所有实例。

    whisper AssertionError: incorrect audio shape

    The error message indicates an assertion failure due to the audio input's shape not matching the model's expected shape.

    Git windows 客户端下载 淘宝源

    ID 124989678221787137 的标题为“Git windows 客户端下载 淘宝源”,提供了Git for Windows 2.10.0.windows.1版本的下载链接。

    Flutter Spacer widget 的使用详解

    Flutter 的 Spacer widget 用于在布局中插入空白空间,通过设置 flex 属性来控制子 widget 之间的距离和空间分配比例。

    MAC 命令行 zip 压缩时加密处理

    在MAC命令行中,使用`zip -er encrypted.zip folder/`指令来压缩并加密指定文件夹,需替换文件名和路径,并设置密码。