View Single Post
  #1  
Old 12-18-2015, 08:58 PM
utuxia utuxia is offline
Member
 
Join Date: Apr 2015
Posts: 32
utuxia is on a distinguished road
Default

help playing rtmpe stream with ffmpeg


http://nbastream.net/streams2/stream11.html

Here's the live stream.

I found this in the jsplayer setup:

Code:

  
		 		 
		 //play stream as HLS
		 jwplayer("myElement").setup({ 		
			width: 640,
			height: 400,						
			file:'rtmpe://134.19.185.202:1935/hfufdxdrh/llive11',
			skin: "roundster",
			autostart: true,
			repeat: true,
			stretching: "exactfit",
			'wmode' : 'transparent',
			'rtmp.tunneling':false,
			'rtmpe.tunneling':false,

		});
Here is what I tried:

Code:
ffmpeg -i 'rtmpe://134.19.185.202:1935/hfufdxdrh/llive11' -hls_time 10 -hls_list_size 10 -hls_wrap 20 -hls_flags delete_segments -hls_segment_filename "test/video%03d.ts" -c:v copy -c:a copy test.m3u8
Reply With Quote