You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

792 lines
22KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle ffserver Documentation
  3. @titlepage
  4. @center @titlefont{ffserver Documentation}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter Synopsis
  9. ffserver [@var{options}]
  10. @chapter Description
  11. @c man begin DESCRIPTION
  12. @command{ffserver} is a streaming server for both audio and video.
  13. It supports several live feeds, streaming from files and time shifting
  14. on live feeds. You can seek to positions in the past on each live
  15. feed, provided you specify a big enough feed storage.
  16. @command{ffserver} is configured through a configuration file, which
  17. is read at startup. If not explicitly specified, it will read from
  18. @file{/etc/ffserver.conf}.
  19. @command{ffserver} receives prerecorded files or FFM streams from some
  20. @command{ffmpeg} instance as input, then streams them over
  21. RTP/RTSP/HTTP.
  22. An @command{ffserver} instance will listen on some port as specified
  23. in the configuration file. You can launch one or more instances of
  24. @command{ffmpeg} and send one or more FFM streams to the port where
  25. ffserver is expecting to receive them. Alternately, you can make
  26. @command{ffserver} launch such @command{ffmpeg} instances at startup.
  27. Input streams are called feeds, and each one is specified by a
  28. @code{<Feed>} section in the configuration file.
  29. For each feed you can have different output streams in various
  30. formats, each one specified by a @code{<Stream>} section in the
  31. configuration file.
  32. @section Status stream
  33. @command{ffserver} supports an HTTP interface which exposes the
  34. current status of the server.
  35. Simply point your browser to the address of the special status stream
  36. specified in the configuration file.
  37. For example if you have:
  38. @example
  39. <Stream status.html>
  40. Format status
  41. # Only allow local people to get the status
  42. ACL allow localhost
  43. ACL allow 192.168.0.0 192.168.255.255
  44. </Stream>
  45. @end example
  46. then the server will post a page with the status information when
  47. the special stream @file{status.html} is requested.
  48. @section How do I make it work?
  49. First, build the kit. It *really* helps to have installed LAME first. Then when
  50. you run the ffserver ./configure, make sure that you have the
  51. @code{--enable-libmp3lame} flag turned on.
  52. LAME is important as it allows for streaming audio to Windows Media Player.
  53. Don't ask why the other audio types do not work.
  54. As a simple test, just run the following two command lines where INPUTFILE
  55. is some file which you can decode with ffmpeg:
  56. @example
  57. ffserver -f doc/ffserver.conf &
  58. ffmpeg -i INPUTFILE http://localhost:8090/feed1.ffm
  59. @end example
  60. At this point you should be able to go to your Windows machine and fire up
  61. Windows Media Player (WMP). Go to Open URL and enter
  62. @example
  63. http://<linuxbox>:8090/test.asf
  64. @end example
  65. You should (after a short delay) see video and hear audio.
  66. WARNING: trying to stream test1.mpg doesn't work with WMP as it tries to
  67. transfer the entire file before starting to play.
  68. The same is true of AVI files.
  69. @section What happens next?
  70. You should edit the ffserver.conf file to suit your needs (in terms of
  71. frame rates etc). Then install ffserver and ffmpeg, write a script to start
  72. them up, and off you go.
  73. @section What else can it do?
  74. You can replay video from .ffm files that was recorded earlier.
  75. However, there are a number of caveats, including the fact that the
  76. ffserver parameters must match the original parameters used to record the
  77. file. If they do not, then ffserver deletes the file before recording into it.
  78. (Now that I write this, it seems broken).
  79. You can fiddle with many of the codec choices and encoding parameters, and
  80. there are a bunch more parameters that you cannot control. Post a message
  81. to the mailing list if there are some 'must have' parameters. Look in
  82. ffserver.conf for a list of the currently available controls.
  83. It will automatically generate the ASX or RAM files that are often used
  84. in browsers. These files are actually redirections to the underlying ASF
  85. or RM file. The reason for this is that the browser often fetches the
  86. entire file before starting up the external viewer. The redirection files
  87. are very small and can be transferred quickly. [The stream itself is
  88. often 'infinite' and thus the browser tries to download it and never
  89. finishes.]
  90. @section Tips
  91. * When you connect to a live stream, most players (WMP, RA, etc) want to
  92. buffer a certain number of seconds of material so that they can display the
  93. signal continuously. However, ffserver (by default) starts sending data
  94. in realtime. This means that there is a pause of a few seconds while the
  95. buffering is being done by the player. The good news is that this can be
  96. cured by adding a '?buffer=5' to the end of the URL. This means that the
  97. stream should start 5 seconds in the past -- and so the first 5 seconds
  98. of the stream are sent as fast as the network will allow. It will then
  99. slow down to real time. This noticeably improves the startup experience.
  100. You can also add a 'Preroll 15' statement into the ffserver.conf that will
  101. add the 15 second prebuffering on all requests that do not otherwise
  102. specify a time. In addition, ffserver will skip frames until a key_frame
  103. is found. This further reduces the startup delay by not transferring data
  104. that will be discarded.
  105. @section Why does the ?buffer / Preroll stop working after a time?
  106. It turns out that (on my machine at least) the number of frames successfully
  107. grabbed is marginally less than the number that ought to be grabbed. This
  108. means that the timestamp in the encoded data stream gets behind realtime.
  109. This means that if you say 'Preroll 10', then when the stream gets 10
  110. or more seconds behind, there is no Preroll left.
  111. Fixing this requires a change in the internals of how timestamps are
  112. handled.
  113. @section Does the @code{?date=} stuff work.
  114. Yes (subject to the limitation outlined above). Also note that whenever you
  115. start ffserver, it deletes the ffm file (if any parameters have changed),
  116. thus wiping out what you had recorded before.
  117. The format of the @code{?date=xxxxxx} is fairly flexible. You should use one
  118. of the following formats (the 'T' is literal):
  119. @example
  120. * YYYY-MM-DDTHH:MM:SS (localtime)
  121. * YYYY-MM-DDTHH:MM:SSZ (UTC)
  122. @end example
  123. You can omit the YYYY-MM-DD, and then it refers to the current day. However
  124. note that @samp{?date=16:00:00} refers to 16:00 on the current day -- this
  125. may be in the future and so is unlikely to be useful.
  126. You use this by adding the ?date= to the end of the URL for the stream.
  127. For example: @samp{http://localhost:8080/test.asf?date=2002-07-26T23:05:00}.
  128. @c man end
  129. @section What is FFM, FFM2
  130. FFM and FFM2 are formats used by ffserver. They allow storing a wide variety of
  131. video and audio streams and encoding options, and can store a moving time segment
  132. of an infinite movie or a whole movie.
  133. FFM is version specific, and there is limited compatibility of FFM files
  134. generated by one version of ffmpeg/ffserver and another version of
  135. ffmpeg/ffserver. It may work but it is not guaranteed to work.
  136. FFM2 is extensible while maintaining compatibility and should work between
  137. differing versions of tools. FFM2 is the default.
  138. @chapter Options
  139. @c man begin OPTIONS
  140. @include fftools-common-opts.texi
  141. @section Main options
  142. @table @option
  143. @item -f @var{configfile}
  144. Read configuration file @file{configfile}. If not specified it will
  145. read by default from @file{/etc/ffserver.conf}.
  146. @item -n
  147. Enable no-launch mode. This option disables all the @code{Launch}
  148. directives within the various @code{<Feed>} sections. Since
  149. @command{ffserver} will not launch any @command{ffmpeg} instances, you
  150. will have to launch them manually.
  151. @item -d
  152. Enable debug mode. This option increases log verbosity, and directs
  153. log messages to stdout. When specified, the @option{CustomLog} option
  154. is ignored.
  155. @end table
  156. @chapter Configuration file syntax
  157. @command{ffserver} reads a configuration file containing global
  158. options and settings for each stream and feed.
  159. The configuration file consists of global options and dedicated
  160. sections, which must be introduced by "<@var{SECTION_NAME}
  161. @var{ARGS}>" on a separate line and must be terminated by a line in
  162. the form "</@var{SECTION_NAME}>". @var{ARGS} is optional.
  163. Currently the following sections are recognized: @samp{Feed},
  164. @samp{Stream}, @samp{Redirect}.
  165. A line starting with @code{#} is ignored and treated as a comment.
  166. Name of options and sections are case-insensitive.
  167. @section ACL syntax
  168. An ACL (Access Control List) specifies the address which are allowed
  169. to access a given stream, or to write a given feed.
  170. It accepts the folling forms
  171. @itemize
  172. @item
  173. Allow/deny access to @var{address}.
  174. @example
  175. ACL ALLOW <address>
  176. ACL DENY <address>
  177. @end example
  178. @item
  179. Allow/deny access to ranges of addresses from @var{first_address} to
  180. @var{last_address}.
  181. @example
  182. ACL ALLOW <first_address> <last_address>
  183. ACL DENY <first_address> <last_address>
  184. @end example
  185. @end itemize
  186. You can repeat the ACL allow/deny as often as you like. It is on a per
  187. stream basis. The first match defines the action. If there are no matches,
  188. then the default is the inverse of the last ACL statement.
  189. Thus 'ACL allow localhost' only allows access from localhost.
  190. 'ACL deny 1.0.0.0 1.255.255.255' would deny the whole of network 1 and
  191. allow everybody else.
  192. @section Global options
  193. @table @option
  194. @item Port @var{port_number}
  195. @item RTSPPort @var{port_number}
  196. Set TCP port number on which the HTTP/RTSP server is listening. You
  197. must select a different port from your standard HTTP web server if it
  198. is running on the same computer.
  199. If not specified, no corresponding server will be created.
  200. @item BindAddress @var{ip_address}
  201. @item RTSPBindAddress @var{ip_address}
  202. Set address on which the HTTP/RTSP server is bound. Only useful if you
  203. have several network interfaces.
  204. @item MaxHTTPConnections @var{n}
  205. Set number of simultaneous HTTP connections that can be handled. It
  206. has to be defined @emph{before} the @option{MaxClients} parameter,
  207. since it defines the @option{MaxClients} maximum limit.
  208. Default value is 2000.
  209. @item MaxClients @var{n}
  210. Set number of simultaneous requests that can be handled. Since
  211. @command{ffserver} is very fast, it is more likely that you will want
  212. to leave this high and use @option{MaxBandwidth}.
  213. Default value is 5.
  214. @item MaxBandwidth @var{kbps}
  215. Set the maximum amount of kbit/sec that you are prepared to consume
  216. when streaming to clients.
  217. Default value is 1000.
  218. @item CustomLog @var{filename}
  219. Set access log file (uses standard Apache log file format). '-' is the
  220. standard output.
  221. If not specified @command{ffserver} will produce no log.
  222. In case the commandline option @option{-d} is specified this option is
  223. ignored, and the log is written to standard output.
  224. @item NoDaemon
  225. Set no-daemon mode. This option is currently ignored since now
  226. @command{ffserver} will work in no-daemon mode, and is deprecated.
  227. @end table
  228. @section Feed section
  229. A Feed section defines a feed provided to @command{ffserver}.
  230. Each live feed contains one video and/or audio sequence coming from an
  231. @command{ffmpeg} encoder or another @command{ffserver}. This sequence
  232. may be encoded simultaneously with several codecs at several
  233. resolutions.
  234. A feed instance specification is introduced by a line in the form:
  235. @example
  236. <Feed FEED_FILENAME>
  237. @end example
  238. where @var{FEED_FILENAME} specifies the unique name of the FFM stream.
  239. The following options are recognized within a Feed section.
  240. @table @option
  241. @item File @var{filename}
  242. @item ReadOnlyFile @var{filename}
  243. Set the path where the feed file is stored on disk.
  244. If not specified, the @file{/tmp/FEED.ffm} is assumed, where
  245. @var{FEED} is the feed name.
  246. If @option{ReadOnlyFile} is used the file is marked as read-only and
  247. it will not be deleted or updated.
  248. @item Truncate
  249. Truncate the feed file, rather than appending to it. By default
  250. @command{ffserver} will append data to the file, until the maximum
  251. file size value is reached (see @option{FileMaxSize} option).
  252. @item FileMaxSize @var{size}
  253. Set maximum size of the feed. 0 means unlimited. The postfixes
  254. @code{K}, @code{M}, and @code{G} are recognized.
  255. Default value is 5M.
  256. @item Launch @var{args}
  257. Launch an @command{ffmpeg} command when creating @command{ffserver}.
  258. @var{args} must be a sequence of arguments to be provided to an
  259. @command{ffmpeg} instance. The first provided argument is ignored, and
  260. it is replaced by a path with the same dirname of the @command{ffserver}
  261. instance, followed by the remaining argument and terminated with a
  262. path corresponding to the feed.
  263. When the launched process exits, @command{ffserver} will launch
  264. another program instance.
  265. In case you need a more complex @command{ffmpeg} configuration,
  266. e.g. if you need to generate multiple FFM feeds with a single
  267. @command{ffmpeg} instance, you should launch @command{ffmpeg} by hand.
  268. This option is ignored in case the commandline option @option{-n} is
  269. specified.
  270. @item ACL
  271. Specify the list of IP address which are allowed or denied to write
  272. the feed. Multiple ACL options can be specified.
  273. @end table
  274. @section Stream section
  275. A Stream section defines a stream provided by @command{ffserver}, and
  276. identified by a single name.
  277. The stream is sent when answering a request containing the stream
  278. name.
  279. A stream section must be introduced by the line:
  280. @example
  281. <Stream STREAM_NAME>
  282. @end example
  283. where @var{STREAM_NAME} specifies the unique name of the stream.
  284. The following options are recognized within a Stream section.
  285. Encoding options are marked with the @emph{encoding} tag, and they are
  286. used to set the encoding parameters, and are mapped to libavcodec
  287. encoding options. Not all encoding options are supported, in
  288. particular it is not possible to set encoder private options. In order
  289. to override the encoding options specified by @command{ffserver}, you
  290. can use the @command{ffmpeg} @option{override_ffserver} commandline
  291. option.
  292. @table @option
  293. @item Feed @var{feed_name}
  294. Set the input feed.
  295. Must be specified for regular streams.
  296. @item Format @var{format_name}
  297. Set the format of the output stream.
  298. Must be the name of a format recognized by FFmpeg. If set to
  299. @samp{status}, it is treated as a status stream.
  300. @item InputFormat @var{format_name}
  301. Set input format. If not specified, it is automatically guessed.
  302. @item Preroll @var{n}
  303. Set this to the number of seconds backwards in time to start. Note that
  304. most players will buffer 5-10 seconds of video, and also you need to allow
  305. for a keyframe to appear in the data stream.
  306. Default value is 0.
  307. @item StartSendOnKey
  308. Do not send stream until it gets the first key frame. By default
  309. @command{ffserver} will send data immediately.
  310. @item MaxTime @var{n}
  311. Set the number of seconds to run. This value set the maximum duration
  312. of the stream a client will be able to receive.
  313. A value of 0 means that no limit is set on the stream duration.
  314. @item ACL @var{spec}
  315. Set ACL for the stream.
  316. @item DynamicACL @var{spec}
  317. @item RTSPOtion @var{option}
  318. @item MulticastAddress @var{address}
  319. @item MulticastPort @var{port}
  320. @item MulticastTTL @var{integer}
  321. @item NoLoop
  322. @item FaviconURL @var{url}
  323. Set favicon (favourite icon) for the server status page. It is ignored
  324. for regular streams.
  325. @item Author @var{value}
  326. @item Comment @var{value}
  327. @item Copyright @var{value}
  328. @item Title @var{value}
  329. Set metadata corresponding to the option.
  330. @item NoAudio
  331. @item NoVideo
  332. Suppress audio/video.
  333. @item AudioCodec @var{codec_name} (@emph{encoding,audio})
  334. Set audio codec.
  335. @item AudioBitRate @var{rate} (@emph{encoding,audio})
  336. Set bitrate for the audio stream in kbits per second.
  337. @item AudioChannels @var{n} (@emph{encoding,audio})
  338. Set number of audio channels.
  339. @item AudioSampleRate @var{n} (@emph{encoding,audio})
  340. Set sampling frequency for audio. When using low bitrates, you should
  341. lower this frequency to 22050 or 11025. The supported frequencies
  342. depend on the selected audio codec.
  343. @item AVOptionAudio @var{option} @var{value} (@emph{encoding,audio})
  344. Set generic option for audio stream.
  345. @item AVPresetAudio @var{preset} (@emph{encoding,audio})
  346. Set preset for audio stream.
  347. @item VideoCodec @var{codec_name} (@emph{encoding,video})
  348. Set video codec.
  349. @item VideoBitRate @var{n} (@emph{encoding,video})
  350. Set bitrate for the video stream in kbits per second.
  351. @item VideoBitRateRange @var{range} (@emph{encoding,video})
  352. Set video bitrate range.
  353. A range must be specified in the form @var{minrate}-@var{maxrate}, and
  354. specifies the @option{minrate} and @option{maxrate} encoding options
  355. expressed in kbits per second.
  356. @item VideoBitRateRangeTolerance @var{n} (@emph{encoding,video})
  357. Set video bitrate tolerance in kbits per second.
  358. @item PixelFormat @var{pixel_format} (@emph{encoding,video})
  359. Set video pixel format.
  360. @item Debug @var{integer} (@emph{encoding,video})
  361. Set video @option{debug} encoding option.
  362. @item Strict @var{integer} (@emph{encoding,video})
  363. Set video @option{strict} encoding option.
  364. @item VideoBufferSize @var{n} (@emph{encoding,video})
  365. Set ratecontrol buffer size, expressed in KB.
  366. @item VideoFrameRate @var{n} (@emph{encoding,video})
  367. Set number of video frames per second.
  368. @item VideoSize (@emph{encoding,video})
  369. Set size of the video frame, must be an abbreviation or in the form
  370. @var{W}x@var{H}. See @ref{video size syntax,,the Video size section
  371. in the ffmpeg-utils(1) manual,ffmpeg-utils}.
  372. Default value is @code{160x128}.
  373. @item VideoIntraOnly (@emph{encoding,video})
  374. Transmit only intra frames (useful for low bitrates, but kills frame rate).
  375. @item VideoGopSize @var{n} (@emph{encoding,video})
  376. If non-intra only, an intra frame is transmitted every VideoGopSize
  377. frames. Video synchronization can only begin at an intra frame.
  378. @item VideoTag @var{tag} (@emph{encoding,video})
  379. Set video tag.
  380. @item VideoHighQuality (@emph{encoding,video})
  381. @item Video4MotionVector (@emph{encoding,video})
  382. @item BitExact (@emph{encoding,video})
  383. Set bitexact encoding flag.
  384. @item IdctSimple (@emph{encoding,video})
  385. Set simple IDCT algorithm.
  386. @item Qscale @var{n} (@emph{encoding,video})
  387. Enable constant quality encoding, and set video qscale (quantization
  388. scale) value, expressed in @var{n} QP units.
  389. @item VideoQMin @var{n} (@emph{encoding,video})
  390. @item VideoQMax @var{n} (@emph{encoding,video})
  391. Set video qmin/qmax.
  392. @item VideoQDiff @var{integer} (@emph{encoding,video})
  393. Set video @option{qdiff} encoding option.
  394. @item LumiMask @var{float} (@emph{encoding,video})
  395. @item DarkMask @var{float} (@emph{encoding,video})
  396. Set @option{lumi_mask}/@option{dark_mask} encoding options.
  397. @item AVOptionVideo @var{option} @var{value} (@emph{encoding,video})
  398. Set generic option for video stream.
  399. @item AVPresetVideo @var{preset} (@emph{encoding,video})
  400. Set preset for video stream.
  401. @var{preset} must be the path of a preset file.
  402. @end table
  403. @subsection Server status stream
  404. A server status stream is a special stream which is used to show
  405. statistics about the @command{ffserver} operations.
  406. It must be specified setting the option @option{Format} to
  407. @samp{status}.
  408. @section Redirect section
  409. A redirect section specifies where to redirect the requested URL to
  410. another page.
  411. A redirect section must be introduced by the line:
  412. @example
  413. <Redirect NAME>
  414. @end example
  415. where @var{NAME} is the name of the page which should be redirected.
  416. It only accepts the option @option{URL}, which specify the redirection
  417. URL.
  418. @chapter Stream examples
  419. @itemize
  420. @item
  421. Multipart JPEG
  422. @example
  423. <Stream test.mjpg>
  424. Feed feed1.ffm
  425. Format mpjpeg
  426. VideoFrameRate 2
  427. VideoIntraOnly
  428. NoAudio
  429. Strict -1
  430. </Stream>
  431. @end example
  432. @item
  433. Single JPEG
  434. @example
  435. <Stream test.jpg>
  436. Feed feed1.ffm
  437. Format jpeg
  438. VideoFrameRate 2
  439. VideoIntraOnly
  440. #VideoSize 352x240
  441. NoAudio
  442. Strict -1
  443. </Stream>
  444. @end example
  445. @item
  446. Flash
  447. @example
  448. <Stream test.swf>
  449. Feed feed1.ffm
  450. Format swf
  451. VideoFrameRate 2
  452. VideoIntraOnly
  453. NoAudio
  454. </Stream>
  455. @end example
  456. @item
  457. ASF compatible
  458. @example
  459. <Stream test.asf>
  460. Feed feed1.ffm
  461. Format asf
  462. VideoFrameRate 15
  463. VideoSize 352x240
  464. VideoBitRate 256
  465. VideoBufferSize 40
  466. VideoGopSize 30
  467. AudioBitRate 64
  468. StartSendOnKey
  469. </Stream>
  470. @end example
  471. @item
  472. MP3 audio
  473. @example
  474. <Stream test.mp3>
  475. Feed feed1.ffm
  476. Format mp2
  477. AudioCodec mp3
  478. AudioBitRate 64
  479. AudioChannels 1
  480. AudioSampleRate 44100
  481. NoVideo
  482. </Stream>
  483. @end example
  484. @item
  485. Ogg Vorbis audio:
  486. @example
  487. <Stream test.ogg>
  488. Feed feed1.ffm
  489. Title "Stream title"
  490. AudioBitRate 64
  491. AudioChannels 2
  492. AudioSampleRate 44100
  493. NoVideo
  494. </Stream>
  495. @end example
  496. @item
  497. Real with audio only at 32 kbits
  498. @example
  499. <Stream test.ra>
  500. Feed feed1.ffm
  501. Format rm
  502. AudioBitRate 32
  503. NoVideo
  504. NoAudio
  505. </Stream>
  506. @end example
  507. @item
  508. Real with audio and video at 64 kbits
  509. @example
  510. <Stream test.rm>
  511. Feed feed1.ffm
  512. Format rm
  513. AudioBitRate 32
  514. VideoBitRate 128
  515. VideoFrameRate 25
  516. VideoGopSize 25
  517. NoAudio
  518. </Stream>
  519. @end example
  520. @item
  521. For stream coming from a file: you only need to set the input filename
  522. and optionally a new format.
  523. @example
  524. <Stream file.rm>
  525. File "/usr/local/httpd/htdocs/tlive.rm"
  526. NoAudio
  527. </Stream>
  528. @end example
  529. @example
  530. <Stream file.asf>
  531. File "/usr/local/httpd/htdocs/test.asf"
  532. NoAudio
  533. Author "Me"
  534. Copyright "Super MegaCorp"
  535. Title "Test stream from disk"
  536. Comment "Test comment"
  537. </Stream>
  538. @end example
  539. @end itemize
  540. @c man end
  541. @include config.texi
  542. @ifset config-all
  543. @ifset config-avutil
  544. @include utils.texi
  545. @end ifset
  546. @ifset config-avcodec
  547. @include codecs.texi
  548. @include bitstream_filters.texi
  549. @end ifset
  550. @ifset config-avformat
  551. @include formats.texi
  552. @include protocols.texi
  553. @end ifset
  554. @ifset config-avdevice
  555. @include devices.texi
  556. @end ifset
  557. @ifset config-swresample
  558. @include resampler.texi
  559. @end ifset
  560. @ifset config-swscale
  561. @include scaler.texi
  562. @end ifset
  563. @ifset config-avfilter
  564. @include filters.texi
  565. @end ifset
  566. @end ifset
  567. @chapter See Also
  568. @ifhtml
  569. @ifset config-all
  570. @url{ffserver.html,ffserver},
  571. @end ifset
  572. @ifset config-not-all
  573. @url{ffserver-all.html,ffserver-all},
  574. @end ifset
  575. the @file{doc/ffserver.conf} example,
  576. @url{ffmpeg.html,ffmpeg}, @url{ffplay.html,ffplay}, @url{ffprobe.html,ffprobe},
  577. @url{ffmpeg-utils.html,ffmpeg-utils},
  578. @url{ffmpeg-scaler.html,ffmpeg-scaler},
  579. @url{ffmpeg-resampler.html,ffmpeg-resampler},
  580. @url{ffmpeg-codecs.html,ffmpeg-codecs},
  581. @url{ffmpeg-bitstream-filters.html,ffmpeg-bitstream-filters},
  582. @url{ffmpeg-formats.html,ffmpeg-formats},
  583. @url{ffmpeg-devices.html,ffmpeg-devices},
  584. @url{ffmpeg-protocols.html,ffmpeg-protocols},
  585. @url{ffmpeg-filters.html,ffmpeg-filters}
  586. @end ifhtml
  587. @ifnothtml
  588. @ifset config-all
  589. ffserver(1),
  590. @end ifset
  591. @ifset config-not-all
  592. ffserver-all(1),
  593. @end ifset
  594. the @file{doc/ffserver.conf} example, ffmpeg(1), ffplay(1), ffprobe(1),
  595. ffmpeg-utils(1), ffmpeg-scaler(1), ffmpeg-resampler(1),
  596. ffmpeg-codecs(1), ffmpeg-bitstream-filters(1), ffmpeg-formats(1),
  597. ffmpeg-devices(1), ffmpeg-protocols(1), ffmpeg-filters(1)
  598. @end ifnothtml
  599. @include authors.texi
  600. @ignore
  601. @setfilename ffserver
  602. @settitle ffserver video server
  603. @end ignore
  604. @bye