Port 8090
# bind to all IPs aliased or not
BindAddress 0.0.0.0
# max number of simultaneous clients
MaxClients 1000
# max bandwidth per-client (kb/s)
MaxBandwidth 10000

<Feed feed1.ffm>
	File /tmp/feed1.ffm
	FileMaxSize 5M
</Feed>

# SWF output - great for testing
<Stream test.swf>
	# the source feed
	Feed feed1.ffm
	# the output stream format - SWF = flash
	Format swf
	# this must match the ffmpeg -r argument
	VideoFrameRate 4
	# generally leave this is a large number
	VideoBufferSize 80000
	# another quality tweak
	VideoBitRate 500
	# quality ranges - 1-31 (1 = best, 31 = worst)
	VideoQMin 1
	VideoQMax 5
	VideoSize 320x240
	# this sets how many seconds in past to start
	PreRoll 0
	# wecams don't have audio
	NoAudio
</Stream>

# FLV output - good for streaming
<Stream test.flv>
	# the source feed
	Feed feed1.ffm
	# the output stream format - FLV = FLash Video
	Format flv
	VideoCodev flv
	# this must match the ffmpeg -r argument
	VideoFrameRate 4
	# generally leave this is a large number
	VideoBufferSize 80000
	# another quality tweak
	VideoBitRate 500
	# quality ranges - 1-31 (1 = best, 31 = worst)
	VideoQMin 1
	VideoQMax 5
	VideoSize 320x240
	# this sets how many seconds in past to start
	PreRoll 0
	# wecams don't have audio
	NoAudio
</Stream>

<Stream stat.html>
	Format status
</Stream>

<Redirect index.html>
	# credits!
	URL http://ffmpeg.sourceforge.net/
</Redirect>

