How to record Piano?

181 Views Asked by At

I have a piano app with touch based tones and now i want to put a recording feature in it. Can anyone guide me to do this. But i need to record this and send to a stream.

-(void) viewDidLoad {
    [super viewDidLoad];
    [keyboardView setVisibleKeyRange: NSMakeRange(48, 5)];

    if (audio == nil) {
        [self setAudio:[NSMutableArray arrayWithCapacity:0]];
    }

    [drawingView setShowOutsideLedger:YES];

    NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"keyboardLayout" ofType:@"plist"];
    NSArray* names = [NSArray arrayWithContentsOfFile:plistPath];

    // Load Audio
    for (int i = 0; i < [names count]; i++) {
        SystemSoundID soundID;
        AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:names[i] ofType:@"aif"]], &soundID);  
        NSNumber* audioId = @(soundID);
        [audio addObject:audioId];
    }

    [[self keyboardView] setDelegate:self];
    [[self octaveSelectionView] setDelegate:self];

     }

- (void) keysPressed:(NSSet *)keys {
    NSLog(@"keysPressed=%d", [keys count]);

    [drawingView addNotes:keys];

    for (NSNumber* keyIndex in keys) {
        if ([audio count] > [keyIndex intValue]) {
            SystemSoundID soundID = [audio[[keyIndex intValue]] unsignedLongValue];
            AudioServicesPlaySystemSound(soundID);
        }
    } }
1

There are 1 best solutions below

1
On

just give an idea how about you save the key hit note and record the timer for delay on local db. after that using AVAsset to combine the hit audio and mute audio to save or replay back. may it help