新增openRtpServerMultiplex接口,支持创建多路复用RTP服务器端口 (#2954)

#2953
This commit is contained in:
waken
2023-11-09 11:26:13 +08:00
committed by GitHub
parent f8285a3f6c
commit 6888f20d74
5 changed files with 78 additions and 10 deletions

View File

@@ -1,9 +1,10 @@
{
"info": {
"_postman_id": "39e8a1df-cc8e-4e3f-bf5e-197c86e7bf0f",
"_postman_id": "509e5f6b-728c-4d5f-b3e8-521d76b2cc7a",
"name": "ZLMediaKit",
"description": "媒体服务器",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "29185956"
},
"item": [
{
@@ -918,7 +919,7 @@
"method": "GET",
"header": [],
"url": {
"raw": "{{ZLMediaKit_URL}}/index/api/broadcastMessage?secret={{ZLMediaKit_secret}}&schema=rtsp&vhost={{defaultVhost}}&app=live&stream=test&msg=Hello zlmediakit123",
"raw": "{{ZLMediaKit_URL}}/index/api/broadcastMessage?secret={{ZLMediaKit_secret}}&schema=rtsp&vhost={{defaultVhost}}&app=live&stream=test&msg=Hello ZLMediakit",
"host": [
"{{ZLMediaKit_URL}}"
],
@@ -1247,7 +1248,7 @@
},
{
"key": "stamp",
"value": 1000,
"value": "1000",
"description": "要设置的录像播放位置"
}
]
@@ -1478,6 +1479,53 @@
},
"response": []
},
{
"name": "创建多路复用RTP服务器(openRtpServerMultiplex)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{ZLMediaKit_URL}}/index/api/openRtpServer?secret={{ZLMediaKit_secret}}&port=0&tcp_mode=1&stream_id=test",
"host": [
"{{ZLMediaKit_URL}}"
],
"path": [
"index",
"api",
"openRtpServer"
],
"query": [
{
"key": "secret",
"value": "{{ZLMediaKit_secret}}",
"description": "api操作密钥(配置文件配置)"
},
{
"key": "port",
"value": "0",
"description": "绑定的端口0时为随机端口"
},
{
"key": "tcp_mode",
"value": "1",
"description": "tcp模式0时为不启用tcp监听1时为启用tcp监听"
},
{
"key": "stream_id",
"value": "test",
"description": "该端口绑定的流id\n"
},
{
"key": "only_audio",
"value": "0",
"description": "是否为单音频track用于语音对讲",
"disabled": true
}
]
}
},
"response": []
},
{
"name": "连接RTP服务器(connectRtpServer)",
"request": {