PDA

View Full Version : How to download from this site ?


SpaRKaR
09-26-2015, 05:17 PM
Hello Guys,

I just found this site but cant download from here, please help me with this.

http://popcornlive.tv/

This is free, no need to any account.
And here is link that i want :
http://popcornlive.tv/videos/dustu-cheler-dol-episode-01/178


Thanks in Advance.

troller12
09-27-2015, 12:28 AM
Hi,

almost all datas you need you can find into page source.
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"

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..
id="securetoken"><string>72e5581f60ea01d9
Now you can build & run / download the rtmp stream/s like this...
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...
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

Moet
09-27-2015, 04:04 AM
A useful tutorial, thank you.

I can't find a similar token in memory though.

Searching for securetoken with Winhex in firefox memory shows:

securetoken%2522%26loc%3D (assuming url encoding I unescaped it to %22&loc=)

In the flash plugin memory I get:

securetoken accesstoken clienttoken appaccesstoken °&( 0'( @'( P'(

Any suggestions?

biezom
09-27-2015, 06:48 AM
A useful tutorial, thank you.

I can't find a similar token in memory though.

Searching for securetoken with Winhex in firefox memory shows:

securetoken%2522%26loc%3D (assuming url encoding I unescaped it to %22&loc=)

In the flash plugin memory I get:

securetoken accesstoken clienttoken appaccesstoken °&( 0'( @'( P'(

Any suggestions?
in plugin flash memory not in firefox memory

Moet
09-27-2015, 08:49 AM
For the OP's link above

http://popcornlive.tv/videos/dustu-cheler-dol-episode-01/178

Winhex finds several "instances" of securetoken in the flash plugin but the apparent token it finds (which contains characters that won't display on this forum, afaik) is very different from the one in Troller12's code: -T "72e5581f60ea01d9" - same url, very different form for the token.

Here's the Winhex pos file if anyone wants to check.

http://www.filedropper.com/winhex

biezom
09-27-2015, 09:38 AM
For the OP's link above

http://popcornlive.tv/videos/dustu-cheler-dol-episode-01/178

Winhex finds several "instances" of securetoken in the flash plugin but the apparent token it finds (which contains characters that won't display on this forum, afaik) is very different from the one in Troller12's code: -T "72e5581f60ea01d9" - same url, very different form for the token.

Here's the Winhex pos file if anyone wants to check.

http://www.filedropper.com/winhex

http://i.imgur.com/VJcQgWz.png

SpaRKaR
09-27-2015, 09:45 AM
@biezom and troller12,
Thanks for help.
I m not familiar with those codes, so a little walk-thorough would be really great.

I know a little bit about livestream and there is also 1080p available. will you guys tell me how to set that whole code in livestream?

Moet
09-27-2015, 12:23 PM
How embarrassing. Obviously I didn't check that one.

SpaRKaR
09-28-2015, 01:06 AM
When i set this code in Livestream it only play. How can i download this?

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

peterpan
09-28-2015, 01:10 AM
Add an -o option ;)

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 -o "myfile.flv"