Time tracking while recording

I have an AVAudioRecorder that records sound. I also have a shortcut. I would like to update the text on the label every second to show the recording time. How can i do this?

+4
source share
2 answers

You can use the currentTime property of AVAudioRecorder (audioRecorder.currentTime) to get the time, like NSTimeInterval , from the beginning of the recording, which you can use to display on your label.

+7
source

follow these steps:

  - (IBAction)startStopRecording:(id)sender { //If the app is note recording, we want to start recording, and make the record button say "STOP" if(!self.isRecording) { self.isRecording = YES; //this is the bool value to store that recorder recording [self.recordButton setTitle:@"STOP" forState:UIControlStateNormal]; recorder = [[AVAudioRecorder alloc] initWithURL:recordedFile settings:nil error:nil]; [recorder prepareToRecord]; [recorder record]; myTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(updateSlider) userInfo:nil repeats:YES]; //this is nstimer to initiate update method } else { self.isRecording = NO; [self.recordButton setTitle:@"REC" forState:UIControlStateNormal]; [recorder stop]; recorder = nil; [myTimer invalidate]; } } - (void)updateSlider { // Update the slider about the music time if([recorder isRecording]) { float minutes = floor(recorder.currentTime/60); float seconds = recorder.currentTime - (minutes * 60); NSString *time = [[NSString alloc] initWithFormat:@"%0.0f.%0.0f", minutes, seconds]; recordTimeLabel.text = time; } } 
+6
source

Source: https://habr.com/ru/post/1341103/


All Articles