Questions tagged [rtmp]

RTMP is a streaming protocol used for audio and video, especially Flash

RTMP (Real Time Messaging Protocol) is a streaming protocol over TCP. It was developed by Macromedia to stream content from a server to a Flash player.

Several variants of the protocol exist: RTMPS is RTMP over TLS, RTMPE is RTMP using a proprietary encryption mechanism, and RTMPT is an encapsulation of RTMP (or RTMPE or RTMPS) on HTTP.

8 questions
3
votes
1 answer

Why can't pull the dash stream with ffplay?

The nginx.conf is simple: sudo cat /usr/local/nginx/conf/nginx.conf worker_processes 1; error_log logs/error.log error; events { worker_connections 4096; } rtmp { server { listen 1935; application live { …
scrapy
  • 323
  • 4
  • 12
  • 27
3
votes
1 answer

VLC - libvdpau error with intel graphics

I am using archlinux trying to connect to an RTSP stream on my local network (local IP camera) and am getting very hit-and-miss performance from VLC. Most of the time the connection runs just fine, but sometimes the connection freezes and I have to…
sam
  • 22,265
  • 4
  • 22
  • 30
3
votes
2 answers

How to download rtmp video stream on linux?

I want to download a video recorded today at 5-6 pm from the following earthcam: http://www.abbeyroad.com/crossing How can i download it in debian or ubuntu? Inspecting the source code i got the…
2
votes
1 answer

RTMP Streaming to Twitch

I'm streaming using OBS on Windows (QuickSync), pushing 20k bitrate to 2nd PC based on Linux (Debian Jessie 8.4.0, 64bit) via Gigabit Ethernet. The Debian system runs a minimal installation without X server (just CLI), where I compiled and installed…
Eska
  • 121
  • 5
2
votes
1 answer

Ubuntu live RTMP video streem

I'm trying to launch live(not ondemand) RTMP stream from ubuntu, but i succeed only with RTSP stream through VLC vlc -vvv ./videos/test.mp4 --sout '#rtp{dst=192.168.8.106,port=1234,sdp=rtsp://192.168.8.106:1234/test.sdp}' (source here -…
Armen
  • 211
  • 2
  • 11
1
vote
1 answer

NGINX RTMP not working with sites-enabled directory set

I'm having problems getting NGINX with the RTMP module to start when the RTMP server block is used within a file inside the sites-available (symbolic linked to sites-enabled). NGINX configuration files are all located at /etc/nginx/. If I use the…
willowen100
  • 57
  • 1
  • 11
1
vote
0 answers

How to download a video from rtmp protocol from behind proxy using rtmpdump

I am trying to download video from rtmp://flash.dce.harvard.edu/bounce/mp4:2015/01/14328/L01/14328-20140902-L01-4-h264-av1248-16x9-852x480.mp4. My college internet runs behing proxy, Is there a way I can set http/https proxy to rtmpdump?
vikasreddy
  • 111
  • 1
0
votes
2 answers

Why can't open the stream with hls url?

I build RTMP server on my local pc according to the nginx official manual: video-streaming-for-remote-learning-with-nginx My nginx setting: sudo vim /usr/local/nginx/conf/nginx.conf worker_processes 1; error_log …
scrapy
  • 323
  • 4
  • 12
  • 27