Advertisement
hike85

FFMPEG Configuration

Mar 9th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. libavutil 55. 17.103 / 55. 17.103
  2. libavcodec 57. 24.102 / 57. 24.102
  3. libavformat 57. 25.100 / 57. 25.100
  4. libavdevice 57. 0.101 / 57. 0.101
  5. libavfilter 6. 31.100 / 6. 31.100
  6. libswscale 4. 0.100 / 4. 0.100
  7. libswresample 2. 0.101 / 2. 0.101
  8. libpostproc 54. 0.100 / 54. 0.100
  9.  
  10. ffmpeg_stream.sh
  11. bin/ffmpeg -loglevel 'debug' -f avfoundation -pix_fmt uyvy422 -r 15 -i "default" http://localhost:8000/live.ffm
  12.  
  13. ffmpeg_server.sh
  14. bin/ffserver -loglevel debug -f bin/ffserver.conf
  15.  
  16. bin/ffserver.conf
  17. HTTPBindAddress 0.0.0.0
  18. RTSPBindAddress 0.0.0.0
  19. HTTPPort 8000
  20. RTSPPort 9000
  21.  
  22. MaxBandwidth 10000
  23.  
  24. <Feed live.ffm>
  25. File /tmp/live.ffm
  26. FileMaxSize 20M
  27. ACL allow 127.0.0.1
  28. ACL allow localhost
  29. ACL allow 192.168.88.0 192.168.255.255
  30. </Feed>
  31.  
  32. <Stream live.h264>
  33. Feed live.ffm
  34. NoAudio
  35. Format rtp
  36.  
  37. VideoQMin 1
  38. VideoQMax 31
  39. VideoSize 1280x720
  40. VideoCodec libx264
  41. VideoBitRate 640
  42. VideoFrameRate 15
  43. AVOptionVideo flags +global_header
  44. </Stream>
  45.  
  46. <Stream status.html>
  47. Format status
  48.  
  49. # Only allow local people to get the status
  50. ACL allow localhost
  51. ACL allow 192.168.88.0 192.168.255.255
  52. </Stream>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement