View Single Post
  #2  
Old 06-03-2015, 04:16 PM
biezom biezom is offline
Senior Member
 
Join Date: Sep 2014
Posts: 1,025
biezom is on a distinguished road
Default

Re: How to record ATV live streaming


Quote:
Originally Posted by Chemist925 View Post
Hello there,

im trying to get this channel. Could somebody help me with this?.

Here is the link:

http://www.fulltelevisionhd.net/2013...-internet.html

If possible, please post a code in rtmpdump or ffmpeg for the best quality possible (720p) and for 480p. Thanks in advance.
hi
720p
Code:
ffmpeg -i "http://edge-31-us.edge.mdstrm.com/live-stream/_definst_/smil:c23b8a0a21d215482b4c2703e47f675a/chunklist_b1500000.m3u8" -c copy atv.ts
480p
Code:
ffmpeg -i "http://edge-31-us.edge.mdstrm.com/live-stream/_definst_/smil:c23b8a0a21d215482b4c2703e47f675a/chunklist_b950000.m3u8"  -c copy atv.ts

but it's not good bitrate quality

720p ~ 1300kbits
480p ~ 900kbits


you could use livestreamer too an choose quality with variant playlist


Code:
livestreamer "hlsvariant://http://edge-31-us.edge.mdstrm.com/live/smil:c23b8a0a21d215482b4c2703e47f675a/playlist.m3u8" 720p -o atv.ts
Code:
livestreamer "hlsvariant://http://edge-31-us.edge.mdstrm.com/live/smil:c23b8a0a21d215482b4c2703e47f675a/playlist.m3u8" 480p -o atv.ts

Last edited by biezom : 06-03-2015 at 05:32 PM. Reason: add -c copy in the ffmpeg's code
Reply With Quote