Hi,
almost all datas you need you can find into page source.
Code:
var s = "52.74.121.75:1935";
file: "http://" + s + "/vods3/_definst_/smil:amazons3/popcorn-vod/clips/attachments/000/000/458/original/clip.smil/playlist.m3u8"
file: "http://" + s + "/vods3/_definst_/smil:amazons3/popcorn-vod/clips/attachments/000/000/458/original/clip.smil/jwplayer.smil"
Code:
http://52.74.121.75:1935/vods3/_definst_/smil:amazons3/popcorn-vod/clips/attachments/000/000/458/original/clip.smil/jwplayer.smil
In the smil file you find the rtmp stream address / app / playpaths to build one or 5 streams with different qualitys but you also need a token to get rtmp streams working which you can find into memory if you just search for securetoken and next you find the string..
Code:
id="securetoken"><string>72e5581f60ea01d9
Now you can build & run / download the rtmp stream/s like this...
Code:
rtmpdump -r "rtmp://52.74.121.75:1935/vods3/_definst_//mp4:amazons3/popcorn-vod/clips/attachments/000/000/458/original/1443180806_720.mp4" -T "72e5581f60ea01d9" -o "video.mp4"
On the other hand you can also play & download the playlist without token...
Code:
livestreamer "hlsvariant://http://52.74.121.75:1935/vods3/_definst_/smil:amazons3/popcorn-vod/clips/attachments/000/000/458/original/clip.smil/playlist.m3u8" best
PS: Use livestreamer or rtmpdump tools.If you don't know more about it then check the rtmpdump topic.
greetz