DaewoongP / cerule-stream

Application Object detection using Neural Networks, Python and Open CV (with Raspberry pi)
1 stars 0 forks source link

[스트리밍]v4l2->dash #10

Closed safecorners closed 6 years ago

safecorners commented 6 years ago
leejihown commented 6 years ago

동영상 포맷과 코덱의 종류와 활용을 조사하고 스트리밍의 전체적인 연결과 구조를 알아보았습니다. 이미지나 설명을 정리하고 있습니다.

leejihown commented 6 years ago

ffmpeg nginx를 사용하여 dash 스트리밍을 하는 곳을 찾았습니다. Raspberry PI - HLS, DASH, FFmpeg streaming, nginx

safecorners commented 6 years ago

라즈베리파이 v4l2 설치 Camera driver(V4L2) 에 관한 간략한 설명

DaewoongP commented 6 years ago

라즈베리파이3B ffmpeg 하드웨어 가속

safecorners commented 6 years ago

ffmpeg 4.0.1 nginx 1.14.0 으로 설치해주세요

safecorners commented 6 years ago

Installing NGINX Open Source Nginx Installation and Compile-Time Options

safecorners commented 6 years ago

nginx 같이 설치해야 모듈

safecorners commented 6 years ago

ffmpeg 하드웨어 가속화 플랫폼 별 정보

leejihown commented 6 years ago

uv4l 설치법 v4l2와 ffmpeg를 이용한 카메라 캡처

safecorners commented 6 years ago

uv4l ffmpeg

DaewoongP commented 6 years ago

mmap : 디바이스 오류 해결방법

safecorners commented 6 years ago

nginx rtmp module API 라즈베리파이 하드웨어 가속화

safecorners commented 6 years ago

nginx.conf rtmp>server directive

  application webcam {
            live on;

            # Stream from local webcam
            exec_static ffmpeg -f video4linux2 -i /dev/video0 -c:v libx264 -an
                               -f flv rtmp://localhost:1935/webcam/mystream;
        }
safecorners commented 6 years ago

MPEG-TS

safecorners commented 6 years ago

replace nginx-rtmp-module with /sergey-dryabzhinsky/nginx-rtmp-module

safecorners commented 6 years ago

ffmpeg와 nginx 옵션 최적화 필요.

leejihown commented 6 years ago

http://bigcode.tistory.com/1