Advertisement
Guest User

Untitled

a guest
May 9th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1.  
  2. # Port on which the server is listening. You must select a different
  3. # port from your standard HTTP web server if it is running on the same
  4. # computer.
  5. Port 8090
  6.  
  7. # Address on which the server is bound. Only useful if you have
  8. # several network interfaces.
  9. BindAddress 0.0.0.0
  10.  
  11. # Number of simultaneous HTTP connections that can be handled. It has
  12. # to be defined *before* the MaxClients parameter, since it defines the
  13. # MaxClients maximum limit.
  14. MaxHTTPConnections 2000
  15.  
  16. # Number of simultaneous requests that can be handled. Since FFServer
  17. # is very fast, it is more likely that you will want to leave this high
  18. # and use MaxBandwidth, below.
  19. MaxClients 1000
  20.  
  21. # This the maximum amount of kbit/sec that you are prepared to
  22. # consume when streaming to clients.
  23. MaxBandwidth 1000000
  24.  
  25. # Access log file (uses standard Apache log file format)
  26. # '-' is the standard output.
  27. CustomLog -
  28.  
  29. # Suppress that if you want to launch ffserver as a daemon.
  30. NoDaemon
  31.  
  32.  
  33. ##################################################################
  34. # Definition of the live feeds. Each live feed contains one video
  35. # and/or audio sequence coming from an ffmpeg encoder or another
  36. # ffserver. This sequence may be encoded simultaneously with several
  37. # codecs at several resolutions.
  38. <Feed feed.ffm>
  39. File /tmp/feed.ffm
  40. FileMaxSize 1024M
  41. ACL allow 127.0.0.1
  42. </Feed>
  43.  
  44. <Stream feed.ogg>
  45. Feed feed.ffm
  46. Format ogg
  47. VideoFrameRate 24
  48. VideoSize 576x432
  49. VideoBitRate 512k
  50. VideoBufferSize 1024
  51. AudioSampleRate 44100
  52. AudioChannels 2
  53. AudioBitRate 64k
  54. AudioCodec libvorbis
  55. VideoCodec libtheora
  56. VideoQMin 1
  57. VideoQMax 31
  58. VideoGopSize 12
  59. Preroll 0
  60. AVOptionVideo flags +global_header
  61. AVOptionAudio flags +global_header
  62. </Stream>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement