Advertisement
Guest User

Untitled

a guest
Feb 8th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. sudo rm temp_audio.v
  2. sudo rm temp_video.h264
  3. mkfifo temp_audio.v
  4. mkfifo temp_video.h264
  5. arecord -Dmic_sv -c2 -r48000 -fS32_LE -twav temp_audio.v & \
  6. raspivid -fps 10 -v -b 3000000 -o temp_video.h264 -t 0 & \
  7. ~/special/ffmpeg/ffmpeg \
  8. -framerate 10 \
  9. -re \
  10. -i temp_video.h264 \
  11. -i temp_audio.v \
  12. -ab 32k \
  13. -ac 2 \
  14. -c:v copy \
  15. -c:a aac \
  16. -report \
  17. -async 2 \
  18. -vsync 2 \
  19. -f flv rtmp://209.85.230.23/live2/xbjs-a3gp-0yvk-ftdg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement