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
|
|
|
|
*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
|
|
|
|
|
*
|
|
|
|
|
* 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"
|
2019-04-01 12:57:33 +08:00
|
|
|
|
#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
|
|
|
|
|
2018-02-07 11:16:43 +08:00
|
|
|
|
MediaRecorder::MediaRecorder(const string &strVhost_tmp,
|
|
|
|
|
const string &strApp,
|
|
|
|
|
const string &strId,
|
|
|
|
|
bool enableHls,
|
|
|
|
|
bool enableMp4) {
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
GET_CONFIG_AND_REGISTER(string,hlsPath,Hls::kFilePath);
|
|
|
|
|
GET_CONFIG_AND_REGISTER(uint32_t,hlsBufSize,Hls::kFileBufSize);
|
|
|
|
|
GET_CONFIG_AND_REGISTER(uint32_t,hlsDuration,Hls::kSegmentDuration);
|
|
|
|
|
GET_CONFIG_AND_REGISTER(uint32_t,hlsNum,Hls::kSegmentNum);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-02-07 11:16:43 +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)
|
2018-02-07 11:16:43 +08:00
|
|
|
|
if(enableHls) {
|
2018-03-27 12:42:06 +08:00
|
|
|
|
auto m3u8FilePath = hlsPath + "/" + strVhost + "/" + strApp + "/" + strId + "/hls.m3u8";
|
2019-04-01 12:57:33 +08:00
|
|
|
|
_hlsMaker.reset(new HlsRecorder(m3u8FilePath,string(VHOST_KEY) + "=" + strVhost ,hlsBufSize, hlsDuration, hlsNum));
|
2018-02-07 11:16:43 +08:00
|
|
|
|
}
|
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)
|
2018-10-24 17:17:55 +08:00
|
|
|
|
GET_CONFIG_AND_REGISTER(string,recordPath,Record::kFilePath);
|
|
|
|
|
GET_CONFIG_AND_REGISTER(string,recordAppName,Record::kAppName);
|
2018-02-09 11:42:55 +08:00
|
|
|
|
|
2018-02-07 11:16:43 +08:00
|
|
|
|
if(enableMp4){
|
2018-03-27 12:42:06 +08:00
|
|
|
|
auto mp4FilePath = recordPath + "/" + strVhost + "/" + recordAppName + "/" + strApp + "/" + strId + "/";
|
2018-10-28 00:15:27 +08:00
|
|
|
|
_mp4Maker.reset(new Mp4Maker(mp4FilePath,strVhost,strApp,strId));
|
2018-02-07 11:16:43 +08:00
|
|
|
|
}
|
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);
|
2018-02-07 11:16:43 +08:00
|
|
|
|
}
|
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);
|
2018-02-07 11:16:43 +08:00
|
|
|
|
}
|
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);
|
2018-02-07 11:16:43 +08:00
|
|
|
|
}
|
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->addTrack(track);
|
2018-02-07 11:16:43 +08:00
|
|
|
|
}
|
2019-04-04 11:30:57 +08:00
|
|
|
|
#endif //defined(ENABLE_MP4V2)
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|