VoiceConverter.h 313 B

12345678910111213141516
  1. //
  2. // VoiceConverter.h
  3. // Jeans
  4. //
  5. // Created by Jeans Huang on 12-7-22.
  6. // Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface VoiceConverter : NSObject
  10. + (NSString *)amrToWav:(NSString*)filePath;
  11. + (NSString *)wavToAmr:(NSString*)filePath;
  12. @end