ZLMediaKit/src/Record/Recorder.cpp

133 lines
5.1 KiB
C++
Raw Normal View History

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/xia-chu/ZLMediaKit).
2020-04-04 20:30:09 +08:00
*
* 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"
#include "Util/File.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"
#include "FMP4/FMP4MediaSourceMuxer.h"
#include "TS/TSMediaSourceMuxer.h"
2019-12-04 10:45:38 +08:00
using namespace std;
2019-12-04 10:45:38 +08:00
using namespace toolkit;
namespace mediakit {
2023-05-25 16:23:24 +08:00
string Recorder::getRecordPath(Recorder::type type, const MediaTuple& tuple, 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, Protocol::kHlsSavePath);
2020-02-01 22:58:58 +08:00
string m3u8FilePath;
if (enableVhost) {
2023-05-25 16:23:24 +08:00
m3u8FilePath = tuple.shortUrl() + "/hls.m3u8";
2020-02-01 22:58:58 +08:00
} else {
2023-05-25 16:23:24 +08:00
m3u8FilePath = tuple.app + "/" + tuple.stream + "/hls.m3u8";
2020-02-01 22:58:58 +08:00
}
//Here we use the customized file path.
if (!customized_path.empty()) {
return File::absolutePath(m3u8FilePath, customized_path);
2020-02-01 22:58:58 +08:00
}
return File::absolutePath(m3u8FilePath, hlsPath);
}
case Recorder::type_mp4: {
GET_CONFIG(string, recordPath, Protocol::kMP4SavePath);
2020-02-01 22:58:58 +08:00
GET_CONFIG(string, recordAppName, Record::kAppName);
string mp4FilePath;
if (enableVhost) {
2023-05-25 16:23:24 +08:00
mp4FilePath = tuple.vhost + "/" + recordAppName + "/" + tuple.app + "/" + tuple.stream + "/";
2020-02-01 22:58:58 +08:00
} else {
2023-05-25 16:23:24 +08:00
mp4FilePath = recordAppName + "/" + tuple.app + "/" + tuple.stream + "/";
2020-02-01 22:58:58 +08:00
}
//Here we use the customized file path.
if (!customized_path.empty()) {
return File::absolutePath(mp4FilePath, customized_path);
2020-02-01 22:58:58 +08:00
}
return File::absolutePath(mp4FilePath, recordPath);
}
case Recorder::type_hls_fmp4: {
GET_CONFIG(string, hlsPath, Protocol::kHlsSavePath);
string m3u8FilePath;
if (enableVhost) {
m3u8FilePath = tuple.shortUrl() + "/hls.fmp4.m3u8";
} else {
m3u8FilePath = tuple.app + "/" + tuple.stream + "/hls.fmp4.m3u8";
}
// Here we use the customized file path.
if (!customized_path.empty()) {
return File::absolutePath(m3u8FilePath, customized_path);
}
return File::absolutePath(m3u8FilePath, hlsPath);
}
2020-02-01 22:58:58 +08:00
default:
return "";
}
2019-12-04 10:45:38 +08:00
}
2019-12-29 10:49:04 +08:00
2023-05-25 16:23:24 +08:00
std::shared_ptr<MediaSinkInterface> Recorder::createRecorder(type type, const MediaTuple& tuple, const ProtocolOption &option){
2020-02-01 22:58:58 +08:00
switch (type) {
case Recorder::type_hls: {
#if defined(ENABLE_HLS)
2023-05-25 16:23:24 +08:00
auto path = Recorder::getRecordPath(type, tuple, option.hls_save_path);
GET_CONFIG(bool, enable_vhost, General::kEnableVhost);
2023-05-25 16:23:24 +08:00
auto ret = std::make_shared<HlsRecorder>(path, enable_vhost ? string(VHOST_KEY) + "=" + tuple.vhost : "", option);
ret->setMediaSource(tuple);
2020-02-01 22:58:58 +08:00
return ret;
#else
throw std::invalid_argument("hls相关功能未打开请开启ENABLE_HLS宏后编译再测试");
2020-02-01 22:58:58 +08:00
#endif
2020-02-01 22:58:58 +08:00
}
case Recorder::type_mp4: {
2020-04-03 20:45:58 +08:00
#if defined(ENABLE_MP4)
2023-05-25 16:23:24 +08:00
auto path = Recorder::getRecordPath(type, tuple, option.mp4_save_path);
return std::make_shared<MP4Recorder>(path, tuple.vhost, tuple.app, tuple.stream, option.mp4_max_second);
#else
throw std::invalid_argument("mp4相关功能未打开请开启ENABLE_MP4宏后编译再测试");
2020-02-01 22:58:58 +08:00
#endif
}
case Recorder::type_hls_fmp4: {
#if defined(ENABLE_HLS_FMP4)
auto path = Recorder::getRecordPath(type, tuple, option.hls_save_path);
GET_CONFIG(bool, enable_vhost, General::kEnableVhost);
auto ret = std::make_shared<HlsFMP4Recorder>(path, enable_vhost ? string(VHOST_KEY) + "=" + tuple.vhost : "", option);
ret->setMediaSource(tuple);
return ret;
#else
throw std::invalid_argument("hls.fmp4相关功能未打开请开启ENABLE_HLS_FMP4宏后编译再测试");
#endif
}
case Recorder::type_fmp4: {
#if defined(ENABLE_HLS_FMP4) || defined(ENABLE_MP4)
return std::make_shared<FMP4MediaSourceMuxer>(tuple, option);
#else
throw std::invalid_argument("fmp4相关功能未打开请开启ENABLE_HLS_FMP4或ENABLE_MP4宏后编译再测试");
#endif
}
case Recorder::type_ts: {
#if defined(ENABLE_HLS) || defined(ENABLE_RTPPROXY)
return std::make_shared<TSMediaSourceMuxer>(tuple, option);
#else
throw std::invalid_argument("mpegts相关功能未打开请开启ENABLE_HLS或ENABLE_RTPPROXY宏后编译再测试");
#endif
}
default: throw std::invalid_argument("未知的录制类型");
2020-02-01 22:58:58 +08:00
}
}
2019-12-29 10:49:04 +08:00
2019-12-04 10:45:38 +08:00
} /* namespace mediakit */