20 lines
1.0 KiB
Markdown
20 lines
1.0 KiB
Markdown
# SRT clients
|
|
|
|
| | supported codecs |
|
|
| --------- | ----------------------------------------------------- |
|
|
| **video** | H265, H264, MPEG-4 Video (H263, Xvid), MPEG-1/2 Video |
|
|
| **audio** | Opus, MPEG-4 Audio (AAC), MPEG-1/2 Audio (MP3), AC-3 |
|
|
| **other** | KLV |
|
|
|
|
SRT is a protocol that allows to publish and read live data stream, providing encryption, integrity and a retransmission mechanism. It is usually used to transfer media streams encoded with MPEG-TS. In order to read a stream from the server with the SRT protocol, use this URL:
|
|
|
|
```
|
|
srt://localhost:8890?streamid=read:mystream
|
|
```
|
|
|
|
Replace `mystream` with the path name.
|
|
|
|
If you need to use the standard stream ID syntax instead of the custom one in use by this server, read [Standard stream ID syntax](../2-features/24-srt-specific-features.md#standard-stream-id-syntax).
|
|
|
|
Some clients that can read with SRT are [FFmpeg](08-ffmpeg.md), [GStreamer](09-gstreamer.md) and [VLC](10-vlc.md).
|