位置:首頁 > 手機開發 > iOS教學 > iOS - 音頻和視頻

iOS - 音頻和視頻

簡介

最新的設備 音頻和視頻是很常見的。在 IOS 中分彆在 AVFoundation.framework 和 MediaPlayer.framewor 支持幫助下可實現操作。

 

涉及的步驟

1. 創建一個簡單的應用程序。

2. 選擇項目文件,選擇目標,然後我們添加 AVFoundation.framework 和 MediaPlayer.framework.

3. 添加兩個按鈕ViewController.xib的和播放音頻和視頻分彆創建一個動作。

4. 更新 ViewController.h 文件內容如下:

#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

5. 更新 ViewController.m 文件代碼內容如下:

#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

注意

我們需要添加音頻和視頻文件,以確保我們得到預期的輸出。

輸出

現在,當我們運行程序時,我們會得到下麵的輸出。

iOS Tutorial

當我們點擊播放視頻時,我們會得到一個輸出,如下圖所示。

iOS Tutorial

我們點擊播放音頻的時候,會聽到聲音。