You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,33 +30,48 @@ Check the [configuration documentation](https://hexdocs.pm/shinkai/Shinkai.html)
29
30
[HLS](https://developer.apple.com/streaming/) (HTTP Live Streaming) is an http based protocol widely supported on many devices. It works by splitting the media stream into small chunks and serving them over HTTP.
30
31
31
32
You can access the generated HLS by hitting the web page at:
32
-
```
33
+
```bash
33
34
http://localhost:8888/hls/<stream_name>
34
35
```
35
36
36
37
or get the manifest file link and feed it to your player:
[RTMP](https://en.wikipedia.org/wiki/Real-Time_Messaging_Protocol) (Real-Time Messaging Protocol) is a protocol for streaming audio, video, and data over the internet. It is widely used for live streaming applications.
43
44
44
45
To publish a stream to the server using RTMP, you can use `ffmpeg`:
The stream will be available under the name `live-test` for playback.
50
51
52
+
To play any source using rtmp, you can use the source name as follows:
53
+
```bash
54
+
rtmp://localhost:1935/<stream_name>
55
+
```
56
+
57
+
### RTSP
58
+
[RTSP](https://en.wikipedia.org/wiki/Real_Time_Streaming_Protocol) (Real-Time Streaming Protocol) is an application-level network protocol designed for multiplexing and packetizing multimedia transport streams (such as interactive media, video and audio) over a suitable transport protocol.
59
+
60
+
To publish a stream to the server using RTSP, you can use `ffmpeg`:
0 commit comments