2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Use of this source code is governed by MIT-like license that can be found in the
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <algorithm>
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "PlayerBase.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Rtsp/RtspPlayerImp.h"
|
|
|
|
|
|
#include "Rtmp/RtmpPlayerImp.h"
|
2023-06-17 10:29:27 +08:00
|
|
|
|
#include "Rtmp/FlvPlayer.h"
|
2020-05-17 18:00:37 +08:00
|
|
|
|
#include "Http/HlsPlayer.h"
|
2022-01-04 15:32:59 +08:00
|
|
|
|
#include "Http/TsPlayerImp.h"
|
2024-12-28 20:21:29 +08:00
|
|
|
|
#ifdef ENABLE_SRT
|
2025-09-24 16:45:35 +08:00
|
|
|
|
#include "../srt/SrtPlayerImp.h"
|
2024-12-28 20:21:29 +08:00
|
|
|
|
#endif // ENABLE_SRT
|
2025-09-20 16:23:30 +08:00
|
|
|
|
#ifdef ENABLE_WEBRTC
|
|
|
|
|
|
#include "../webrtc/WebRtcProxyPlayerImp.h"
|
|
|
|
|
|
#endif // ENABLE_WEBRTC
|
2022-02-02 20:34:50 +08:00
|
|
|
|
using namespace std;
|
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
|
|
|
|
|
2026-03-11 22:24:21 +08:00
|
|
|
|
PlayerBase::Ptr PlayerBase::createPlayer(const EventPoller::Ptr &in_poller, const string &url_in, const std::string &schema) {
|
2023-06-17 10:29:27 +08:00
|
|
|
|
auto poller = in_poller ? in_poller : EventPollerPool::Instance().getPoller();
|
2024-02-07 23:06:42 +08:00
|
|
|
|
std::weak_ptr<EventPoller> weak_poller = poller;
|
2024-06-28 12:43:56 +08:00
|
|
|
|
auto release_func = [weak_poller](PlayerBase *ptr) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
if (auto poller = weak_poller.lock()) {
|
|
|
|
|
|
poller->async([ptr]() {
|
|
|
|
|
|
onceToken token(nullptr, [&]() { delete ptr; });
|
|
|
|
|
|
ptr->teardown();
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
delete ptr;
|
|
|
|
|
|
}
|
2020-03-20 11:51:24 +08:00
|
|
|
|
};
|
2025-01-19 18:35:22 +08:00
|
|
|
|
|
2020-05-21 14:10:27 +08:00
|
|
|
|
string url = url_in;
|
2025-01-19 18:35:22 +08:00
|
|
|
|
trim(url);
|
|
|
|
|
|
if (url.empty()) {
|
|
|
|
|
|
throw std::invalid_argument("invalid play url: " + url_in);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-06-10 12:28:49 +08:00
|
|
|
|
string prefix = findSubString(url.data(), NULL, "://");
|
2020-05-21 14:10:27 +08:00
|
|
|
|
auto pos = url.find('?');
|
|
|
|
|
|
if (pos != string::npos) {
|
2024-09-19 14:53:50 +08:00
|
|
|
|
// 去除?后面的字符串 [AUTO-TRANSLATED:0ccb41c2]
|
|
|
|
|
|
// Remove the string after the question mark
|
2020-05-21 14:10:27 +08:00
|
|
|
|
url = url.substr(0, pos);
|
|
|
|
|
|
}
|
2019-07-20 20:53:50 +08:00
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
if (strcasecmp("rtsps", prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PlayerBase::Ptr(new TcpClientWithSSL<RtspPlayerImp>(poller), release_func);
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2019-07-20 20:53:50 +08:00
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
if (strcasecmp("rtsp", prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PlayerBase::Ptr(new RtspPlayerImp(poller), release_func);
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2019-07-20 20:53:50 +08:00
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
if (strcasecmp("rtmps", prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PlayerBase::Ptr(new TcpClientWithSSL<RtmpPlayerImp>(poller), release_func);
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2019-07-20 20:53:50 +08:00
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
if (strcasecmp("rtmp", prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PlayerBase::Ptr(new RtmpPlayerImp(poller), release_func);
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2022-01-09 15:01:23 +08:00
|
|
|
|
if ((strcasecmp("http", prefix.data()) == 0 || strcasecmp("https", prefix.data()) == 0)) {
|
2026-03-11 22:24:21 +08:00
|
|
|
|
if (end_with(url, ".m3u8") || end_with(url_in, ".m3u8") || schema == "hls") {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PlayerBase::Ptr(new HlsPlayerImp(poller), release_func);
|
2023-06-17 10:29:27 +08:00
|
|
|
|
}
|
2026-03-11 22:24:21 +08:00
|
|
|
|
if (end_with(url, ".ts") || end_with(url_in, ".ts") || schema == "ts") {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PlayerBase::Ptr(new TsPlayerImp(poller), release_func);
|
2022-01-04 15:32:59 +08:00
|
|
|
|
}
|
2026-03-11 22:24:21 +08:00
|
|
|
|
if (end_with(url, ".flv") || end_with(url_in, ".flv") || schema == "flv") {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PlayerBase::Ptr(new FlvPlayerImp(poller), release_func);
|
2023-06-17 10:29:27 +08:00
|
|
|
|
}
|
2020-05-17 18:00:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-12-28 20:21:29 +08:00
|
|
|
|
#ifdef ENABLE_SRT
|
|
|
|
|
|
if (strcasecmp("srt", prefix.data()) == 0) {
|
|
|
|
|
|
return PlayerBase::Ptr(new SrtPlayerImp(poller), release_func);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif//ENABLE_SRT
|
2025-09-20 16:23:30 +08:00
|
|
|
|
#ifdef ENABLE_WEBRTC
|
|
|
|
|
|
if ((strcasecmp("webrtc", prefix.data()) == 0 || strcasecmp("webrtcs", prefix.data()) == 0)) {
|
|
|
|
|
|
return PlayerBase::Ptr(new WebRtcProxyPlayerImp(poller), release_func);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif//ENABLE_WEBRTC
|
2024-12-28 20:21:29 +08:00
|
|
|
|
|
2022-07-29 17:31:55 +08:00
|
|
|
|
throw std::invalid_argument("not supported play schema:" + url_in);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-01 14:23:28 +08:00
|
|
|
|
PlayerBase::PlayerBase() {
|
2022-02-02 20:34:50 +08:00
|
|
|
|
this->mINI::operator[](Client::kTimeoutMS) = 10000;
|
|
|
|
|
|
this->mINI::operator[](Client::kMediaTimeoutMS) = 5000;
|
|
|
|
|
|
this->mINI::operator[](Client::kBeatIntervalMS) = 5000;
|
|
|
|
|
|
this->mINI::operator[](Client::kWaitTrackReady) = true;
|
2024-12-28 20:21:29 +08:00
|
|
|
|
this->mINI::operator[](Client::kLatency) = 0;
|
|
|
|
|
|
this->mINI::operator[](Client::kPassPhrase) = "";
|
2019-03-01 14:23:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|