2020-08-24 13:08:21 +08:00
# SRS(Simple Realtime Server)
2013-10-16 23:15:20 -07:00
2021-03-11 17:08:10 +08:00

2021-08-14 20:38:01 +08:00
[](https://github.com/ossrs/srs/actions?query=workflow%3ACodeQL+branch%3A4.0release)
2021-08-14 21:24:36 +08:00
[](https://github.com/ossrs/srs/actions/workflows/release.yml?query=workflow%3ARelease)
2021-08-15 19:01:55 +08:00
[](https://github.com/ossrs/srs/actions?query=workflow%3ATest+branch%3A4.0release)
2021-03-11 17:08:10 +08:00
[](https://codecov.io/gh/ossrs/srs/branch/4.0release)
2021-12-30 11:28:10 +08:00
[](../../wikis/Contact#wechat )
[](https://github.com/ossrs/srs/issues/2716)
[](http://mulanos.cn)
[](https://alternativeto.net/software/srs/about/)
2021-11-22 12:41:38 +08:00
[](https://www.youtube.com/channel/UCP6ZblCL_fIJoEyUzZxC1ng)
2021-12-08 16:57:06 +08:00
[](https://discord.gg/yZ4BnPmHAd)
2021-12-13 12:24:57 +08:00
[](https://opencollective.com/srs-server/contribute)
2022-01-05 13:51:15 +08:00
[](https://stackoverflow.com/questions/tagged/simple-realtime-server)
[](https://hub.docker.com/r/ossrs/srs/tags)
2016-09-15 14:17:33 +08:00
2021-12-13 08:18:42 +08:00
SRS/4.0, [Leo ](https://github.com/ossrs/srs/wiki/Product#release40 ), 是一个简单高效的实时视频服务器, 支持RTMP/WebRTC/HLS/HTTP-FLV/SRT。
2021-04-16 11:13:34 +08:00
2021-06-16 08:27:37 +08:00
SRS is a simple, high efficiency and realtime video server, supports RTMP/WebRTC/HLS/HTTP-FLV/SRT.
2015-03-14 22:14:04 +08:00
2022-04-06 15:20:37 +08:00
[](https://ossrs.net/wiki/images/SRS-SingleNode-4.0-hd.png)
2022-04-04 20:17:30 +08:00
2022-04-06 15:20:37 +08:00
> Note: The single node architecture for SRS, for detail please see [here](https://www.figma.com/file/333POxVznQ8Wz1Rxlppn36/SRS-4.0-Server-Arch).
2021-11-25 14:18:44 +08:00
2021-05-25 14:39:47 +08:00
SRS is licenced under [MIT][LICENSE], but some depended libraries are distributed using their [own licenses][LicenseMixing].
2014-03-10 19:46:23 +08:00
2017-06-28 09:19:09 +08:00
< a name = "product" > < / a >
2021-05-26 14:21:23 +08:00
< a name = "usage-docker" > < / a >
2019-12-02 18:41:17 +08:00
## Usage
2017-01-04 11:52:30 +08:00
2022-01-04 11:18:52 +08:00
Build SRS from source:
2021-05-24 14:45:19 +08:00
```
git clone -b 4.0release https://gitee.com/ossrs/srs.git & &
cd srs/trunk & & ./configure & & make & & ./objs/srs -c conf/srs.conf
```
2021-03-05 07:58:32 +08:00
2021-08-13 14:50:11 +08:00
Open [http://localhost:8080/ ](http://localhost:8080/ ) to check it, then publish
by [FFmpeg ](https://ffmpeg.org/download.html ) or [OBS ](https://obsproject.com/download ) as:
2021-03-05 07:58:32 +08:00
```bash
2021-08-13 14:50:11 +08:00
ffmpeg -re -i ./doc/source.flv -c copy -f flv -y rtmp://localhost/live/livestream
2021-03-05 07:58:32 +08:00
```
2021-04-24 22:45:55 +08:00
Play the following streams by [players ](https://ossrs.net ):
2021-03-05 07:58:32 +08:00
2021-05-24 15:12:36 +08:00
* RTMP (by [VLC ](https://www.videolan.org/ )): rtmp://localhost/live/livestream
2021-03-05 09:53:15 +08:00
* H5(HTTP-FLV): [http://localhost:8080/live/livestream.flv ](http://localhost:8080/players/srs_player.html?autostart=true&stream=livestream.flv&port=8080&schema=http )
* H5(HLS): [http://localhost:8080/live/livestream.m3u8 ](http://localhost:8080/players/srs_player.html?autostart=true&stream=livestream.m3u8&port=8080&schema=http )
2022-01-04 11:18:52 +08:00
Note that if convert RTMP to WebRTC, please use [`rtmp2rtc.conf` ](https://github.com/ossrs/srs/issues/2728#issuecomment-964686152 ):
2021-03-05 09:53:15 +08:00
* H5(WebRTC): [webrtc://localhost/live/livestream ](http://localhost:8080/players/rtc_player.html?autostart=true )
2021-03-05 07:58:32 +08:00
2022-01-06 21:56:41 +08:00
> Note: Besides of FFmpeg or OBS, it's also able to [publish by H5](http://localhost:8080/players/rtc_publisher.html?autostart=true)
> if [WebRTC](https://github.com/ossrs/srs/issues/307) is enabled.
> Highly recommend that directly run SRS by
> **docker([CN](https://github.com/ossrs/srs/wiki/v4_CN_Home#docker) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_Home#docker))**,
2022-01-16 21:59:46 +08:00
> **Cloud Virtual Machine([CN](https://github.com/ossrs/srs/wiki/v4_CN_Home#cloud-virtual-machine) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_Home#cloud-virtual-machine))**,
2022-01-06 21:56:41 +08:00
> or **K8s([CN](https://github.com/ossrs/srs/wiki/v4_CN_Home#k8s) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_Home#k8s))**,
> however it's also easy to build SRS from source code, for detail please see
> **Getting Started([CN](https://github.com/ossrs/srs/wiki/v4_CN_Home#getting-started) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_Home#getting-started))**.
2022-01-10 14:18:22 +08:00
> Note: If need HTTPS, by which WebRTC and modern browsers require, please read
> **HTTPS API([CN](https://github.com/ossrs/srs/wiki/v4_CN_HTTPApi#https-api) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_HTTPApi#https-api))**
> and **HTTPS Callback([CN](https://github.com/ossrs/srs/wiki/v4_CN_HTTPCallback#https-callback) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_HTTPCallback#https-callback))**
2022-01-06 21:56:41 +08:00
> and **HTTPS Live Streaming([CN](https://github.com/ossrs/srs/wiki/v4_EN_DeliveryHttpStream#https-flv-live-stream) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_DeliveryHttpStream#https-flv-live-stream))**,
> however HTTPS proxy also works perfect with SRS such as Nginx.
2021-04-28 12:23:52 +08:00
< a name = "srs-40-wiki" > < / a >
< a name = "wiki" > < / a >
2017-06-28 09:23:42 +08:00
2021-04-28 12:23:52 +08:00
From here, please read wikis:
2014-03-30 20:47:24 +08:00
2021-08-13 14:50:11 +08:00
* [Getting Started ](https://github.com/ossrs/srs/wiki/v4_EN_Home#getting-started ), please read Wiki first.
2021-08-13 14:50:39 +08:00
* [中文文档:起步 ](https://github.com/ossrs/srs/wiki/v4_CN_Home#getting-started ), 不读Wiki一定扑街, 不读文档请不要提Issue, 不读文档请不要提问题, 任何文档中明确说过的疑问都不会解答。
2014-03-30 20:47:24 +08:00
2021-04-28 12:23:52 +08:00
Fast index for Wikis:
2021-04-24 22:45:55 +08:00
2021-08-13 14:53:22 +08:00
* Overview? ([CN][v4_CN_Home], [EN][v4_EN_Home])
2021-04-28 12:23:52 +08:00
* How to deliver RTMP streaming?([CN][v4_CN_SampleRTMP], [EN][v4_EN_SampleRTMP])
* How to build RTMP Edge-Cluster?([CN][v4_CN_SampleRTMPCluster], [EN][v4_EN_SampleRTMPCluster])
* How to build RTMP Origin-Cluster?([CN][v4_CN_SampleOriginCluster], [EN][v4_EN_SampleOriginCluster])
* How to deliver HTTP-FLV streaming?([CN][v4_CN_SampleHttpFlv], [EN][v4_EN_SampleHttpFlv])
* How to deliver HLS streaming?([CN][v4_CN_SampleHLS], [EN][v4_EN_SampleHLS])
* How to deliver low-latency streaming?([CN][v4_CN_SampleRealtime], [EN][v4_EN_SampleRealtime])
2021-05-01 16:41:42 +08:00
* How to use WebRTC? ([CN][v4_CN_WebRTC], [EN][v4_EN_WebRTC])
2021-04-24 22:45:55 +08:00
2021-04-28 12:23:52 +08:00
Other important wiki:
2017-06-28 09:23:42 +08:00
2021-04-28 12:23:52 +08:00
* Usage: How to delivery DASH(Experimental)?([CN][v4_CN_SampleDASH], [EN][v4_EN_SampleDASH])
* Usage: How to transode RTMP stream by FFMPEG?([CN][v4_CN_SampleFFMPEG], [EN][v4_EN_SampleFFMPEG])
* Usage: How to delivery HTTP FLV Live Streaming Cluster?([CN][v4_CN_SampleHttpFlvCluster], [EN][v4_EN_SampleHttpFlvCluster])
* Usage: How to ingest file/stream/device to RTMP?([CN][v4_CN_SampleIngest], [EN][v4_EN_SampleIngest])
* Usage: How to forward stream to other servers?([CN][v4_CN_SampleForward], [EN][v4_EN_SampleForward])
* Usage: How to improve edge performance for multiple CPUs? ([CN][v4_CN_REUSEPORT], [EN][v4_EN_REUSEPORT])
* Usage: How to file a bug or contact us? ([CN][v4_CN_Contact], [EN][v4_EN_Contact])
2019-12-02 18:41:17 +08:00
2021-06-13 09:58:25 +08:00
## AUTHORS
2021-12-14 15:50:00 +08:00
Thank you to all our contributors! 🙏
2021-12-13 12:24:57 +08:00
[](https://opencollective.com/srs-server/contribute)
> Note: You may provide financial support for this project by donating [via Open Collective](https://opencollective.com/srs-server/contribute). Thank you for your support!
2021-12-06 18:45:35 +08:00
2021-12-14 15:50:00 +08:00
There are two types of people that have contributed code to the SRS project:
2021-06-13 09:58:25 +08:00
* Maintainers: Contribute and maintain important features. SRS always remembers and thanks you by writing your names in stream metadata.
* [Contributors][authors]: Submit patches, report bugs, add translations, help answer newbie questions, and generally make SRS much better.
Maintainers of SRS project:
2021-08-25 07:35:27 +08:00
* [Winlin ](https://github.com/winlinvip ): Focus on [issues/PR ](https://github.com/ossrs/srs/issues ) and tests now.
* [ZhaoWenjie ](https://github.com/wenjiegit ): Focus on [HDS ](https://github.com/simple-rtmp-server/srs/wiki/v4_CN_DeliveryHDS ) module.
* [ShiWei ](https://github.com/runner365 ): Focus on [SRT ](https://github.com/simple-rtmp-server/srs/wiki/v4_CN_SRTWiki ) module.
* [XiaoZhihong ](https://github.com/xiaozhihong ): Focus on [WebRTC ](https://github.com/simple-rtmp-server/srs/wiki/v4_CN_WebRTC ) module.
* [WuPengqiang ](https://github.com/Bepartofyou ): Focus on [WebRTC ](https://github.com/simple-rtmp-server/srs/wiki/v4_CN_WebRTC ) module.
* [XiaLixin ](https://github.com/xialixin ): Focus on [GB28181 ](https://github.com/ossrs/srs/issues/1500 ) module.
* [LiPeng ](https://github.com/lipeng19811218 ): Focus on [WebRTC ](https://github.com/simple-rtmp-server/srs/wiki/v4_CN_WebRTC ) module.
* [ChenGuanghua ](https://github.com/chen-guanghua ): Focus on [WebRTC ](https://github.com/simple-rtmp-server/srs/wiki/v4_CN_WebRTC ) module.
* [ChenHaibo ](https://github.com/duiniuluantanqin ): Focus on [GB28181 ](https://github.com/ossrs/srs/issues/1500 ) and [API ](https://github.com/ossrs/srs/issues/1657 ) module.
2021-06-13 09:58:25 +08:00
A big THANK YOU goes to:
* All friends of SRS for [big supports][bigthanks].
* Genes amd Mabbott for creating [st][st ]([state-threads][st2] ).
* [Michael Talyanksy ](https://github.com/michaeltalyansky ) for introducing ST to us.
2019-12-02 18:41:17 +08:00
## Releases
2017-01-04 11:46:22 +08:00
2022-06-11 10:17:33 +08:00
* 2022-06-11, Release [v4.0-r0 ](https://github.com/ossrs/srs/releases/tag/v4.0-r0 ), v4.0-r0, 4.0 release0, v4.0.252, 144680 lines.
2022-03-19 13:04:06 +08:00
* 2022-03-19, Release [v4.0-b10 ](https://github.com/ossrs/srs/releases/tag/v4.0-b10 ), v4.0-b10, 4.0 beta10, v4.0.251, 144665 lines.
2022-02-15 19:34:01 +08:00
* 2022-02-15, Release [v4.0-b9 ](https://github.com/ossrs/srs/releases/tag/v4.0-b9 ), v4.0-b9, 4.0 beta9, v4.0.245, 144474 lines.
2022-02-11 16:38:11 +08:00
* 2022-02-11, Release [v4.0-b8 ](https://github.com/ossrs/srs/releases/tag/v4.0-b8 ), v4.0-b8, 4.0 beta8, v4.0.241, 144445 lines.
2022-02-09 11:53:06 +08:00
* 2022-02-09, Release [v4.0-b7 ](https://github.com/ossrs/srs/releases/tag/v4.0-b7 ), v4.0-b7, 4.0 beta7, v4.0.240, 144437 lines.
2022-02-04 09:02:05 +08:00
* 2022-02-04, Release [v4.0-b6 ](https://github.com/ossrs/srs/releases/tag/v4.0-b6 ), v4.0-b6, 4.0 beta6, v4.0.238, 144437 lines.
2022-01-30 22:37:26 +08:00
* 2022-01-30, Release [v4.0-b5 ](https://github.com/ossrs/srs/releases/tag/v4.0-b5 ), v4.0-b5, 4.0 beta5, v4.0.236, 144416 lines.
2022-01-17 14:30:01 +08:00
* 2022-01-17, Release [v4.0-b4 ](https://github.com/ossrs/srs/releases/tag/v4.0-b4 ), v4.0-b4, 4.0 beta4, v4.0.230, 144393 lines.
2022-01-13 17:08:01 +08:00
* 2022-01-13, Release [v4.0-b3 ](https://github.com/ossrs/srs/releases/tag/v4.0-b3 ), v4.0-b3, 4.0 beta3, v4.0.229, 144393 lines.
2022-01-03 08:35:23 +08:00
* 2022-01-03, Release [v4.0-b2 ](https://github.com/ossrs/srs/releases/tag/v4.0-b2 ), v4.0-b2, 4.0 beta2, v4.0.215, 144278 lines.
2021-12-19 16:49:43 +08:00
* 2021-12-19, Release [v4.0-b1 ](https://github.com/ossrs/srs/releases/tag/v4.0-b1 ), v4.0-b1, 4.0 beta1, v4.0.206, 144126 lines.
2021-12-13 12:24:57 +08:00
* 2021-12-01, Release [v4.0-b0 ](https://github.com/ossrs/srs/releases/tag/v4.0-b0 ), v4.0-b0, 4.0 beta0, v4.0.201, 144022 lines.
2021-11-15 11:05:07 +08:00
* 2021-11-15, Release [v4.0.198 ](https://github.com/ossrs/srs/releases/tag/v4.0.198 ), 4.0 dev8, v4.0.198, 144010 lines.
2021-11-02 07:59:13 +08:00
* 2021-11-02, Release [v4.0.191 ](https://github.com/ossrs/srs/releases/tag/v4.0.191 ), 4.0 dev7, v4.0.191, 143890 lines.
2021-10-12 14:04:22 +08:00
* 2021-10-12, Release [v4.0.177 ](https://github.com/ossrs/srs/releases/tag/v4.0.177 ), 4.0 dev6, v4.0.177, 143686 lines.
2021-09-05 14:12:26 +08:00
* 2021-09-05, Release [v4.0.161 ](https://github.com/ossrs/srs/releases/tag/v4.0.161 ), 4.0 dev5, v4.0.161, 145865 lines.
* 2021-08-15, Release [v4.0.156 ](https://github.com/ossrs/srs/releases/tag/v4.0.156 ), 4.0 dev4, v4.0.156, 145490 lines.
* 2021-08-14, Release [v4.0.153 ](https://github.com/ossrs/srs/releases/tag/v4.0.153 ), 4.0 dev3, v4.0.153, 145506 lines.
* 2021-08-07, Release [v4.0.150 ](https://github.com/ossrs/srs/releases/tag/v4.0.150 ), 4.0 dev2, v4.0.150, 145289 lines.
* 2021-07-25, Release [v4.0.146 ](https://github.com/ossrs/srs/releases/tag/v4.0.146 ), 4.0 dev1, v4.0.146, 144026 lines.
* 2021-07-04, Release [v4.0.139 ](https://github.com/ossrs/srs/releases/tag/v4.0.139 ), 4.0 dev0, v4.0.139, 143245 lines.
2020-06-27 11:47:36 +08:00
* 2020-06-27, [Release v3.0-r0][r3.0r0], 3.0 release0, 3.0.141, 122674 lines.
2020-02-02 11:15:08 +08:00
* 2020-02-02, [Release v3.0-b0][r3.0b0], 3.0 beta0, 3.0.112, 121709 lines.
2019-10-04 19:25:58 +08:00
* 2019-10-04, [Release v3.0-a0][r3.0a0], 3.0 alpha0, 3.0.56, 107946 lines.
2017-03-02 21:55:52 +08:00
* 2017-03-03, [Release v2.0-r0][r2.0r0], 2.0 release0, 2.0.234, 86373 lines.
2017-01-04 11:46:22 +08:00
* 2016-08-06, [Release v2.0-b0][r2.0b0], 2.0 beta0, 2.0.210, 89704 lines.
* 2015-08-23, [Release v2.0-a0][r2.0a0], 2.0 alpha0, 2.0.185, 89022 lines.
* 2014-12-05, [Release v1.0-r0][r1.0r0], all bug fixed, 1.0.10, 59391 lines.
* 2014-10-09, [Release v0.9.8][r1.0b0], all bug fixed, 1.0.0, 59316 lines.
2021-08-14 08:56:43 +08:00
* 2014-04-07, [Release v0.9.1][r1.0a0], live streaming. 30000 lines.
* 2013-10-23, [Release v0.1.0][r0.1], rtmp. 8287 lines.
2017-01-04 11:46:22 +08:00
* 2013-10-17, Created.
2021-08-16 08:57:01 +08:00
## Features
Please read [FEATURES ](trunk/doc/Features.md#features ).
< a name = "history" > < / a >
< a name = "change-logs" > < / a >
## Changelog
Please read [CHANGELOG ](trunk/doc/CHANGELOG.md#changelog ).
2019-12-02 18:41:17 +08:00
## Compare
2017-01-04 11:34:59 +08:00
2021-06-10 14:03:13 +08:00
Comparing with other media servers, SRS is much better and stronger, for details please
read Product([CN][v4_CN_Compare]/[EN][v4_EN_Compare]).
2017-01-04 11:34:59 +08:00
2019-12-02 18:41:17 +08:00
## Performance
2014-07-12 10:26:09 +08:00
2021-08-16 08:57:01 +08:00
Please read [PERFORMANCE ](trunk/doc/PERFORMANCE.md#performance ).
2014-12-13 12:48:49 +08:00
2014-03-21 18:20:07 +08:00
## Architecture
2021-08-16 08:57:01 +08:00
Please read [ARCHITECTURE ](trunk/doc/Architecture.md#architecture ).
2014-03-21 18:20:07 +08:00
2021-08-14 08:56:43 +08:00
## Ports
2021-08-16 08:57:01 +08:00
Please read [PORTS ](trunk/doc/Resources.md#ports ).
2021-08-14 08:56:43 +08:00
## APIs
2021-08-16 08:57:01 +08:00
Please read [APIS ](trunk/doc/Resources.md#apis ).
2021-08-14 08:56:43 +08:00
2019-12-02 18:41:17 +08:00
## Mirrors
2017-01-04 11:34:59 +08:00
2021-08-16 08:57:01 +08:00
Please read [MIRRORS ](trunk/doc/Resources.md#mirrors ).
2017-01-04 11:34:59 +08:00
2014-03-21 15:45:34 +08:00
Beijing, 2013.10< br / >
2013-10-17 14:21:30 +08:00
Winlin
2013-11-30 08:51:51 +08:00
2021-06-30 08:20:53 +08:00
[authors]: https://github.com/ossrs/srs/blob/4.0release/trunk/AUTHORS.txt
2021-06-13 08:36:12 +08:00
[bigthanks]: https://github.com/ossrs/srs/wiki/Product#release40
[st]: https://github.com/ossrs/state-threads
2020-02-16 13:39:25 +08:00
[st2]: https://github.com/ossrs/state-threads/tree/srs
[state-threads]: https://github.com/ossrs/state-threads/tree/srs
2015-05-23 14:43:55 +08:00
[nginx]: http://nginx.org/
2015-11-11 10:37:50 +08:00
[srs]: https://github.com/ossrs/srs
2021-04-28 17:16:04 +08:00
[gitee]: https://gitee.com/ossrs/srs
2015-11-11 10:37:50 +08:00
[srs-bench]: https://github.com/ossrs/srs-bench
2021-06-13 08:36:12 +08:00
[srs-ngb]: https://github.com/ossrs/srs-console
2015-11-11 10:37:50 +08:00
[srs-librtmp]: https://github.com/ossrs/srs-librtmp
2015-05-23 14:43:55 +08:00
[gitlab]: https://gitlab.com/winlinvip/srs-gitlab
2021-06-13 08:36:12 +08:00
[console]: http://ossrs.net:8080/console
2021-03-05 07:58:32 +08:00
[docker-srs3]: https://github.com/ossrs/srs-docker/tree/v3#usage
[docker-srs4]: https://github.com/ossrs/srs-docker/tree/v4#usage
2019-12-02 18:06:02 +08:00
[docker-dev]: https://github.com/ossrs/srs-docker/tree/dev#usage
2015-08-28 18:47:39 +08:00
2021-04-28 12:23:52 +08:00
[v4_CN_Git]: https://github.com/ossrs/srs/wiki/v4_CN_Git
[v4_EN_Git]: https://github.com/ossrs/srs/wiki/v4_EN_Git
[v4_CN_SampleRTMP]: https://github.com/ossrs/srs/wiki/v4_CN_SampleRTMP
[v4_EN_SampleRTMP]: https://github.com/ossrs/srs/wiki/v4_EN_SampleRTMP
[v4_CN_SampleRTMPCluster]: https://github.com/ossrs/srs/wiki/v4_CN_SampleRTMPCluster
[v4_EN_SampleRTMPCluster]: https://github.com/ossrs/srs/wiki/v4_EN_SampleRTMPCluster
[v4_CN_SampleOriginCluster]: https://github.com/ossrs/srs/wiki/v4_CN_SampleOriginCluster
[v4_EN_SampleOriginCluster]: https://github.com/ossrs/srs/wiki/v4_EN_SampleOriginCluster
[v4_CN_SampleHLS]: https://github.com/ossrs/srs/wiki/v4_CN_SampleHLS
[v4_EN_SampleHLS]: https://github.com/ossrs/srs/wiki/v4_EN_SampleHLS
[v4_CN_SampleTranscode2HLS]: https://github.com/ossrs/srs/wiki/v4_CN_SampleTranscode2HLS
[v4_EN_SampleTranscode2HLS]: https://github.com/ossrs/srs/wiki/v4_EN_SampleTranscode2HLS
[v4_CN_SampleFFMPEG]: https://github.com/ossrs/srs/wiki/v4_CN_SampleFFMPEG
[v4_EN_SampleFFMPEG]: https://github.com/ossrs/srs/wiki/v4_EN_SampleFFMPEG
[v4_CN_SampleForward]: https://github.com/ossrs/srs/wiki/v4_CN_SampleForward
[v4_EN_SampleForward]: https://github.com/ossrs/srs/wiki/v4_EN_SampleForward
[v4_CN_SampleRealtime]: https://github.com/ossrs/srs/wiki/v4_CN_SampleRealtime
[v4_EN_SampleRealtime]: https://github.com/ossrs/srs/wiki/v4_EN_SampleRealtime
2021-05-01 16:41:42 +08:00
[v4_CN_WebRTC]: https://github.com/ossrs/srs/wiki/v4_CN_WebRTC
[v4_EN_WebRTC]: https://github.com/ossrs/srs/wiki/v4_EN_WebRTC
2021-05-24 14:45:19 +08:00
[v4_CN_WebRTC#config -candidate]: https://github.com/ossrs/srs/wiki/v4_CN_WebRTC#config -candidate
[v4_EN_WebRTC#config -candidate]: https://github.com/ossrs/srs/wiki/v4_EN_WebRTC#config -candidate
2021-04-28 12:23:52 +08:00
[v4_CN_SampleARM]: https://github.com/ossrs/srs/wiki/v4_CN_SampleARM
[v4_EN_SampleARM]: https://github.com/ossrs/srs/wiki/v4_EN_SampleARM
[v4_CN_SampleIngest]: https://github.com/ossrs/srs/wiki/v4_CN_SampleIngest
[v4_EN_SampleIngest]: https://github.com/ossrs/srs/wiki/v4_EN_SampleIngest
[v4_CN_SampleHTTP]: https://github.com/ossrs/srs/wiki/v4_CN_SampleHTTP
[v4_EN_SampleHTTP]: https://github.com/ossrs/srs/wiki/v4_EN_SampleHTTP
[v4_CN_SampleDemo]: https://github.com/ossrs/srs/wiki/v4_CN_SampleDemo
[v4_EN_SampleDemo]: https://github.com/ossrs/srs/wiki/v4_EN_SampleDemo
[v4_CN_OriginCluster]: https://github.com/ossrs/srs/wiki/v4_CN_OriginCluster
[v4_EN_OriginCluster]: https://github.com/ossrs/srs/wiki/v4_EN_OriginCluster
[v4_CN_REUSEPORT]: https://github.com/ossrs/srs/wiki/v4_CN_REUSEPORT
[v4_EN_REUSEPORT]: https://github.com/ossrs/srs/wiki/v4_EN_REUSEPORT
[v4_CN_Sample]: https://github.com/ossrs/srs/wiki/v4_CN_Sample
[v4_EN_Sample]: https://github.com/ossrs/srs/wiki/v4_EN_Sample
[v4_CN_Product]: https://github.com/ossrs/srs/wiki/v4_CN_Product
[v4_EN_Product]: https://github.com/ossrs/srs/wiki/v4_EN_Product
2020-01-24 16:16:16 +08:00
[v4_CN_Home]: https://github.com/ossrs/srs/wiki/v4_CN_Home
[v4_EN_Home]: https://github.com/ossrs/srs/wiki/v4_EN_Home
2015-11-11 10:37:50 +08:00
2021-04-28 12:23:52 +08:00
[v4_CN_Compare]: https://github.com/ossrs/srs/wiki/v4_CN_Compare
[v4_EN_Compare]: https://github.com/ossrs/srs/wiki/v4_EN_Compare
[v4_CN_Build]: https://github.com/ossrs/srs/wiki/v4_CN_Build
[v4_EN_Build]: https://github.com/ossrs/srs/wiki/v4_EN_Build
[v4_CN_Performance]: https://github.com/ossrs/srs/wiki/v4_CN_Performance
[v4_EN_Performance]: https://github.com/ossrs/srs/wiki/v4_EN_Performance
[v4_CN_DeliveryRTMP]: https://github.com/ossrs/srs/wiki/v4_CN_DeliveryRTMP
[v4_EN_DeliveryRTMP]: https://github.com/ossrs/srs/wiki/v4_EN_DeliveryRTMP
[v4_CN_Edge]: https://github.com/ossrs/srs/wiki/v4_CN_Edge
[v4_EN_Edge]: https://github.com/ossrs/srs/wiki/v4_EN_Edge
[v4_CN_RtmpUrlVhost]: https://github.com/ossrs/srs/wiki/v4_CN_RtmpUrlVhost
[v4_EN_RtmpUrlVhost]: https://github.com/ossrs/srs/wiki/v4_EN_RtmpUrlVhost
[v4_CN_RTMPHandshake]: https://github.com/ossrs/srs/wiki/v4_CN_RTMPHandshake
[v4_EN_RTMPHandshake]: https://github.com/ossrs/srs/wiki/v4_EN_RTMPHandshake
[v4_CN_HTTPServer]: https://github.com/ossrs/srs/wiki/v4_CN_HTTPServer
[v4_EN_HTTPServer]: https://github.com/ossrs/srs/wiki/v4_EN_HTTPServer
[v4_CN_DeliveryHLS]: https://github.com/ossrs/srs/wiki/v4_CN_DeliveryHLS
[v4_EN_DeliveryHLS]: https://github.com/ossrs/srs/wiki/v4_EN_DeliveryHLS
[v4_CN_DeliveryHLS2]: https://github.com/ossrs/srs/wiki/v4_CN_DeliveryHLS#hlsaudioonly
[v4_EN_DeliveryHLS2]: https://github.com/ossrs/srs/wiki/v4_EN_DeliveryHLS#hlsaudioonly
[v4_CN_Reload]: https://github.com/ossrs/srs/wiki/v4_CN_Reload
[v4_EN_Reload]: https://github.com/ossrs/srs/wiki/v4_EN_Reload
[v4_CN_LowLatency2]: https://github.com/ossrs/srs/wiki/v4_CN_LowLatency#gop -cache
[v4_EN_LowLatency2]: https://github.com/ossrs/srs/wiki/v4_EN_LowLatency#gop -cache
[v4_CN_Forward]: https://github.com/ossrs/srs/wiki/v4_CN_Forward
[v4_EN_Forward]: https://github.com/ossrs/srs/wiki/v4_EN_Forward
[v4_CN_FFMPEG]: https://github.com/ossrs/srs/wiki/v4_CN_FFMPEG
[v4_EN_FFMPEG]: https://github.com/ossrs/srs/wiki/v4_EN_FFMPEG
[v4_CN_HTTPCallback]: https://github.com/ossrs/srs/wiki/v4_CN_HTTPCallback
[v4_EN_HTTPCallback]: https://github.com/ossrs/srs/wiki/v4_EN_HTTPCallback
[v4_CN_SampleDemo]: https://github.com/ossrs/srs/wiki/v4_CN_SampleDemo
[v4_EN_SampleDemo]: https://github.com/ossrs/srs/wiki/v4_EN_SampleDemo
[v4_CN_SrsLinuxArm]: https://github.com/ossrs/srs/wiki/v4_CN_SrsLinuxArm
[v4_EN_SrsLinuxArm]: https://github.com/ossrs/srs/wiki/v4_EN_SrsLinuxArm
[v4_CN_LinuxService]: https://github.com/ossrs/srs/wiki/v4_CN_LinuxService
[v4_EN_LinuxService]: https://github.com/ossrs/srs/wiki/v4_EN_LinuxService
[v4_CN_RTMP-ATC]: https://github.com/ossrs/srs/wiki/v4_CN_RTMP-ATC
[v4_EN_RTMP-ATC]: https://github.com/ossrs/srs/wiki/v4_EN_RTMP-ATC
[v4_CN_HTTPApi]: https://github.com/ossrs/srs/wiki/v4_CN_HTTPApi
[v4_EN_HTTPApi]: https://github.com/ossrs/srs/wiki/v4_EN_HTTPApi
[v4_CN_Ingest]: https://github.com/ossrs/srs/wiki/v4_CN_Ingest
[v4_EN_Ingest]: https://github.com/ossrs/srs/wiki/v4_EN_Ingest
[v4_CN_DVR]: https://github.com/ossrs/srs/wiki/v4_CN_DVR
[v4_EN_DVR]: https://github.com/ossrs/srs/wiki/v4_EN_DVR
[v4_CN_SrsLog]: https://github.com/ossrs/srs/wiki/v4_CN_SrsLog
[v4_EN_SrsLog]: https://github.com/ossrs/srs/wiki/v4_EN_SrsLog
[v4_CN_DRM2]: https://github.com/ossrs/srs/wiki/v4_CN_DRM#tokentraverse
[v4_EN_DRM2]: https://github.com/ossrs/srs/wiki/v4_EN_DRM#tokentraverse
[v4_CN_SampleHTTP]: https://github.com/ossrs/srs/wiki/v4_CN_SampleHTTP
[v4_EN_SampleHTTP]: https://github.com/ossrs/srs/wiki/v4_EN_SampleHTTP
[v4_CN_FlvVodStream]: https://github.com/ossrs/srs/wiki/v4_CN_FlvVodStream
[v4_EN_FlvVodStream]: https://github.com/ossrs/srs/wiki/v4_EN_FlvVodStream
[v4_CN_Security]: https://github.com/ossrs/srs/wiki/v4_CN_Security
[v4_EN_Security]: https://github.com/ossrs/srs/wiki/v4_EN_Security
[v4_CN_DeliveryHttpStream]: https://github.com/ossrs/srs/wiki/v4_CN_DeliveryHttpStream
[v4_EN_DeliveryHttpStream]: https://github.com/ossrs/srs/wiki/v4_EN_DeliveryHttpStream
[v4_CN_DeliveryHDS]: https://github.com/ossrs/srs/wiki/v4_CN_DeliveryHDS
[v4_EN_DeliveryHDS]: https://github.com/ossrs/srs/wiki/v4_EN_DeliveryHDS
[v4_CN_Streamer]: https://github.com/ossrs/srs/wiki/v4_CN_Streamer
[v4_EN_Streamer]: https://github.com/ossrs/srs/wiki/v4_EN_Streamer
[v4_CN_Streamer2]: https://github.com/ossrs/srs/wiki/v4_CN_Streamer#push -http-flv-to-srs
[v4_EN_Streamer2]: https://github.com/ossrs/srs/wiki/v4_EN_Streamer#push -http-flv-to-srs
[v4_CN_SampleHttpFlv]: https://github.com/ossrs/srs/wiki/v4_CN_SampleHttpFlv
[v4_EN_SampleHttpFlv]: https://github.com/ossrs/srs/wiki/v4_EN_SampleHttpFlv
[v4_CN_SampleHttpFlvCluster]: https://github.com/ossrs/srs/wiki/v4_CN_SampleHttpFlvCluster
[v4_EN_SampleHttpFlvCluster]: https://github.com/ossrs/srs/wiki/v4_EN_SampleHttpFlvCluster
[v4_CN_SampleDASH]:https://github.com/ossrs/srs/wiki/v4_CN_SampleDASH
[v4_EN_SampleDASH]:https://github.com/ossrs/srs/wiki/v4_EN_SampleDASH
2015-11-11 10:37:50 +08:00
2021-06-13 08:36:12 +08:00
[bug #547 ]: https://github.com/ossrs/srs/issues/547
2015-11-11 10:37:50 +08:00
[bug #301 ]: https://github.com/ossrs/srs/issues/301
2021-06-13 08:36:12 +08:00
[bug #459 ]: https://github.com/ossrs/srs/issues/459
2015-11-11 10:45:45 +08:00
[bug #367 ]: https://github.com/ossrs/srs/issues/367
2015-11-11 10:37:50 +08:00
[bug #257 ]: https://github.com/ossrs/srs/issues/257
2017-05-30 07:40:18 +08:00
[bug #904 ]: https://github.com/ossrs/srs/issues/904
2017-06-10 14:19:10 +08:00
[bug #913 ]: https://github.com/ossrs/srs/issues/913
2021-06-13 08:36:12 +08:00
[bug #1059 ]: https://github.com/ossrs/srs/issues/1059
[bug #92 ]: https://github.com/ossrs/srs/issues/92
[bug #464 ]: https://github.com/ossrs/srs/issues/464
2018-01-07 12:44:25 +08:00
[bug #460 ]: https://github.com/ossrs/srs/issues/460
2019-10-03 16:10:22 +08:00
[bug #775 ]: https://github.com/ossrs/srs/issues/775
2021-06-13 08:36:12 +08:00
[bug #307 ]: https://github.com/ossrs/srs/issues/307
[bug #2324 ]: https://github.com/ossrs/srs/issues/2324
[bug #1657 ]: https://github.com/ossrs/srs/issues/1657
[bug #1500 ]: https://github.com/ossrs/srs/issues/1500
[bug #738 ]: https://github.com/ossrs/srs/issues/738
[bug #299 ]: https://github.com/ossrs/srs/issues/299
[bug #250 ]: https://github.com/ossrs/srs/issues/250
[bug #459 ]: https://github.com/ossrs/srs/issues/459
[bug #470 ]: https://github.com/ossrs/srs/issues/470
[bug #319 ]: https://github.com/ossrs/srs/issues/319
2020-01-23 20:47:32 +08:00
[bug #1147 ]: https://github.com/ossrs/srs/issues/1147
2021-06-13 08:36:12 +08:00
[bug #2304 ]: https://github.com/ossrs/srs/issues/2304
[bug #1535 ]: https://github.com/ossrs/srs/issues/1535
2021-03-15 13:45:06 +08:00
[bug #1342 ]: https://github.com/ossrs/srs/issues/1342
2021-06-13 08:36:12 +08:00
[bug #1193 ]: https://github.com/ossrs/srs/issues/1193
2021-03-15 13:45:06 +08:00
[bug #2093 ]: https://github.com/ossrs/srs/issues/2093
2021-06-13 08:36:12 +08:00
[bug #465 ]: https://github.com/ossrs/srs/issues/465
[bug #2091 ]: https://github.com/ossrs/srs/issues/2091
2021-03-15 13:45:06 +08:00
[bug #2188 ]: https://github.com/ossrs/srs/issues/2188
2021-06-13 08:36:12 +08:00
[bug #413 ]: https://github.com/ossrs/srs/issues/413
[bug #1111 ]: https://github.com/ossrs/srs/issues/1111
[bug #463 ]: https://github.com/ossrs/srs/issues/463
[bug #775 ]: https://github.com/ossrs/srs/issues/775
[bug #257 -c0]: https://github.com/ossrs/srs/issues/257#issuecomment -66864413
2015-05-23 15:11:45 +08:00
2021-04-28 15:45:34 +08:00
[r3.0r5]: https://github.com/ossrs/srs/releases/tag/v3.0-r5
2021-04-24 17:51:05 +08:00
[r3.0r4]: https://github.com/ossrs/srs/releases/tag/v3.0-r4
2021-01-02 19:16:30 +08:00
[r3.0r3]: https://github.com/ossrs/srs/releases/tag/v3.0-r3
2020-10-31 22:16:46 +08:00
[r3.0r2]: https://github.com/ossrs/srs/releases/tag/v3.0-r2
2020-10-10 16:50:19 +08:00
[r3.0r1]: https://github.com/ossrs/srs/releases/tag/v3.0-r1
2020-06-27 11:47:36 +08:00
[r3.0r0]: https://github.com/ossrs/srs/releases/tag/v3.0-r0
2020-03-29 14:00:37 +08:00
[r3.0b4]: https://github.com/ossrs/srs/releases/tag/v3.0-b4
2020-03-18 16:33:08 +08:00
[r3.0b3]: https://github.com/ossrs/srs/releases/tag/v3.0-b3
2020-03-05 11:34:16 +08:00
[r3.0b2]: https://github.com/ossrs/srs/releases/tag/v3.0-b2
2020-02-14 23:05:54 +08:00
[r3.0b1]: https://github.com/ossrs/srs/releases/tag/v3.0-b1
2020-02-02 11:15:08 +08:00
[r3.0b0]: https://github.com/ossrs/srs/releases/tag/v3.0-b0
2020-01-21 16:14:15 +08:00
[r3.0a9]: https://github.com/ossrs/srs/releases/tag/v3.0-a9
2020-01-10 18:20:37 +08:00
[r3.0a8]: https://github.com/ossrs/srs/releases/tag/v3.0-a8
2019-12-29 19:05:15 +08:00
[r3.0a7]: https://github.com/ossrs/srs/releases/tag/v3.0-a7
2019-12-26 12:25:41 +08:00
[r3.0a6]: https://github.com/ossrs/srs/releases/tag/v3.0-a6
2019-12-19 15:38:24 +08:00
[r3.0a5]: https://github.com/ossrs/srs/releases/tag/v3.0-a5
2019-12-13 11:05:29 +08:00
[r3.0a4]: https://github.com/ossrs/srs/releases/tag/v3.0-a4
2019-12-01 19:30:08 +08:00
[r3.0a3]: https://github.com/ossrs/srs/releases/tag/v3.0-a3
2019-11-30 19:16:12 +08:00
[r3.0a2]: https://github.com/ossrs/srs/releases/tag/v3.0-a2
2019-10-07 20:24:28 +08:00
[r3.0a1]: https://github.com/ossrs/srs/releases/tag/v3.0-a1
2019-10-04 19:25:58 +08:00
[r3.0a0]: https://github.com/ossrs/srs/releases/tag/v3.0-a0
2020-01-25 12:56:01 +08:00
[r2.0r8]: https://github.com/ossrs/srs/releases/tag/v2.0-r8
2019-11-29 18:26:40 +08:00
[r2.0r7]: https://github.com/ossrs/srs/releases/tag/v2.0-r7
2019-04-05 20:09:23 +08:00
[r2.0r6]: https://github.com/ossrs/srs/releases/tag/v2.0-r6
2018-10-28 14:18:36 +08:00
[r2.0r5]: https://github.com/ossrs/srs/releases/tag/v2.0-r5
2018-08-12 12:03:31 +08:00
[r2.0r4]: https://github.com/ossrs/srs/releases/tag/v2.0-r4
2018-07-18 20:27:54 +08:00
[r2.0r3]: https://github.com/ossrs/srs/releases/tag/v2.0-r3
2017-06-10 08:59:14 +08:00
[r2.0r2]: https://github.com/ossrs/srs/releases/tag/v2.0-r2
2017-04-18 21:08:31 +08:00
[r2.0r1]: https://github.com/ossrs/srs/releases/tag/v2.0-r1
2017-03-02 21:41:15 +08:00
[r2.0r0]: https://github.com/ossrs/srs/releases/tag/v2.0-r0
2017-01-18 12:13:49 +08:00
[r2.0b4]: https://github.com/ossrs/srs/releases/tag/v2.0-b4
2016-12-13 19:07:22 +08:00
[r2.0b3]: https://github.com/ossrs/srs/releases/tag/v2.0-b3
2016-11-09 09:43:51 +08:00
[r2.0b2]: https://github.com/ossrs/srs/releases/tag/v2.0-b2
2016-09-09 14:26:16 +08:00
[r2.0b1]: https://github.com/ossrs/srs/releases/tag/v2.0-b1
2016-08-06 16:44:33 +08:00
[r2.0b0]: https://github.com/ossrs/srs/releases/tag/v2.0-b0
2015-12-23 09:58:17 +08:00
[r2.0a3]: https://github.com/ossrs/srs/releases/tag/v2.0-a3
2015-11-11 10:37:50 +08:00
[r2.0a2]: https://github.com/ossrs/srs/releases/tag/v2.0-a2
2016-09-09 10:59:20 +08:00
[r2.0a1]: https://github.com/ossrs/srs/releases/tag/v2.0-a1
[r2.0a0]: https://github.com/ossrs/srs/releases/tag/v2.0-a0
[r1.0r4]: https://github.com/ossrs/srs/releases/tag/v1.0-r4
[r1.0r3]: https://github.com/ossrs/srs/releases/tag/v1.0-r3
[r1.0r2]: https://github.com/ossrs/srs/releases/tag/v1.0-r2
[r1.0r1]: https://github.com/ossrs/srs/releases/tag/v1.0-r1
[r1.0r0]: https://github.com/ossrs/srs/releases/tag/v1.0-r0
[r1.0b0]: https://github.com/ossrs/srs/releases/tag/v0.9.8
[r1.0a7]: https://github.com/ossrs/srs/releases/tag/v0.9.7
[r1.0a6]: https://github.com/ossrs/srs/releases/tag/v0.9.6
[r1.0a5]: https://github.com/ossrs/srs/releases/tag/v0.9.5
[r1.0a4]: https://github.com/ossrs/srs/releases/tag/v0.9.4
[r1.0a3]: https://github.com/ossrs/srs/releases/tag/v0.9.3
[r1.0a2]: https://github.com/ossrs/srs/releases/tag/v0.9.2
[r1.0a0]: https://github.com/ossrs/srs/releases/tag/v0.9.1
[r0.9]: https://github.com/ossrs/srs/releases/tag/v0.9.0
[r0.8]: https://github.com/ossrs/srs/releases/tag/v0.8.0
[r0.7]: https://github.com/ossrs/srs/releases/tag/v0.7.0
[r0.6]: https://github.com/ossrs/srs/releases/tag/v0.6.0
[r0.5]: https://github.com/ossrs/srs/releases/tag/v0.5.0
[r0.4]: https://github.com/ossrs/srs/releases/tag/v0.4.0
[r0.3]: https://github.com/ossrs/srs/releases/tag/v0.3.0
[r0.2]: https://github.com/ossrs/srs/releases/tag/v0.2.0
[r0.1]: https://github.com/ossrs/srs/releases/tag/v0.1.0
2015-11-11 10:37:50 +08:00
2021-04-28 12:23:52 +08:00
[v4_CN_Contact]: https://github.com/ossrs/srs/wiki/v4_CN_Contact
[v4_EN_Contact]: https://github.com/ossrs/srs/wiki/v4_EN_Contact
2015-05-23 14:43:55 +08:00
2021-05-31 13:36:30 +08:00
[LICENSE]: https://github.com/ossrs/srs/blob/4.0release/LICENSE
2017-05-24 14:14:45 +08:00
[LicenseMixing]: https://github.com/ossrs/srs/wiki/LicenseMixing