2018-10-25 10:00:17 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2018-10-25 10:00:17 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2018-10-25 10:00:17 +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.
|
2018-10-25 10:00:17 +08:00
|
|
|
|
*/
|
2018-10-24 17:17:55 +08:00
|
|
|
|
|
2018-10-25 16:46:00 +08:00
|
|
|
|
#ifndef ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H
|
|
|
|
|
#define ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H
|
2020-09-12 19:46:58 +08:00
|
|
|
|
|
|
|
|
|
#include "Common/Stamp.h"
|
2020-10-24 23:33:13 +08:00
|
|
|
|
#include "Rtp/RtpSender.h"
|
2019-12-04 10:45:38 +08:00
|
|
|
|
#include "Record/Recorder.h"
|
2019-12-29 10:49:04 +08:00
|
|
|
|
#include "Record/HlsRecorder.h"
|
2020-09-12 19:46:58 +08:00
|
|
|
|
#include "Record/HlsMediaSource.h"
|
|
|
|
|
#include "Rtsp/RtspMediaSourceMuxer.h"
|
|
|
|
|
#include "Rtmp/RtmpMediaSourceMuxer.h"
|
2020-09-20 00:21:46 +08:00
|
|
|
|
#include "TS/TSMediaSourceMuxer.h"
|
2020-09-20 19:45:37 +08:00
|
|
|
|
#include "FMP4/FMP4MediaSourceMuxer.h"
|
2020-09-06 17:56:05 +08:00
|
|
|
|
|
2020-04-05 09:26:29 +08:00
|
|
|
|
namespace mediakit{
|
2018-10-24 17:17:55 +08:00
|
|
|
|
|
2021-07-20 11:51:26 +08:00
|
|
|
|
class MultiMediaSourceMuxer : public MediaSourceEventInterceptor, public MediaSink, public std::enable_shared_from_this<MultiMediaSourceMuxer>{
|
2018-10-24 17:17:55 +08:00
|
|
|
|
public:
|
2021-07-20 11:51:26 +08:00
|
|
|
|
typedef std::shared_ptr<MultiMediaSourceMuxer> Ptr;
|
|
|
|
|
|
2019-12-26 11:53:19 +08:00
|
|
|
|
class Listener{
|
|
|
|
|
public:
|
|
|
|
|
Listener() = default;
|
|
|
|
|
virtual ~Listener() = default;
|
|
|
|
|
virtual void onAllTrackReady() = 0;
|
|
|
|
|
};
|
2020-04-05 09:26:29 +08:00
|
|
|
|
|
2021-07-20 11:51:26 +08:00
|
|
|
|
~MultiMediaSourceMuxer() override = default;
|
2020-08-08 12:20:13 +08:00
|
|
|
|
MultiMediaSourceMuxer(const string &vhost, const string &app, const string &stream, float dur_sec = 0.0,
|
|
|
|
|
bool enable_rtsp = true, bool enable_rtmp = true, bool enable_hls = true, bool enable_mp4 = false);
|
2019-10-11 16:51:10 +08:00
|
|
|
|
|
2018-10-25 16:49:43 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置事件监听器
|
2020-08-08 12:20:13 +08:00
|
|
|
|
* @param listener 监听器
|
2018-10-25 16:49:43 +08:00
|
|
|
|
*/
|
2020-04-05 09:26:29 +08:00
|
|
|
|
void setMediaListener(const std::weak_ptr<MediaSourceEvent> &listener);
|
2018-10-26 14:12:16 +08:00
|
|
|
|
|
2020-08-08 12:20:13 +08:00
|
|
|
|
/**
|
|
|
|
|
* 随着Track就绪事件监听器
|
|
|
|
|
* @param listener 事件监听器
|
|
|
|
|
*/
|
2021-07-20 11:51:26 +08:00
|
|
|
|
void setTrackListener(const std::weak_ptr<Listener> &listener);
|
2020-08-08 12:20:13 +08:00
|
|
|
|
|
2018-10-26 14:12:16 +08:00
|
|
|
|
/**
|
|
|
|
|
* 返回总的消费者个数
|
|
|
|
|
*/
|
2020-04-05 09:26:29 +08:00
|
|
|
|
int totalReaderCount() const;
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
/**
|
|
|
|
|
* 判断是否生效(是否正在转其他协议)
|
|
|
|
|
*/
|
|
|
|
|
bool isEnabled();
|
|
|
|
|
|
2020-04-05 09:26:29 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置MediaSource时间戳
|
|
|
|
|
* @param stamp 时间戳
|
|
|
|
|
*/
|
|
|
|
|
void setTimeStamp(uint32_t stamp);
|
|
|
|
|
|
2021-07-20 13:15:57 +08:00
|
|
|
|
/**
|
|
|
|
|
* 重置track
|
|
|
|
|
*/
|
|
|
|
|
void resetTracks() override;
|
|
|
|
|
|
2020-09-06 17:54:52 +08:00
|
|
|
|
/////////////////////////////////MediaSourceEvent override/////////////////////////////////
|
2020-09-06 17:52:07 +08:00
|
|
|
|
|
2020-04-05 09:26:29 +08:00
|
|
|
|
/**
|
|
|
|
|
* 观看总人数
|
|
|
|
|
* @param sender 事件发送者
|
|
|
|
|
* @return 观看总人数
|
|
|
|
|
*/
|
|
|
|
|
int totalReaderCount(MediaSource &sender) override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设置录制状态
|
|
|
|
|
* @param type 录制类型
|
|
|
|
|
* @param start 开始或停止
|
|
|
|
|
* @param custom_path 开启录制时,指定自定义路径
|
|
|
|
|
* @return 是否设置成功
|
|
|
|
|
*/
|
2021-03-07 10:41:57 +08:00
|
|
|
|
bool setupRecord(MediaSource &sender, Recorder::type type, bool start, const string &custom_path, size_t max_second) override;
|
2020-04-05 09:26:29 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取录制状态
|
|
|
|
|
* @param type 录制类型
|
|
|
|
|
* @return 录制状态
|
|
|
|
|
*/
|
|
|
|
|
bool isRecording(MediaSource &sender, Recorder::type type) override;
|
|
|
|
|
|
2020-09-06 17:56:05 +08:00
|
|
|
|
/**
|
|
|
|
|
* 开始发送ps-rtp流
|
|
|
|
|
* @param dst_url 目标ip或域名
|
|
|
|
|
* @param dst_port 目标端口
|
|
|
|
|
* @param ssrc rtp的ssrc
|
|
|
|
|
* @param is_udp 是否为udp
|
|
|
|
|
* @param cb 启动成功或失败回调
|
|
|
|
|
*/
|
2021-01-02 20:43:02 +08:00
|
|
|
|
void startSendRtp(MediaSource &sender, const string &dst_url, uint16_t dst_port, const string &ssrc, bool is_udp, uint16_t src_port, const function<void(uint16_t local_port, const SockException &ex)> &cb) override;
|
2020-09-06 17:56:05 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 停止ps-rtp发送
|
|
|
|
|
* @return 是否成功
|
|
|
|
|
*/
|
2020-12-27 18:41:53 +08:00
|
|
|
|
bool stopSendRtp(MediaSource &sender, const string &ssrc) override;
|
2020-09-06 17:56:05 +08:00
|
|
|
|
|
2020-04-05 09:26:29 +08:00
|
|
|
|
/**
|
2021-07-20 13:15:57 +08:00
|
|
|
|
* 获取所有Track
|
|
|
|
|
* @param trackReady 是否筛选过滤未就绪的track
|
|
|
|
|
* @return 所有Track
|
2020-04-05 09:26:29 +08:00
|
|
|
|
*/
|
2021-07-20 13:15:57 +08:00
|
|
|
|
vector<Track::Ptr> getMediaTracks(MediaSource &sender, bool trackReady = true) const override;
|
2020-04-05 09:26:29 +08:00
|
|
|
|
|
2021-07-20 11:51:26 +08:00
|
|
|
|
protected:
|
|
|
|
|
/////////////////////////////////MediaSink override/////////////////////////////////
|
2020-04-29 11:59:45 +08:00
|
|
|
|
|
2021-07-20 11:51:26 +08:00
|
|
|
|
/**
|
|
|
|
|
* 某track已经准备好,其ready()状态返回true,
|
|
|
|
|
* 此时代表可以获取其例如sps pps等相关信息了
|
|
|
|
|
* @param track
|
|
|
|
|
*/
|
|
|
|
|
void onTrackReady(const Track::Ptr & track) override;
|
2020-09-06 17:52:07 +08:00
|
|
|
|
|
2020-04-29 11:59:45 +08:00
|
|
|
|
/**
|
2021-07-20 11:51:26 +08:00
|
|
|
|
* 所有Track已经准备好,
|
2020-04-29 11:59:45 +08:00
|
|
|
|
*/
|
2020-09-06 17:52:07 +08:00
|
|
|
|
void onAllTrackReady() override;
|
2020-08-08 12:20:13 +08:00
|
|
|
|
|
2021-07-20 11:51:26 +08:00
|
|
|
|
/**
|
|
|
|
|
* 某Track输出frame,在onAllTrackReady触发后才会调用此方法
|
|
|
|
|
* @param frame
|
|
|
|
|
*/
|
|
|
|
|
void onTrackFrame(const Frame::Ptr &frame) override;
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
private:
|
2020-11-15 00:59:31 +08:00
|
|
|
|
bool _is_enable = false;
|
|
|
|
|
Ticker _last_check;
|
2020-09-06 17:52:07 +08:00
|
|
|
|
Stamp _stamp[2];
|
2021-07-20 11:51:26 +08:00
|
|
|
|
std::weak_ptr<Listener> _track_listener;
|
2021-08-16 17:31:13 +08:00
|
|
|
|
function<string()> _get_origin_url;
|
2020-09-06 17:56:05 +08:00
|
|
|
|
#if defined(ENABLE_RTPPROXY)
|
2020-12-27 18:41:53 +08:00
|
|
|
|
mutex _rtp_sender_mtx;
|
|
|
|
|
unordered_map<string, RtpSender::Ptr> _rtp_sender;
|
2020-09-06 17:56:05 +08:00
|
|
|
|
#endif //ENABLE_RTPPROXY
|
2021-07-20 11:51:26 +08:00
|
|
|
|
|
|
|
|
|
#if defined(ENABLE_MP4)
|
|
|
|
|
FMP4MediaSourceMuxer::Ptr _fmp4;
|
|
|
|
|
#endif
|
|
|
|
|
RtmpMediaSourceMuxer::Ptr _rtmp;
|
|
|
|
|
RtspMediaSourceMuxer::Ptr _rtsp;
|
|
|
|
|
TSMediaSourceMuxer::Ptr _ts;
|
|
|
|
|
MediaSinkInterface::Ptr _mp4;
|
|
|
|
|
HlsRecorder::Ptr _hls;
|
|
|
|
|
|
2021-01-23 09:44:37 +08:00
|
|
|
|
//对象个数统计
|
|
|
|
|
ObjectStatistic<MultiMediaSourceMuxer> _statistic;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
};
|
|
|
|
|
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}//namespace mediakit
|
2018-10-25 16:46:00 +08:00
|
|
|
|
#endif //ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H
|