Skip to content

Commit

Permalink
Fix build fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Nov 15, 2023
1 parent 151b61d commit 4daba01
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ media server, using [SRS](https://github.com/ossrs/srs) or [NGINX-RTMP](https://
that host stream does not rely on other service providers. But if we want to build a online video streaming
service, it's much more than only a media server:

1. [Authentication](./2023-08-29-Ensuring-Authentication-for-Live-Streaming-Publishing.md): Because the server is on the public internet with a public IPv4 address, how to do authentication? How to block all users except they have the correct token?
1. [Authentication](./2023-08-29-SRS-Stack-Ensuring-Authentication-for-Live-Streaming-Publishing.md): Because the server is on the public internet with a public IPv4 address, how to do authentication? How to block all users except they have the correct token?
1. Multiple Protocols: Rather than publishing RTMP using OBS, you might need [WebRTC or H5 to publish live streaming](https://blog.ossrs.io/how-to-live-streaming-on-youtube-via-rtmp-or-rtmps-using-a-web-browser-e05819ee2228), or [OBS WHIP Server](https://blog.ossrs.io/experience-ultra-low-latency-live-streaming-with-obs-whip-9cdcd7874daf) for it's easy to use. You might also use [SRT](https://www.srtalliance.org) with some broadcasting devices. How to convert RTMP/WebRTC/SRT to HLS?
1. [Restreaming](./2023-09-09-Multi-Platform-Streaming.md) and [DVR](./2023-09-10-Record-Live-Streaming.md): To help you boost engagement and reach, you could connect other service providers to restream, such as YouTube, Twitch and Facebook. Well, DVR allows you to continue engagement after live events have ended, generating revenue via VoD(on-demand video).
1. [Transcoding](./2023-10-21-Live-Transcoding.md): Optimizes streaming for viewers with different internet speeds and devices, reduces bandwidth usage, and saves costs.
1. [Virtual Live Events](./2023-09-11-Virtual-Live-Events.md): Create seamless and engaging live streaming experiences using pre-recorded content for various applications, such as e-commerce, education, and online speeches.
1. [IP Camera Streaming](./2023-10-11-Stream-IP-Camera-Events.md): Effortlessly stream your RTSP IP camera to popular platforms like YouTube, Twitch, or Facebook.
1. [Restreaming](./2023-09-09-SRS-Stack-Multi-Platform-Streaming.md) and [DVR](./2023-09-10-SRS-Stack-Record-Live-Streaming.md): To help you boost engagement and reach, you could connect other service providers to restream, such as YouTube, Twitch and Facebook. Well, DVR allows you to continue engagement after live events have ended, generating revenue via VoD(on-demand video).
1. [Transcoding](./2023-10-21-SRS-Stack-Live-Transcoding.md): Optimizes streaming for viewers with different internet speeds and devices, reduces bandwidth usage, and saves costs.
1. [Virtual Live Events](./2023-09-11-SRS-Stack-Virtual-Live-Events.md): Create seamless and engaging live streaming experiences using pre-recorded content for various applications, such as e-commerce, education, and online speeches.
1. [IP Camera Streaming](./2023-10-11-SRS-Stack-Stream-IP-Camera-Events.md): Effortlessly stream your RTSP IP camera to popular platforms like YouTube, Twitch, or Facebook.

Literally it's not just a media server, and seems a bit complicated, right? Yep and No!

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ use transcoding to convert the 8Mbps stream into a 2Mbps live stream.
![](/img/blog-2023-10-21-02.png)

After transcoding the stream, you can preview the 2Mbps version or forward it to another live streaming platform.
See [Easily Stream Your RTSP IP Camera to YouTube, Twitch, or Facebook](./2023-10-11-Stream-IP-Camera-Events.md)
See [Easily Stream Your RTSP IP Camera to YouTube, Twitch, or Facebook](./2023-10-11-SRS-Stack-Stream-IP-Camera-Events.md)
for more information. You can also pull the RTMP stream from SRS Stack and forward it elsewhere.

## Check Transcoding Status
Expand All @@ -79,7 +79,7 @@ You can check the transcoding status in the SRS Stack dashboard.
![](/img/blog-2023-10-21-03.png)

You can click the preview link to check the transcoded stream, or forward it to another live streaming platform.
See [Easily Stream Your RTSP IP Camera to YouTube, Twitch, or Facebook](./2023-10-11-Stream-IP-Camera-Events.md)
See [Easily Stream Your RTSP IP Camera to YouTube, Twitch, or Facebook](./2023-10-11-SRS-Stack-Stream-IP-Camera-Events.md)
for more information.

## TRTC Cloud Service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ docker run --rm -it --name srs-stack -v $HOME/data:/data \
![](/img/blog-2023-10-21-05.png)

转码流后,您可以预览 2Mbps 版本或将其转发到另一个直播平台。
请参阅[如何做RTSP监控摄像头直播](./2023-10-11-Stream-IP-Camera-Events.md)
请参阅[如何做RTSP监控摄像头直播](./2023-10-11-SRS-Stack-Stream-IP-Camera-Events.md)
了解更多信息。您还可以从 SRS Stack 拉取 RTMP 流并将其转发到其他地方。

## Check Transcoding Status
Expand All @@ -69,7 +69,7 @@ docker run --rm -it --name srs-stack -v $HOME/data:/data \
![](/img/blog-2023-10-21-06.png)

您可以点击预览链接检查转码流,或将其转发到另一个直播平台。
请参阅[如何做RTSP监控摄像头直播](./2023-10-11-Stream-IP-Camera-Events.md)
请参阅[如何做RTSP监控摄像头直播](./2023-10-11-SRS-Stack-Stream-IP-Camera-Events.md)
了解更多信息。

## Conclusion
Expand Down

0 comments on commit 4daba01

Please sign in to comment.