2017-12-08 8 views
1

안녕하세요. ffmpeg에 새로 왔으며 아직 작성중인 .webm 파일의 실시간 스트리밍에 도움이 필요합니다.파일이 vp9 코덱 which needs to be live streamed (preferably without transcoding and streamed using DASH`에있는 비디오 만 포함되어 있습니다. 나는 다음과 같은 구성라이브 스트리밍 .fbmp와 nginx가 포함 된 .webm 파일

nginx version: nginx/1.12.1 
built by gcc 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) 
built with OpenSSL 1.0.1f 6 Jan 2014 
TLS SNI support enabled 
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -fPIC -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -fPIC' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_v2_module --with-http_dav_module --with-http_slice_module --with-threads --with-http_addition_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_sub_module --with-stream=dynamic --with-stream_ssl_module --with-stream_ssl_preread_module --with-mail=dynamic --with-mail_ssl_module --add-dynamic-module=/home/ubuntu/NGINX/nginx-ts-module-master 

와의 nginx (https://github.com/arut/nginx-ts-module#features)에서의 nginx-TS-모듈과 함께 컴파일하신 미디어 파일에는 다음과 같은 속성 (Mediainfo를 얻을)이 있습니다

General 
Complete name       : video_4_1_Admin_0.webm 
Format         : WebM 
Format version       : Version 2 
File size        : 19.7 MiB 
Duration         : 1ms 
Overall bit rate       : 165 Gbps 
Writing library       : libwebm-0.2.1.0 
Video 
ID          : 1 
Format         : VP9 
Codec ID         : V_VP9 
Width         : 320 pixels 
Height         : 180 pixels 
Display aspect ratio      : 16:9 
Frame rate mode       : Variable 
Language         : English 
Default         : Yes 
Forced         : No 

I 스트리밍하려고를 다음

ffmpeg -re -i video_4_1_Admin_0.webm -bsf:v vp9_superframe -c copy -f webm_chunk http://127.0.0.1:8000/publish/sintel 

그리고 다음과 같은 오류

을 얻고있는 파일
Input #0, matroska,webm, from 'video_4_1_Admin_0.webm': 
    Metadata: 
    encoder   : libwebm-0.2.1.0 
    Duration: 00:00:00.00, start: 0.000000, bitrate: 174444152 kb/s 
    Stream #0:0(eng): Video: vp9 (Profile 0), yuv420p(tv), 320x180, SAR 1:1 DAR 16:9, 30 fps, 30 tbr, 1k tbn, 1k tbc (default) 
Output #0, webm_chunk, to 'http://127.0.0.1:8000/publish/sintel': 
Output file #0 does not contain any stream 

나는 내가 예 (https://github.com/arut/nginx-ts-module#features)에 주어진 옵션을 대체하려 정확한 옵션이 나 미디어를 실시간 스트리밍 할 수 있도록 할 .mpd 필요 덩어리를 만들어 너무 ffmpeg에 전달하기 위해 무엇 확실하지 않다 무슨 vp9 동등한 것 같아.하지만, 나는 잘 모르겠다. 누군가 나를 도와 줄 수 있습니까? 미리 감사드립니다.

+0

안녕하세요 @ seekahead 올바른 형식으로 질문을 게시하십시오. – Dilip

+1

@Allan에게 감사를드립니다. – seekahead

답변

0

WebM은 MPEG-TS가 아닙니다.

Nginx는 사용 사례에 적합하지 않습니다. 대신 Icecast를 사용할 수 있습니다.

+0

Brad에게 감사드립니다. 스트리밍을 지원하기 위해 nginx 자체에 새 모듈을 추가 할 수는 있지만 새 미디어 서버를 도입 할 수는 없습니다. http://wiki.webmproject.org/adaptive-streaming/instructions-to-do-webm-live-streaming-via-dash는 카메라에서 스트리밍 비디오를 생방송하는 방법을 알려주지 만 설치 방법은 확실하지 않습니다. 파일에서 스트리밍하기. 그리고이 기사는 NGINX가하는 DASH를 지원하는 "웹 서버"가 가능하다고 말했습니다. – seekahead

+0

DASH를 사용하려면 서버와 독립적이어야합니다. Nginx와 별도로 서버에 파일을 작성해야합니다. – Brad

관련 문제