yongyong-e

[530/710] Video Streaming with ARTIK 본문

임베디드/ARTIK

[530/710] Video Streaming with ARTIK

Yonghan Kim 2017. 11. 14. 11:35

RTSP 서버로 영상 스트리밍하기

ffmpeg 패키지 설치

ubuntu :

apt install ffmpeg

fedora :

dnf install ffmpeg


ffserver.conf 파일 구성


Port 8090 BindAddress 0.0.0.0 RTSPPort 8091 RTSPBindAddress 0.0.0.0 MaxClients 1000 MaxBandwidth 10000 CustomLog - <Feed feed1.ffm> File /tmp/feed1.ffm ACL Allow 127.0.0.1 </Feed> <Stream test1.mp4> Feed feed1.ffm Format rtp VideoFrameRate 30 VideoBitRate 5000 VideoSize 640x480 VideoQMin 3 VideoQMax 31 NoAudio NoDefaults </Stream>



실행

ffserver -f ffserver.conf &

ffmpeg -f v4l2 -s 640x480 -r 30 -i /dev/video0 http://localhost:8090/feed1.ffm


Comments