1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:42:07 +02:00
tldr/pages/common/rtmpdump.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

20 lines
755 B
Markdown

# rtmpdump
> Dump media content streamed over the RTMP protocol.
> More information: <http://rtmpdump.mplayerhq.hu/>.
- Download a file:
`rtmpdump --rtmp {{rtmp://example.com/path/to/video}} -o {{file.ext}}`
- Download a file from a Flash player:
`rtmpdump --rtmp {{rtmp://example.com/path/to/video}} --swfVfy {{http://example.com/player}} --flashVer "{{LNX 10,0,32,18}}" -o {{file.ext}}`
- Specify connection parameters if they are not detected correctly:
`rtmpdump --rtmp {{rtmp://example.com/path/to/video}} --app {{app_name}} --playpath {{path/to/video}} -o {{file.ext}}`
- Download a file from a server that requires a referrer:
`rtmpdump --rtmp {{rtmp://example.com/path/to/video}} --pageUrl {{http://example.com/webpage}} -o {{file.ext}}`