2019-08-08 19:01:45 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-04-01 12:57:33 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2019-04-01 12:57:33 +08:00
|
|
|
|
*
|
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-04-01 12:57:33 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef HLSRECORDER_H
|
|
|
|
|
#define HLSRECORDER_H
|
|
|
|
|
|
|
|
|
|
#include "HlsMakerImp.h"
|
|
|
|
|
#include "TsMuxer.h"
|
|
|
|
|
namespace mediakit {
|
|
|
|
|
|
2020-09-12 19:46:58 +08:00
|
|
|
|
class HlsRecorder : public MediaSourceEventInterceptor, public TsMuxer, public std::enable_shared_from_this<HlsRecorder> {
|
2019-04-01 12:57:33 +08:00
|
|
|
|
public:
|
2019-12-29 10:49:04 +08:00
|
|
|
|
typedef std::shared_ptr<HlsRecorder> Ptr;
|
2019-12-04 10:45:38 +08:00
|
|
|
|
HlsRecorder(const string &m3u8_file, const string ¶ms){
|
2020-09-12 19:20:18 +08:00
|
|
|
|
GET_CONFIG(uint32_t, hlsNum, Hls::kSegmentNum);
|
|
|
|
|
GET_CONFIG(uint32_t, hlsBufSize, Hls::kFileBufSize);
|
2021-01-17 18:31:50 +08:00
|
|
|
|
GET_CONFIG(float, hlsDuration, Hls::kSegmentDuration);
|
2020-09-12 19:20:18 +08:00
|
|
|
|
_hls = std::make_shared<HlsMakerImp>(m3u8_file, params, hlsBufSize, hlsDuration, hlsNum);
|
|
|
|
|
//清空上次的残余文件
|
|
|
|
|
_hls->clearCache();
|
2019-12-04 10:45:38 +08:00
|
|
|
|
}
|
2020-09-12 19:20:18 +08:00
|
|
|
|
|
|
|
|
|
~HlsRecorder(){}
|
|
|
|
|
|
|
|
|
|
void setMediaSource(const string &vhost, const string &app, const string &stream_id) {
|
2019-12-29 10:49:04 +08:00
|
|
|
|
_hls->setMediaSource(vhost, app, stream_id);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-12 19:20:18 +08:00
|
|
|
|
void setListener(const std::weak_ptr<MediaSourceEvent> &listener) {
|
2020-10-24 23:31:58 +08:00
|
|
|
|
setDelegate(listener);
|
2020-09-12 19:20:18 +08:00
|
|
|
|
_hls->getMediaSource()->setListener(shared_from_this());
|
|
|
|
|
//先注册媒体流,后续可以按需生成
|
2020-09-12 20:42:58 +08:00
|
|
|
|
_hls->getMediaSource()->registHls(false);
|
2020-09-12 19:20:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int readerCount() {
|
|
|
|
|
return _hls->getMediaSource()->readerCount();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void onReaderChanged(MediaSource &sender, int size) override {
|
2020-11-15 00:40:46 +08:00
|
|
|
|
GET_CONFIG(bool, hls_demand, General::kHlsDemand);
|
2020-09-12 19:20:18 +08:00
|
|
|
|
//hls保留切片个数为0时代表为hls录制(不删除切片),那么不管有无观看者都一直生成hls
|
2020-11-15 00:40:46 +08:00
|
|
|
|
_enabled = hls_demand ? (_hls->isLive() ? size : true) : true;
|
|
|
|
|
if (!size && _hls->isLive() && hls_demand) {
|
2020-09-12 19:20:18 +08:00
|
|
|
|
//hls直播时,如果无人观看就删除视频缓存,目的是为了防止视频跳跃
|
|
|
|
|
_clear_cache = true;
|
|
|
|
|
}
|
|
|
|
|
MediaSourceEventInterceptor::onReaderChanged(sender, size);
|
2019-12-28 18:50:56 +08:00
|
|
|
|
}
|
2020-09-12 19:20:18 +08:00
|
|
|
|
|
|
|
|
|
bool isEnabled() {
|
2020-11-15 00:40:46 +08:00
|
|
|
|
GET_CONFIG(bool, hls_demand, General::kHlsDemand);
|
2020-09-12 19:20:18 +08:00
|
|
|
|
//缓存尚未清空时,还允许触发inputFrame函数,以便及时清空缓存
|
2020-11-15 00:40:46 +08:00
|
|
|
|
return hls_demand ? (_clear_cache ? true : _enabled) : true;
|
2020-09-12 19:20:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-15 00:40:46 +08:00
|
|
|
|
void inputFrame(const Frame::Ptr &frame) override {
|
|
|
|
|
GET_CONFIG(bool, hls_demand, General::kHlsDemand);
|
|
|
|
|
if (_clear_cache && hls_demand) {
|
2020-09-12 19:20:18 +08:00
|
|
|
|
_clear_cache = false;
|
|
|
|
|
_hls->clearCache();
|
|
|
|
|
}
|
2020-11-15 00:40:46 +08:00
|
|
|
|
if (_enabled || !hls_demand) {
|
2020-09-12 19:20:18 +08:00
|
|
|
|
TsMuxer::inputFrame(frame);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2021-01-17 18:31:50 +08:00
|
|
|
|
void onTs(const void *packet, size_t bytes, uint32_t timestamp, bool is_idr_fast_packet) override {
|
2020-09-12 19:20:18 +08:00
|
|
|
|
_hls->inputData((char *) packet, bytes, timestamp, is_idr_fast_packet);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 10:45:38 +08:00
|
|
|
|
private:
|
2020-09-12 19:20:18 +08:00
|
|
|
|
//默认不生成hls文件,有播放器时再生成
|
|
|
|
|
bool _enabled = false;
|
|
|
|
|
bool _clear_cache = false;
|
|
|
|
|
std::shared_ptr<HlsMakerImp> _hls;
|
2019-04-01 12:57:33 +08:00
|
|
|
|
};
|
|
|
|
|
}//namespace mediakit
|
|
|
|
|
#endif //HLSRECORDER_H
|