单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  VoiceConverter.h
//  Jeans
//
//  Created by Jeans Huang on 12-7-22.
//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface EMVoiceConverter : NSObject
 
+ (int)isMP3File:(NSString *)filePath;
 
+ (int)isAMRFile:(NSString *)filePath;
 
+ (int)amrToWav:(NSString*)_amrPath wavSavePath:(NSString*)_savePath;
 
+ (int)wavToAmr:(NSString*)_wavPath amrSavePath:(NSString*)_savePath;
 
@end