ConvertMp3.h 294 B

123456789101112131415
  1. //
  2. // ConvertMp3.h
  3. // SwiftRecorder
  4. //
  5. // Created by iOS on 2018/9/25.
  6. // Copyright © 2018 AidaHe. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ConvertMp3 : NSObject
  10. - (void) audioPCMtoMP3:(NSString *)audioFileSavePath mp3File:(NSString *)mp3FilePath;
  11. @end