You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
366 B
17 lines
366 B
// |
|
// VoiceConverter.h |
|
// Jeans |
|
// |
|
// Created by Jeans Huang on 12-7-22. |
|
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@interface VoiceConverter : NSObject |
|
|
|
+ (int)amrToWav:(NSString*)_amrPath wavSavePath:(NSString*)_savePath; |
|
|
|
+ (int)wavToAmr:(NSString*)_wavPath amrSavePath:(NSString*)_savePath; |
|
|
|
@end
|
|
|