1 # Port on which the server is listening. You must select a different
2 # port from your standard http web server if it is running on the same
7 # Address on which the server is bound. Only useful if you have
8 # several network interfaces.
12 # Number of simultaneous requests that can be handled. Since FFServer
13 # is very fast, this limit is determined mainly by your Internet
18 # This the maximum amount of kbit/sec that you are prepared to
19 # consume when streaming to clients
23 # Access Log file (uses standard Apache log file format)
24 # '-' is the standard output
28 # Suppress that if you want to launch ffserver as a daemon
31 ##################################################################
32 # Definition of the live feeds. Each live feed contains one video
33 # and/or audio sequence coming from an ffmpeg encoder or another
34 # ffserver. This sequence may be encoded simultaneously with several
35 # codecs at several resolutions.
39 # You must use 'ffmpeg' to send a live feed to ffserver. In this
40 # example, you can type:
42 # ffmpeg http://localhost:8090/feed1.ffm
44 # ffserver can also do time shifting. It means that it can stream any
45 # previously recorded live stream. The request should contain:
46 # "http://xxxx?date=[YYYY-MM-DDT][[HH:]MM:]SS[.m...]".You must specify
47 # a path where the feed is stored on disk. You also specify the
48 # maximum size of the feed (100M bytes here). Default:
49 # File=/tmp/feed_name.ffm FileMaxSize=5M
54 # Specify launch in order to start ffmpeg automatically
59 ##################################################################
60 # Now you can define each stream which will be generated from the
61 # original audio and video stream. Each format has a filename (here
62 # 'test128.mpg'). FFServer will send this stream when answering a
63 # request containing this filename.
67 # coming from live feed 'feed1'
70 # Format of the stream : you can choose among:
71 # mpeg : MPEG1 multiplexed video and audio
72 # mpegvideo : only MPEG1 video
73 # mp2 : MPEG audio layer 2
74 # mp3 : MPEG audio layer 3 (currently sent as layer 2)
75 # rm : Real Networks compatible stream. Multiplexed audio and video.
76 # ra : Real Networks compatible stream. Audio only.
77 # mpjpeg : Multipart JPEG (works with Netscape without any plugin)
78 # jpeg : Generate a single JPEG image.
79 # asf : ASF compatible stream (Windows Media Player format). Not finished yet.
80 # swf : Macromedia flash(tm) compatible stream
81 # avi : AVI format (open divx video, mpeg audio sound)
82 # master : special ffmpeg stream used to duplicate a server
86 # Bitrate for the audio stream. Codecs usually support only a few different bitrates.
90 # Number of audio channels : 1 = mono, 2 = stereo
94 # Sampling frequency for audio. When using low bitrates, you should
95 # lower this frequency to 22050 or 11025. The supported frequencies
96 # depend on the selected audio codec.
100 # Bitrate for the video stream.
103 # Number of frames per second
106 # Size of the video frame : WxH (default: 160x128)
107 # W : width, H : height
108 # The following abbreviation are defined : sqcif, qcif, cif, 4cif
111 # transmit only intra frames (useful for low bitrates, but kills frame rate)
114 # If non intra only, an intra frame is transmitted every VideoGopSize
115 # frames Video synchronization can only begin at an I frames.
118 # Choose your codecs:
121 #VideoCodec mpeg1video
132 # Set this to the number of seconds backwards in time to start. Note that
133 # most players will buffer 5-10 seconds of video, and also you need to allow
134 # for a key frame to appear in the data stream.
139 # second mpeg stream with high frame rate
151 ##################################################################
152 # A stream coming from a file : you only need to set the input
153 # filename and optionnally a new format. Supported conversions:
157 # another file streaming
160 File "/usr/local/httpd/htdocs/tlive.rm"
167 File "/usr/local/httpd/htdocs/test.asf"
170 Copyright "Super MegaCorp"
171 Title "Test stream from disk"
172 Comment "Test comment"
176 ##################################################################
177 # Another stream : Real with audio only at 32 kbits
189 ##################################################################
190 # Another stream : Real with audio and video at 64 kbits
218 ##################################################################
219 # Another stream : Multipart JPEG
232 ##################################################################
233 # Another stream : Multipart JPEG
240 ## the parameters are choose here to take the same output as the
241 ## Multipart JPEG one.
249 ##################################################################
250 # Another stream : Flash
264 ##################################################################
265 # Another stream : ASF compatible
309 ##################################################################
312 # You can access to this stream with the RTSP URL:
314 # rtsp://localhost:5454/test1-rtsp.mpg
316 # A non standard redirector is also created. Its URL is:
318 # http://localhost:8090/test1-rtsp.rtsp
320 #<Stream test1-rtsp.mpg>
323 #File "/usr/local/httpd/htdocs/test1.mpg"
327 ##################################################################
328 # Special stream : server status
334 FaviconURL http://pond1.gladstonefamily.net:8080/favicon.ico
339 <Redirect index.html>
340 # maps index.html to the appropriate site
341 URL http://ffmpeg.sourceforge.net/