VoiceConverter2

amr和wav音频格式相互转换


License
MIT
Install
pod try VoiceConverter2

Documentation

WAConverter

该库从腾讯云IM的项目抽取出来的,用于WAV、AMR音频格式转换

怎样安装?

  • 在Objective-C项目中使用,在Podfile中加入:
    pod 'WAConverter'
  • 在Swift项目中使用:
    1. 在Podfile中加入:

      use_modular_headers!
      pod 'WAConverter'
    2. Bridging-Header.h文件中加入:

      #import <WAConverter/WAConverter.h>

怎样使用?

  • 在OC中使用

    #import <WAConverter.h>
    [WAConverter convertWAV:wavPath toAMR:amrPath]
  • 在Swift中使用

    if !WAConverter.convertWAV(url.path, toAMR: armPath) {
        // 格式转换失败
        return
    }