ZLMediaKit/src/MediaFile/MediaRecorder.cpp

117 lines
3.9 KiB
C++
Raw Normal View History

2017-10-09 22:11:01 +08:00
/*
2017-09-27 16:20:30 +08:00
* MIT License
2017-04-01 16:35:56 +08:00
*
2019-05-08 15:40:07 +08:00
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
2017-09-27 16:20:30 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
2017-04-01 16:35:56 +08:00
*/
#include "MediaRecorder.h"
2017-05-02 17:15:12 +08:00
#include "Common/config.h"
2017-04-01 16:35:56 +08:00
#include "Http/HttpSession.h"
2017-04-25 11:35:41 +08:00
#include "Util/util.h"
#include "Util/mini.h"
#include "Network/sockutil.h"
#include "HlsMakerImp.h"
2018-10-24 17:17:55 +08:00
using namespace toolkit;
2017-04-01 16:35:56 +08:00
2018-10-24 17:17:55 +08:00
namespace mediakit {
2017-04-01 16:35:56 +08:00
MediaRecorder::MediaRecorder(const string &strVhost_tmp,
const string &strApp,
const string &strId,
bool enableHls,
bool enableMp4) {
2019-05-28 17:14:36 +08:00
GET_CONFIG(string,hlsPath,Hls::kFilePath);
GET_CONFIG(uint32_t,hlsBufSize,Hls::kFileBufSize);
GET_CONFIG(uint32_t,hlsDuration,Hls::kSegmentDuration);
GET_CONFIG(uint32_t,hlsNum,Hls::kSegmentNum);
GET_CONFIG(bool,enableVhost,General::kEnableVhost);
2017-04-01 16:35:56 +08:00
string strVhost = strVhost_tmp;
if(trim(strVhost).empty()){
//如果strVhost为空则强制为默认虚拟主机
strVhost = DEFAULT_VHOST;
}
2019-04-04 11:30:57 +08:00
#if defined(ENABLE_HLS)
if(enableHls) {
2019-05-28 17:14:36 +08:00
string m3u8FilePath;
if(enableVhost){
m3u8FilePath = hlsPath + "/" + strVhost + "/" + strApp + "/" + strId + "/hls.m3u8";
_hlsMaker.reset(new HlsRecorder(m3u8FilePath,string(VHOST_KEY) + "=" + strVhost ,hlsBufSize, hlsDuration, hlsNum));
}else{
m3u8FilePath = hlsPath + "/" + strApp + "/" + strId + "/hls.m3u8";
_hlsMaker.reset(new HlsRecorder(m3u8FilePath,"",hlsBufSize, hlsDuration, hlsNum));
}
}
2019-04-04 11:30:57 +08:00
#endif //defined(ENABLE_HLS)
2018-03-27 12:42:06 +08:00
2019-04-04 11:30:57 +08:00
#if defined(ENABLE_MP4V2)
2019-05-28 17:14:36 +08:00
GET_CONFIG(string,recordPath,Record::kFilePath);
GET_CONFIG(string,recordAppName,Record::kAppName);
2018-02-09 11:42:55 +08:00
if(enableMp4){
2019-05-28 17:14:36 +08:00
string mp4FilePath;
if(enableVhost){
mp4FilePath = recordPath + "/" + strVhost + "/" + recordAppName + "/" + strApp + "/" + strId + "/";
} else {
mp4FilePath = recordPath + "/" + recordAppName + "/" + strApp + "/" + strId + "/";
}
2018-10-28 00:15:27 +08:00
_mp4Maker.reset(new Mp4Maker(mp4FilePath,strVhost,strApp,strId));
}
2019-04-04 11:30:57 +08:00
#endif //defined(ENABLE_MP4V2)
2017-04-01 16:35:56 +08:00
}
MediaRecorder::~MediaRecorder() {
}
2018-10-28 00:21:55 +08:00
void MediaRecorder::inputFrame(const Frame::Ptr &frame) {
2019-04-04 11:30:57 +08:00
#if defined(ENABLE_HLS)
2018-10-28 00:21:55 +08:00
if (_hlsMaker) {
_hlsMaker->inputFrame(frame);
}
2019-04-04 11:30:57 +08:00
#endif //defined(ENABLE_HLS)
#if defined(ENABLE_MP4V2)
2018-10-28 00:21:55 +08:00
if (_mp4Maker) {
_mp4Maker->inputFrame(frame);
}
2019-04-04 11:30:57 +08:00
#endif //defined(ENABLE_MP4V2)
2017-04-01 16:35:56 +08:00
}
2018-10-28 00:21:55 +08:00
void MediaRecorder::addTrack(const Track::Ptr &track) {
2019-04-04 11:30:57 +08:00
#if defined(ENABLE_HLS)
2018-10-28 00:21:55 +08:00
if (_hlsMaker) {
_hlsMaker->addTrack(track);
}
2019-04-04 11:30:57 +08:00
#endif //defined(ENABLE_HLS)
2019-08-01 18:49:04 +08:00
#if defined(ENABLE_MP4RECORD)
2018-10-28 00:21:55 +08:00
if (_mp4Maker) {
_mp4Maker->addTrack(track);
}
2019-08-01 18:49:04 +08:00
#endif //defined(ENABLE_MP4RECORD)
2017-04-01 16:35:56 +08:00
}
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */