mirror of
https://github.com/matthew1000/gstreamer-cheat-sheet.git
synced 2024-11-21 16:00:59 +00:00
Tweak RTMP wording
This commit is contained in:
parent
031b7c4c72
commit
5a3ecebeb6
1 changed files with 2 additions and 2 deletions
4
rtmp.md
4
rtmp.md
|
@ -120,7 +120,7 @@ The examples below use the `RTMP_DEST` environment variable. You can set it to r
|
|||
export RTMP_DEST="rtmp://example.com/live/test"
|
||||
```
|
||||
|
||||
If you're using [Nginx RTMP](https://github.com/arut/nginx-rtmp-module), the name you give your application needs to be the first part of the URL path. For example, if your NGINX configuration is:
|
||||
If you're using [Nginx RTMP](https://github.com/arut/nginx-rtmp-module), the name configured for your application needs to be the first part of the URL path. For example, if your NGINX configuration is:
|
||||
|
||||
```
|
||||
rtmp {
|
||||
|
@ -136,7 +136,7 @@ rtmp {
|
|||
}
|
||||
```
|
||||
|
||||
then your URL will be `rtmp://your-domain.com/livestream/whatever-you-want`.
|
||||
then the application name is `livestream`, and so your URL will be `rtmp://<your-domain>/livestream/<stream-name>`.
|
||||
|
||||
### Sending a test stream to an RTMP server
|
||||
|
||||
|
|
Loading…
Reference in a new issue