Files
ZLMediaKit/src/Player/PlayerBase.cpp

72 lines
2.4 KiB
C++
Raw Normal View History

2017-10-09 22:11:01 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2017-09-27 16:20:30 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2017-09-27 16:20:30 +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.
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"
2020-05-17 18:00:37 +08:00
#include "Http/HlsPlayer.h"
2022-01-04 15:32:59 +08:00
#include "Http/TsPlayerImp.h"
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
PlayerBase::Ptr PlayerBase::createPlayer(const EventPoller::Ptr &poller, const string &url_in) {
static auto releasePlayer = [](PlayerBase *ptr) {
onceToken token(nullptr, [&]() {
delete ptr;
2020-03-20 11:51:24 +08:00
});
ptr->teardown();
};
2020-05-21 14:10:27 +08:00
string url = url_in;
string prefix = FindField(url.data(), NULL, "://");
auto pos = url.find('?');
if (pos != string::npos) {
//去除?后面的字符串
url = url.substr(0, pos);
}
2019-07-20 20:53:50 +08:00
if (strcasecmp("rtsps", prefix.data()) == 0) {
return PlayerBase::Ptr(new TcpClientWithSSL<RtspPlayerImp>(poller), releasePlayer);
2020-03-20 11:51:24 +08:00
}
2019-07-20 20:53:50 +08:00
if (strcasecmp("rtsp", prefix.data()) == 0) {
return PlayerBase::Ptr(new RtspPlayerImp(poller), releasePlayer);
2020-03-20 11:51:24 +08:00
}
2019-07-20 20:53:50 +08:00
if (strcasecmp("rtmps", prefix.data()) == 0) {
return PlayerBase::Ptr(new TcpClientWithSSL<RtmpPlayerImp>(poller), releasePlayer);
2020-03-20 11:51:24 +08:00
}
2019-07-20 20:53:50 +08:00
if (strcasecmp("rtmp", prefix.data()) == 0) {
return PlayerBase::Ptr(new RtmpPlayerImp(poller), releasePlayer);
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)) {
2022-01-04 15:32:59 +08:00
if (end_with(url, ".m3u8") || end_with(url_in, ".m3u8")) {
2022-01-09 15:01:23 +08:00
return PlayerBase::Ptr(new HlsPlayerImp(poller), releasePlayer);
} else if (end_with(url, ".ts") || end_with(url_in, ".ts")) {
return PlayerBase::Ptr(new TsPlayerImp(poller), releasePlayer);
2022-01-04 15:32:59 +08:00
}
2020-05-17 18:00:37 +08:00
}
throw std::invalid_argument("not supported play schema:" + url_in);
2017-04-01 16:35:56 +08:00
}
PlayerBase::PlayerBase() {
this->mINI::operator[](Client::kTimeoutMS) = 10000;
this->mINI::operator[](Client::kMediaTimeoutMS) = 5000;
this->mINI::operator[](Client::kBeatIntervalMS) = 5000;
this->mINI::operator[](Client::kWaitTrackReady) = true;
}
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */