iOS - Áudio e Vídeo
Áudio e vídeo são bastante comuns nos dispositivos mais recentes. É compatível com iOS com a ajuda deAVFoundation.framework e MediaPlayer.framework respectivamente.
Etapas Envolvidas
Step 1 - Crie um simples View based application.
Step 2 - Selecione o arquivo do seu projeto, selecione os alvos e, em seguida, devemos adicionar AVFoundation.framework e MediaPlayer.framework.
Step 3 - Adicione dois botões em ViewController.xib e crie uma ação para reproduzir áudio e vídeo respectivamente.
Step 4 - Atualização ViewController.h como segue -
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController : UIViewController {
AVAudioPlayer *audioPlayer;
MPMoviePlayerViewController *moviePlayer;
}
-(IBAction)playAudio:(id)sender;
-(IBAction)playVideo:(id)sender;
@end
Step 5 - Atualização ViewController.m como segue -
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(IBAction)playAudio:(id)sender {
NSString *path = [[NSBundle mainBundle]
pathForResource:@"audioTest" ofType:@"mp3"];
audioPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:
[NSURL fileURLWithPath:path] error:NULL];
[audioPlayer play];
}
-(IBAction)playVideo:(id)sender {
NSString *path = [[NSBundle mainBundle]pathForResource:
@"videoTest" ofType:@"mov"];
moviePlayer = [[MPMoviePlayerViewController
alloc]initWithContentURL:[NSURL fileURLWithPath:path]];
[self presentModalViewController:moviePlayer animated:NO];
}
@end
Nota
Precisamos adicionar arquivos de áudio e vídeo para garantir que obtenhamos a saída esperada.
Resultado
Quando executarmos o aplicativo, obteremos a seguinte saída -
Quando clicamos em reproduzir vídeo, obteremos uma saída conforme mostrado abaixo -
Quando clicarmos em reproduzir áudio, você ouvirá o áudio.