Advertisement
Guest User

Untitled

a guest
Oct 28th, 2011
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. Port 8090
  2. BindAddress 0.0.0.0
  3. MaxClients 1000
  4. MaxBandwidth 10000
  5. # Comment the following, on production use
  6. NoDaemon
  7.  
  8. <Feed feed1.ffm>
  9. File /tmp/feed1.ffm
  10. FileMaxSize 15000M
  11. Launch ffmpeg -r 7 -s 480x320 -f video4linux2 -i /dev/video0
  12. </Feed>
  13.  
  14. # FLV output
  15. <Stream test.flv>
  16. Feed feed1.ffm
  17. Format flv
  18. VideoCodec flv
  19. VideoFrameRate 7
  20. VideoBufferSize 80000
  21. VideoBitRate 128
  22. VideoQMin 1
  23. VideoQMax 1
  24. VideoSize 480x320
  25. PreRoll 0
  26. Noaudio
  27. </Stream>
  28.  
  29. # SWF output
  30. <Stream test.swf>
  31. Feed feed1.ffm
  32. Format swf
  33. VideoCodec flv
  34. VideoFrameRate 7
  35. VideoBitRate 128
  36. VideoQMin 5
  37. VideoQMin 5
  38. VideoSize 480x320
  39. PreRoll 0
  40. Noaudio
  41. </Stream>
  42.  
  43. # ASF output
  44. <Stream test.asf>
  45. # the source feed
  46. Feed feed1.ffm
  47. # the output stream format - ASF
  48. Format asf
  49. VideoCodec msmpeg4
  50. # this must match the ffmpeg -r argument
  51. VideoFrameRate 7
  52. # generally leave this is a large number
  53. VideoBufferSize 80000
  54. # another quality tweak
  55. VideoBitRate 128
  56. # quality ranges - 1-31 (1 = best, 31 = worst)
  57. VideoQMin 1
  58. VideoQMax 5
  59. VideoSize 352x288
  60. # this sets how many seconds in past to start
  61. PreRoll 0
  62. # wecams don't have audio
  63. Noaudio
  64. </Stream>
  65.  
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement