iOS 開發(fā)直播app(nginx+LFLiveKit+IJKMediaPlayer)

一审孽、nginx + rtmp +ffmpeg服務器安裝教程
地址:http://www.reibang.com/p/b1207e41edaf

二薇溃、LFLiveKit庫(推流)
使用Cocoapod導入LFLiveKit庫

三肴掷、IJKMediaPlayer庫集成教程(拉流)
地址:http://www.reibang.com/p/82f435ae21cf

四:配置手機網絡
1夹抗、配置好nginx服務器的Mac和ipone連接同一個wifi
2俊马、查看Mac當前網絡IP


image.png

3、進入手機當前網絡的配置代理敷存,將服務器ip設置為Mac的ip墓造,端口為8080


image.png

五:代碼實現
推流


#import <LFLiveKit.h>
#import <AVFoundation/AVFoundation.h>
 
@interface RecordingViewController ()<LFLiveSessionDelegate>
@property (nonatomic,strong) LFLiveSession *session;
@end
 
@implementation RecordingViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    [self beatutyfaceBtn];
    //錄制端
    [self requestAccessForVidoe];
    [self requestAudio];
    [self startLive];
}
 
- (void)beatutyfaceBtn{
    UIButton *actionBtn = [UIButton buttonWithType:UIButtonTypeSystem];
    actionBtn.backgroundColor = [UIColor redColor];
    [actionBtn setTitle:@"開始直播" forState:UIControlStateNormal];
    [actionBtn addTarget:self action:@selector(openBeatyface:) forControlEvents:UIControlEventTouchUpInside];
    actionBtn.frame = CGRectMake(self.view.center.x - 50, 400, 100, 50);
    [self.view addSubview:actionBtn];
}
 
- (LFLiveSession*)session {
    if (!_session) {
        _session = [[LFLiveSession alloc] initWithAudioConfiguration:[LFLiveAudioConfiguration defaultConfiguration] videoConfiguration:[LFLiveVideoConfiguration defaultConfiguration]];
        _session.preView = self.view;
        _session.showDebugInfo = YES;
        _session.delegate = self;
    }
    return _session;
}
 
//獲取系統(tǒng)的攝像頭權限,獲取視屏資源:
- (void)requestAccessForVidoe{
    __weak typeof (self) weakSelf = self;
    //判斷授權狀態(tài)
    AVAuthorizationStatus statues = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];
    switch (statues) {
        case AVAuthorizationStatusNotDetermined:{
            //發(fā)起授權請求
            [AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) {
                if (granted) {
                    dispatch_async(dispatch_get_main_queue(), ^{
                        //進行會話
                        [weakSelf.session setRunning:YES];
                    });
                }
            }];
            break;
        }
        case AVAuthorizationStatusAuthorized:{
            //已授權繼續(xù)
            dispatch_async(dispatch_get_main_queue(), ^{
                [weakSelf.session setRunning:YES];
            });
            break;
        }
        default:
            break;
    }
}
 
//獲取音頻權限與資源:
- (void)requestAudio
{
    __weak typeof (self) weakSelf = self;
    AVAuthorizationStatus status = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeAudio];
    switch (status) {
        case AVAuthorizationStatusNotDetermined:{
            //發(fā)起授權請求
            [AVCaptureDevice requestAccessForMediaType:AVMediaTypeAudio completionHandler:^(BOOL granted) {
                if (granted) {
                    dispatch_async(dispatch_get_main_queue(), ^{
                        //進行會話
                        [weakSelf.session setRunning:YES];
                    });
                }
            }];
            break;
        }
        case AVAuthorizationStatusAuthorized:{
            //授權繼續(xù)
            dispatch_async(dispatch_get_main_queue(), ^{
                [weakSelf.session setRunning:YES];
            });
        }
        default:
            break;
    }
    
}
 
//LFLivekit監(jiān)聽delegate方法:
- (void)liveSession:(LFLiveSession *)session errorCode:(LFLiveSocketErrorCode)errorCode
{
    //彈出警告
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Warning" message:@"鏈接錯誤,請檢查IP地址" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *sure = [UIAlertAction actionWithTitle:@"sure" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        [self.navigationController popViewControllerAnimated:YES];
    }];
    [alert addAction:sure];
    [self presentViewController:alert animated:YES completion:nil];
}
 
- (void)startLive {
    LFLiveStreamInfo *streamInfo = [LFLiveStreamInfo new];
    streamInfo.url = @"rtmp://192.168.1.121:1935/rtmplive/room";
    [self.session startLive:streamInfo];
}
 
- (void)openBeatyface:(UIButton *)btn{
    _session.beautyFace = YES;
}
 
- (void)stopLive {
    [self.session stopLive];
}
 
//MARK: - CallBack:
- (void)liveSession:(nullable LFLiveSession *)session liveStateDidChange: (LFLiveState)state{
    
}
 
- (void)liveSession:(nullable LFLiveSession *)session debugInfo:(nullable LFLiveDebug*)debugInfo{
    
}
 
- (void)viewDidDisappear:(BOOL)animated{
    [self stopLive];
}

@end

拉流


#import <IJKMediaFramework/IJKFFMoviePlayerController.h>
@interface PlayLiveViewController ()
@property(nonatomic,strong)IJKFFMoviePlayerController * player;
@end

@implementation PlayLiveViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    IJKFFOptions *options = [IJKFFOptions optionsByDefault]; //使用默認配置
    NSURL * url = [NSURL URLWithString:@"rtmp://192.168.1.121:1935/rtmplive/room"];
    self.player = [[IJKFFMoviePlayerController alloc] initWithContentURL:url withOptions:options]; 
    self.player.view.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
    self.player.view.frame = self.view.bounds;
    self.player.scalingMode = IJKMPMovieScalingModeAspectFit;
    self.player.shouldAutoplay = YES;
    
    self.view.autoresizesSubviews = YES;
    [self.view addSubview:self.player.view];
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    [self.player prepareToPlay];
}

-(void)viewDidDisappear:(BOOL)animated {
    [super viewDidDisappear:animated];
    [self.player shutdown];
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

rtmp://192.168.1.121:1935/rtmplive/room

192.168.1.121:nginx 所在Mac的當前網絡ip

注意事項:
plist添加
Privacy - Camera Usage Description 相機
Privacy - Microphone Usage Description 錄音
Privacy - Photo Library Usage Description 相冊

簡單寫了一個實現簡易直播效果的demo
地址:https://gitee.com/xu_sheng_jie/live-demo.git

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市锚烦,隨后出現的幾起案子觅闽,更是在濱河造成了極大的恐慌,老刑警劉巖涮俄,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蛉拙,死亡現場離奇詭異,居然都是意外死亡彻亲,警方通過查閱死者的電腦和手機孕锄,發(fā)現死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進店門吮廉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人畸肆,你說我怎么就攤上這事宦芦。” “怎么了轴脐?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵调卑,是天一觀的道長。 經常有香客問我大咱,道長恬涧,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任碴巾,我火速辦了婚禮溯捆,結果婚禮上,老公的妹妹穿的比我還像新娘餐抢。我一直安慰自己现使,他們只是感情好低匙,可當我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布旷痕。 她就那樣靜靜地躺著,像睡著了一般顽冶。 火紅的嫁衣襯著肌膚如雪欺抗。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天强重,我揣著相機與錄音绞呈,去河邊找鬼。 笑死间景,一個胖子當著我的面吹牛佃声,可吹牛的內容都是我干的。 我是一名探鬼主播倘要,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼圾亏,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了封拧?” 一聲冷哼從身側響起志鹃,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎泽西,沒想到半個月后曹铃,有當地人在樹林里發(fā)現了一具尸體,經...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡捧杉,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年陕见,在試婚紗的時候發(fā)現自己被綠了秘血。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡评甜,死狀恐怖直撤,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情蜕着,我是刑警寧澤谋竖,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站承匣,受9級特大地震影響蓖乘,放射性物質發(fā)生泄漏。R本人自食惡果不足惜韧骗,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一嘉抒、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧袍暴,春花似錦些侍、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至淋样,卻和暖如春耗式,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背趁猴。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工刊咳, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人儡司。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓娱挨,卻偏偏與公主長得像,于是被迫代替她去往敵國和親捕犬。 傳聞我的和親對象是個殘疾皇子跷坝,可洞房花燭夜當晚...
    茶點故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內容