Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. Here is my ffserver.conf.
  2.  
  3. Port 9090
  4. MaxHTTPConnections 2000
  5. MaxClients 1000
  6. MaxBandwidth 1000
  7. CustomLog -
  8. NoDaemon
  9.  
  10. <Feed feed1.ffm>
  11. File /tmp/feed1.ffm
  12. FileMaxSize 200K
  13. </Feed>
  14.  
  15. <Stream test1.mpg>
  16. Feed feed1.ffm
  17. Format mpeg
  18. </Stream>
  19.  
  20. I am getting a input stream of mjpeg (multipart jpeg at approx 3 frames per second)which I pipe to ffmpeg with below command.
  21. ./getJpgStream | ffmpeg -f image2 mjpeg -i - http://localhost:9090/feed1.ffm
  22.  
  23. Input #0, mjpeg, from 'pipe:':
  24. Duration: N/A, bitrate: N/A
  25. Stream #0:0: Video: mjpeg, yuvj444p(pc, bt470bg), 320x557, 25 tbr, 1200k tbn, 25 tbc
  26. Missing audio stream which is required by this ffm
  27.  
  28. It fails with mission audio error. Any ideas how to resolve this?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement