2019-12-04 10:45:38 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
2019-12-04 10:45:38 +08:00
|
|
|
|
|
|
|
|
|
#include "Recorder.h"
|
|
|
|
|
#include "Common/config.h"
|
2019-12-05 10:47:23 +08:00
|
|
|
|
#include "Common/MediaSource.h"
|
2019-12-04 10:45:38 +08:00
|
|
|
|
#include "MP4Recorder.h"
|
|
|
|
|
#include "HlsRecorder.h"
|
|
|
|
|
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
|
|
|
|
namespace mediakit {
|
|
|
|
|
|
2020-02-01 22:58:58 +08:00
|
|
|
|
string Recorder::getRecordPath(Recorder::type type, const string &vhost, const string &app, const string &stream_id, const string &customized_path) {
|
2019-12-04 10:45:38 +08:00
|
|
|
|
GET_CONFIG(bool, enableVhost, General::kEnableVhost);
|
2020-02-01 22:58:58 +08:00
|
|
|
|
switch (type) {
|
|
|
|
|
case Recorder::type_hls: {
|
|
|
|
|
GET_CONFIG(string, hlsPath, Hls::kFilePath);
|
|
|
|
|
string m3u8FilePath;
|
|
|
|
|
if (enableVhost) {
|
|
|
|
|
m3u8FilePath = vhost + "/" + app + "/" + stream_id + "/hls.m3u8";
|
|
|
|
|
} else {
|
|
|
|
|
m3u8FilePath = app + "/" + stream_id + "/hls.m3u8";
|
|
|
|
|
}
|
|
|
|
|
//Here we use the customized file path.
|
|
|
|
|
if (!customized_path.empty()) {
|
|
|
|
|
m3u8FilePath = customized_path + "/hls.m3u8";
|
|
|
|
|
}
|
|
|
|
|
return File::absolutePath(m3u8FilePath, hlsPath);
|
|
|
|
|
}
|
|
|
|
|
case Recorder::type_mp4: {
|
|
|
|
|
GET_CONFIG(string, recordPath, Record::kFilePath);
|
|
|
|
|
GET_CONFIG(string, recordAppName, Record::kAppName);
|
|
|
|
|
string mp4FilePath;
|
|
|
|
|
if (enableVhost) {
|
|
|
|
|
mp4FilePath = vhost + "/" + recordAppName + "/" + app + "/" + stream_id + "/";
|
|
|
|
|
} else {
|
|
|
|
|
mp4FilePath = recordAppName + "/" + app + "/" + stream_id + "/";
|
|
|
|
|
}
|
|
|
|
|
//Here we use the customized file path.
|
|
|
|
|
if (!customized_path.empty()) {
|
|
|
|
|
mp4FilePath = customized_path + "/";
|
|
|
|
|
}
|
|
|
|
|
return File::absolutePath(mp4FilePath, recordPath);
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
return "";
|
2020-01-02 12:47:12 +08:00
|
|
|
|
}
|
2019-12-04 10:45:38 +08:00
|
|
|
|
}
|
2019-12-29 10:49:04 +08:00
|
|
|
|
|
2020-02-01 22:58:58 +08:00
|
|
|
|
std::shared_ptr<MediaSinkInterface> Recorder::createRecorder(type type, const string &vhost, const string &app, const string &stream_id, const string &customized_path){
|
2020-04-28 09:40:47 +08:00
|
|
|
|
auto path = Recorder::getRecordPath(type, vhost, app, stream_id, customized_path);
|
2020-02-01 22:58:58 +08:00
|
|
|
|
switch (type) {
|
|
|
|
|
case Recorder::type_hls: {
|
|
|
|
|
#if defined(ENABLE_HLS)
|
|
|
|
|
auto ret = std::make_shared<HlsRecorder>(path, string(VHOST_KEY) + "=" + vhost);
|
|
|
|
|
ret->setMediaSource(vhost, app, stream_id);
|
|
|
|
|
return ret;
|
|
|
|
|
#endif
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case Recorder::type_mp4: {
|
2020-04-03 20:45:58 +08:00
|
|
|
|
#if defined(ENABLE_MP4)
|
2020-02-01 22:58:58 +08:00
|
|
|
|
return std::make_shared<MP4Recorder>(path, vhost, app, stream_id);
|
|
|
|
|
#endif
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-29 10:49:04 +08:00
|
|
|
|
|
2020-04-05 09:26:29 +08:00
|
|
|
|
static MediaSource::Ptr getMediaSource(const string &vhost, const string &app, const string &stream_id){
|
2020-05-26 10:11:58 +08:00
|
|
|
|
auto src = MediaSource::find(RTMP_SCHEMA, vhost, app, stream_id);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
if(src){
|
|
|
|
|
return src;
|
|
|
|
|
}
|
2020-05-26 10:11:58 +08:00
|
|
|
|
return MediaSource::find(RTSP_SCHEMA, vhost, app, stream_id);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Recorder::isRecording(type type, const string &vhost, const string &app, const string &stream_id){
|
|
|
|
|
auto src = getMediaSource(vhost, app, stream_id);
|
|
|
|
|
if(!src){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return src->isRecording(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Recorder::startRecord(type type, const string &vhost, const string &app, const string &stream_id,const string &customized_path){
|
|
|
|
|
auto src = getMediaSource(vhost, app, stream_id);
|
2020-08-08 12:20:13 +08:00
|
|
|
|
if (!src) {
|
|
|
|
|
WarnL << "未找到相关的MediaSource,startRecord失败:" << vhost << "/" << app << "/" << stream_id;
|
2020-04-05 09:26:29 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-08-08 12:20:13 +08:00
|
|
|
|
return src->setupRecord(type, true, customized_path);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Recorder::stopRecord(type type, const string &vhost, const string &app, const string &stream_id){
|
|
|
|
|
auto src = getMediaSource(vhost, app, stream_id);
|
|
|
|
|
if(!src){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return src->setupRecord(type, false, "");
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 10:45:38 +08:00
|
|
|
|
} /* namespace mediakit */
|