作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我目前想知道如何在 iOS 中录制音频。我知道很多人将此理解为从麦克风录音并回放,但事实并非如此。我正在为 iPad 制作录音应用程序。在 Apple 在 iOS 应用商店中提供的 GarageBand 应用程序中,您可以录制自己的声音并从该应用程序中播放它们。如果这没有意义,可以这样想:
我想做的就是制作一个播放声音的按钮。我需要知道如何录制按钮声音并能够播放声音序列。因此,如果我按“录音”,然后按“A、F、J”按钮,然后“停止”,然后按“播放”,它将播放它录制的内容(声音 A F 和 J)。
我正在努力做到这一点,以便您可以在此应用程序中录制和制作自己的音乐。抱歉,如果这让您感到困惑,请尽您所能帮助我。谢谢!
最佳答案
您可以创建两个 NSMutableArrays 并在您点击记录时清空它们。您还需要一个 NSTimer 和一个 int。所以在标题中:
NSTimer *recordTimer;
NSTimer *playTimer;
int incrementation;
NSMutableArray *timeHit;
NSMutableArray *noteHit;
在您的 header 中包含所有空白和 IBAction 以及以下内容。
让你的声音按钮都有不同的、独特的标签。
然后在你的主文件中:
-(void)viewDidLoad {
timeHit = [[NSMutableArray alloc] init];
noteHit = [[NSMutableArray alloc] init];
}
-(IBAction)record {
recordTimer = [NSTimer scheduledTimerWithTimeInterval:0.03 target:self selector:@selector(timerSelector) userInfo:nil repeats:YES];
[timeHit removeAllObjects];
[noteHit removeAllObjects];
incrementation = 0;
}
-(void)timerSelector {
incrementation += 1;
}
-(IBAction)hitSoundButton:(id)sender {
int note = [sender tag];
int time = incrementation;
[timeHit addObject:[NSNumber numberWithInt:time]];
[noteHit addObject:[NSNumber numberWithInt:note]];
[self playNote:note];
}
-(IBAction)stop {
if ([recordTimer isRunning]) {
[recordTimer invalidate];
} else if ([playTimer isRunning]) {
[playTimer invalidate];
}
}
-(IBAction)playSounds {
playTimer = [NSTimer scheduledTimerWithTimeInterval:0.03 target:self selector:@selector(playback) userInfo:nil repeats:YES];
incrementation = 0;
}
-(void)playback {
incrementation += 1;
if ([timeHit containsObject:[NSNumber numberWithInt:incrementation]]) {
int index = [timeHit indexOfObject:[NSNumber numberWithInt:incrementation]];
int note = [[noteHit objectAtIndex:index] intValue];
[self playNote:note];
}
}
-(void)playNote:(int)note {
//These notes would correspond to the tags of the buttons they are played by.
if (note == 1) {
//Play your first note
} else if (note == 2) {
//Play second note
} else if (note == 3) {
//And so on
} else if (note == 4) {
//etc.
}
}
稍加修改(我怀疑这段代码是否完美),您可能会使其正常工作。就像您可能希望在您点击其中一个按钮后禁用播放/录制按钮。祝你好运!
关于ios - 如何在 iOS 中录制声音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10423462/
我是一名优秀的程序员,十分优秀!