doc/ffserver.texi
c70a2119
 \input texinfo @c -*- texinfo -*-
bdd3c092
 
89b503b5
 @settitle ffserver Documentation
c70a2119
 @titlepage
89b503b5
 @center @titlefont{ffserver Documentation}
c70a2119
 @end titlepage
bdd3c092
 
a8f0814a
 @top
 
 @contents
 
a66d8cd9
 @chapter Synopsys
 
 The generic syntax is:
 
 @example
 @c man begin SYNOPSIS
 ffserver [options]
 @c man end
 @end example
bdd3c092
 
103578f2
 @chapter Description
e99c4e10
 @c man begin DESCRIPTION
103578f2
 
3a50894e
 ffserver is a streaming server for both audio and video. It supports
2e87b4c5
 
c70a2119
 several live feeds, streaming from files and time shifting on live feeds
 (you can seek to positions in the past on each live feed, provided you
 specify a big enough feed storage in ffserver.conf).
bdd3c092
 
3a50894e
 ffserver runs in daemon mode by default; that is, it puts itself in
60b51bb2
 the background and detaches from its TTY, unless it is launched in
 debug mode or a NoDaemon option is specified in the configuration
 file.
 
c70a2119
 This documentation covers only the streaming aspects of ffserver /
 ffmpeg. All questions about parameters for ffmpeg, codec questions,
c59b80c8
 etc. are not covered here. Read @file{ffmpeg.html} for more
c70a2119
 information.
 
f26a60a0
 @section How does it work?
 
3a50894e
 ffserver receives prerecorded files or FFM streams from some ffmpeg
f26a60a0
 instance as input, then streams them over RTP/RTSP/HTTP.
 
 An ffserver instance will listen on some port as specified in the
 configuration file. You can launch one or more instances of ffmpeg and
 send one or more FFM streams to the port where ffserver is expecting
 to receive them. Alternately, you can make ffserver launch such ffmpeg
 instances at startup.
 
 Input streams are called feeds, and each one is specified by a <Feed>
 section in the configuration file.
 
 For each feed you can have different output streams in various
 formats, each one specified by a <Stream> section in the configuration
 file.
 
d45bad6c
 @section Status stream
 
3a50894e
 ffserver supports an HTTP interface which exposes the current status
d45bad6c
 of the server.
 
 Simply point your browser to the address of the special status stream
 specified in the configuration file.
 
 For example if you have:
 @example
 <Stream status.html>
 Format status
 
 # Only allow local people to get the status
 ACL allow localhost
 ACL allow 192.168.0.0 192.168.255.255
 </Stream>
 @end example
 
 then the server will post a page with the status information when
 the special stream @file{status.html} is requested.
 
c70a2119
 @section What can this do?
bdd3c092
 
 When properly configured and running, you can capture video and audio in real
 time from a suitable capture card, and stream it out over the Internet to
 either Windows Media Player or RealAudio player (with some restrictions).
 
 It can also stream from files, though that is currently broken. Very often, a
 web server can be used to serve up the files just as well.
 
ae98a915
 It can stream prerecorded video from .ffm files, though it is somewhat tricky
 to make it work correctly.
 
c70a2119
 @section What do I need?
bdd3c092
 
c27c66c3
 I use Linux on a 900 MHz Duron with a cheapo Bt848 based TV capture card. I'm
b1e4528b
 using stock Linux 2.4.17 with the stock drivers. [Actually that isn't true,
 I needed some special drivers for my motherboard-based sound card.]
bdd3c092
 
 I understand that FreeBSD systems work just fine as well.
 
c70a2119
 @section How do I make it work?
bdd3c092
 
 First, build the kit. It *really* helps to have installed LAME first. Then when
1cc60c47
 you run the ffserver ./configure, make sure that you have the
 @code{--enable-libmp3lame} flag turned on.
bdd3c092
 
3e4a1028
 LAME is important as it allows for streaming audio to Windows Media Player.
b1e4528b
 Don't ask why the other audio types do not work.
bdd3c092
 
bc2869f6
 As a simple test, just run the following two command lines where INPUTFILE
 is some file which you can decode with ffmpeg:
bdd3c092
 
c70a2119
 @example
9466237b
 ffserver -f doc/ffserver.conf &
 ffmpeg -i INPUTFILE http://localhost:8090/feed1.ffm
c70a2119
 @end example
bdd3c092
 
b1e4528b
 At this point you should be able to go to your Windows machine and fire up
115329f1
 Windows Media Player (WMP). Go to Open URL and enter
bdd3c092
 
c70a2119
 @example
bdd3c092
     http://<linuxbox>:8090/test.asf
c70a2119
 @end example
bdd3c092
 
115329f1
 You should (after a short delay) see video and hear audio.
bdd3c092
 
96c7b535
 WARNING: trying to stream test1.mpg doesn't work with WMP as it tries to
b1e4528b
 transfer the entire file before starting to play.
 The same is true of AVI files.
96c7b535
 
c70a2119
 @section What happens next?
bdd3c092
 
115329f1
 You should edit the ffserver.conf file to suit your needs (in terms of
bdd3c092
 frame rates etc). Then install ffserver and ffmpeg, write a script to start
 them up, and off you go.
 
c70a2119
 @section Troubleshooting
bdd3c092
 
b1e4528b
 @subsection I don't hear any audio, but video is fine.
bdd3c092
 
b1e4528b
 Maybe you didn't install LAME, or got your ./configure statement wrong. Check
 the ffmpeg output to see if a line referring to MP3 is present. If not, then
bdd3c092
 your configuration was incorrect. If it is, then maybe your wiring is not
115329f1
 set up correctly. Maybe the sound card is not getting data from the right
bdd3c092
 input source. Maybe you have a really awful audio interface (like I do)
115329f1
 that only captures in stereo and also requires that one channel be flipped.
 If you are one of these people, then export 'AUDIO_FLIP_LEFT=1' before
bdd3c092
 starting ffmpeg.
 
da9cea77
 @subsection The audio and video lose sync after a while.
bdd3c092
 
 Yes, they do.
 
c70a2119
 @subsection After a long while, the video update rate goes way down in WMP.
bdd3c092
 
 Yes, it does. Who knows why?
 
c70a2119
 @subsection WMP 6.4 behaves differently to WMP 7.
9cfe269e
 
 Yes, it does. Any thoughts on this would be gratefully received. These
 differences extend to embedding WMP into a web page. [There are two
758b4bcd
 object IDs that you can use: The old one, which does not play well, and
 the new one, which does (both tested on the same system). However,
9cfe269e
 I suspect that the new one is not available unless you have installed WMP 7].
 
c70a2119
 @section What else can it do?
bdd3c092
 
ae98a915
 You can replay video from .ffm files that was recorded earlier.
115329f1
 However, there are a number of caveats, including the fact that the
ae98a915
 ffserver parameters must match the original parameters used to record the
3e4a1028
 file. If they do not, then ffserver deletes the file before recording into it.
b1e4528b
 (Now that I write this, it seems broken).
bdd3c092
 
 You can fiddle with many of the codec choices and encoding parameters, and
 there are a bunch more parameters that you cannot control. Post a message
b1e4528b
 to the mailing list if there are some 'must have' parameters. Look in
bdd3c092
 ffserver.conf for a list of the currently available controls.
 
b1e4528b
 It will automatically generate the ASX or RAM files that are often used
 in browsers. These files are actually redirections to the underlying ASF
 or RM file. The reason for this is that the browser often fetches the
9cfe269e
 entire file before starting up the external viewer. The redirection files
 are very small and can be transferred quickly. [The stream itself is
115329f1
 often 'infinite' and thus the browser tries to download it and never
9cfe269e
 finishes.]
 
c70a2119
 @section Tips
bdd3c092
 
3e4a1028
 * When you connect to a live stream, most players (WMP, RA, etc) want to
bdd3c092
 buffer a certain number of seconds of material so that they can display the
 signal continuously. However, ffserver (by default) starts sending data
b1e4528b
 in realtime. This means that there is a pause of a few seconds while the
bdd3c092
 buffering is being done by the player. The good news is that this can be
3e4a1028
 cured by adding a '?buffer=5' to the end of the URL. This means that the
115329f1
 stream should start 5 seconds in the past -- and so the first 5 seconds
b1e4528b
 of the stream are sent as fast as the network will allow. It will then
bdd3c092
 slow down to real time. This noticeably improves the startup experience.
9cfe269e
 
 You can also add a 'Preroll 15' statement into the ffserver.conf that will
 add the 15 second prebuffering on all requests that do not otherwise
 specify a time. In addition, ffserver will skip frames until a key_frame
 is found. This further reduces the startup delay by not transferring data
 that will be discarded.
 
 * You may want to adjust the MaxBandwidth in the ffserver.conf to limit
 the amount of bandwidth consumed by live streams.
ce838977
 
c70a2119
 @section Why does the ?buffer / Preroll stop working after a time?
ce838977
 
 It turns out that (on my machine at least) the number of frames successfully
 grabbed is marginally less than the number that ought to be grabbed. This
b1e4528b
 means that the timestamp in the encoded data stream gets behind realtime.
 This means that if you say 'Preroll 10', then when the stream gets 10
 or more seconds behind, there is no Preroll left.
ce838977
 
115329f1
 Fixing this requires a change in the internals of how timestamps are
ce838977
 handled.
 
c70a2119
 @section Does the @code{?date=} stuff work.
ce838977
 
b1e4528b
 Yes (subject to the limitation outlined above). Also note that whenever you
 start ffserver, it deletes the ffm file (if any parameters have changed),
115329f1
 thus wiping out what you had recorded before.
ce838977
 
c70a2119
 The format of the @code{?date=xxxxxx} is fairly flexible. You should use one
ce838977
 of the following formats (the 'T' is literal):
 
c70a2119
 @example
ce838977
 * YYYY-MM-DDTHH:MM:SS     (localtime)
 * YYYY-MM-DDTHH:MM:SSZ    (UTC)
c70a2119
 @end example
ce838977
 
115329f1
 You can omit the YYYY-MM-DD, and then it refers to the current day. However
3e4a1028
 note that @samp{?date=16:00:00} refers to 16:00 on the current day -- this
 may be in the future and so is unlikely to be useful.
ce838977
 
 You use this by adding the ?date= to the end of the URL for the stream.
c70a2119
 For example:   @samp{http://localhost:8080/test.asf?date=2002-07-26T23:05:00}.
fb6b04aa
 @c man end
c70a2119
 
a66d8cd9
 @chapter Options
e99c4e10
 @c man begin OPTIONS
8b9da8b5
 
b3dd2010
 @include avtools-common-opts.texi
8b9da8b5
 
1bafdcbd
 @section Main options
 
8b9da8b5
 @table @option
a19caa0f
 @item -f @var{configfile}
b1e4528b
 Use @file{configfile} instead of @file{/etc/ffserver.conf}.
dea7da10
 @item -n
 Enable no-launch mode. This option disables all the Launch directives
3a50894e
 within the various <Stream> sections. Since ffserver will not launch
 any ffmpeg instances, you will have to launch them manually.
c1bb8f97
 @item -d
 Enable debug mode. This option increases log verbosity, directs log
d6fbdcec
 messages to stdout and causes ffserver to run in the foreground
c1bb8f97
 rather than as a daemon.
e99c4e10
 @end table
 @c man end
 
 @ignore
 
831ec935
 @setfilename ffserver
89b503b5
 @settitle ffserver video server
e99c4e10
 
 @c man begin SEEALSO
b26247ed
 
c59b80c8
 ffmpeg(1), ffplay(1), ffprobe(1), the @file{ffserver.conf}
a6be21d3
 example and the FFmpeg HTML documentation
e99c4e10
 @c man end
 
aeadb328
 @c man begin AUTHORS
a6be21d3
 The FFmpeg developers
e99c4e10
 @c man end
 
 @end ignore
 
c70a2119
 @bye