From eedfae7af8312b372ccf72381f4c66805ebf7fbc Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sun, 17 Nov 2019 21:55:54 +0100 Subject: [PATCH] rtmpdump: add page (#3551) --- pages/common/rtmpdump.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/rtmpdump.md diff --git a/pages/common/rtmpdump.md b/pages/common/rtmpdump.md new file mode 100644 index 0000000000..a58648af40 --- /dev/null +++ b/pages/common/rtmpdump.md @@ -0,0 +1,20 @@ +# rtmpdump + +> A tool to dump media content streamed over the RTMP protocol. +> More information: . + +- 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}}`