Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. ffserver command line:
  2.  
  3. ffserver -f ffserver.conf
  4.  
  5.  
  6. ffmpeg command line:
  7.  
  8. ffmpeg -i default.sdp http://localhost:8090/feed1.ffm
  9.  
  10.  
  11. ffserver configuration:
  12.  
  13. ffmpeg -i default.sdp http://localhost:8090/feed1.ffm
  14.  
  15. Port 8090
  16. #BindAddress 0.0.0.0
  17. MaxHTTPConnections 2000
  18. MaxClients 1000
  19. MaxBandwidth 1000
  20. CustomLog -
  21. NoDaemon
  22.  
  23. <Feed feed1.ffm>
  24. #ffmpeg http://localhost:8090/feed1.ffm
  25. File /tmp/feed1.ffm
  26. FileMaxSize 50M
  27. #Launch ffmpeg -i default.sdp
  28. ACL allow 127.0.0.1
  29. </Feed>
  30.  
  31. <Stream test1.mpeg>
  32. Feed feed1.ffm
  33. Format avi
  34. VideoBitRate 64
  35. VideoBufferSize 40
  36. VideoFrameRate 10
  37. VideoSize 352x240
  38. VideoGopSize 12
  39. NoAudio
  40. #Preroll 15
  41. ACL allow 1.0.0.0 255.255.255.255
  42. </Stream>
  43.  
  44. #Server status
  45. <Stream stat.html>
  46. Format status
  47. ACL allow localhost
  48. ACL allow 192.168.0.0 192.168.255.255
  49. </Stream>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement