Commit b4c92e94 authored by Samuel Pitoiset's avatar Samuel Pitoiset Committed by Martin Storsjö

doc: Add documentation for the newly added rtmp_* options

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent bcbb30e2
...@@ -179,11 +179,46 @@ The number of the TCP port to use (by default is 1935). ...@@ -179,11 +179,46 @@ The number of the TCP port to use (by default is 1935).
@item app @item app
It is the name of the application to access. It usually corresponds to It is the name of the application to access. It usually corresponds to
the path where the application is installed on the RTMP server the path where the application is installed on the RTMP server
(e.g. @file{/ondemand/}, @file{/flash/live/}, etc.). (e.g. @file{/ondemand/}, @file{/flash/live/}, etc.). You can override
the value parsed from the URI through the @code{rtmp_app} option, too.
@item playpath @item playpath
It is the path or name of the resource to play with reference to the It is the path or name of the resource to play with reference to the
application specified in @var{app}, may be prefixed by "mp4:". application specified in @var{app}, may be prefixed by "mp4:". You
can override the value parsed from the URI through the @code{rtmp_playpath}
option, too.
@end table
Additionally, the following parameters can be set via command line options
(or in code via @code{AVOption}s):
@table @option
@item rtmp_app
Name of application to connect on the RTMP server. This option
overrides the parameter specified in the URI.
@item rtmp_flashver
Version of the Flash plugin used to run the SWF player. The default
is LNX 9,0,124,2.
@item rtmp_live
Specify that the media is a live stream. No resuming or seeking in
live streams is possible. The default value is @code{any}, which means the
subscriber first tries to play the live stream specified in the
playpath. If a live stream of that name is not found, it plays the
recorded stream. The other possible values are @code{live} and
@code{recorded}.
@item rtmp_playpath
Stream identifier to play or to publish. This option overrides the
parameter specified in the URI.
@item rtmp_swfurl
URL of the SWF player for the media. By default no value will be sent.
@item rtmp_tcurl
URL of the target stream.
@end table @end table
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment