Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=4)
-   -  

New to ffmpeg need help

(http://stream-recorder.com/forum/showthread.php?t=20732)

MaxBlum 02-22-2016 06:34 AM

Re: New to ffmpeg need help


 
First off I want to thank you again for going out of your way to help me withthis . You didn't have to do this, and really appreciate it.

I re-did AdobeHDS.php and couldnt get it to work, but I got the standalone version of AdobeHDS to work on fxnetwork and ifc. No luck with AMC, It says access denied. I tried the HDS Link detector code but it didnt work. I also found this:

ttp://amc350886pmd-tkn.download.theplatform.com.edgesuite.net/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_800000 0_primary_audio_8.mp4?authToken=st=1456148196~exp= 1456148286~acl=/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_800000 0_primary_audio_8.mp4*~hmac=36da2c96eb7ce11a267f63 2d6eb44fbf85fb9855b8027a11931f24a8bef30fd6



Any ideas for ABC.com. I was able to find these:

http://content.uplynk.com/ext/d874124ecca24c88a3c9575e78686acf/10052571.m3u8?exp=1456142393&ct=a&eid=10052571&oid =d874124ecca24c88a3c9575e78686acf&iph=d36b15426e19 7c3ace07a7f8cc79247c11e645f8b7a2c1b05fdb2e005e1416 15&rays=eabcdfg&euid={{53246514-4785-4A78-99F9-8431E59377CD}}_007_0_001_lf&sig=47fd0932b0d87085b8 e1e2a2bfd1ed9e014613e2281f71852fb58b8afddb2506&ad. cping=1&referer=abc.go.com

and

hhttp://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/http/protocol/http/cdnHost/cdnbakmi.kaltura.com/storageId/1561/uiConfId/8628152/tags/uplynk/a/a.f4m?referrer=aHR0cDovL2FiYy5nby5jb20vc2hvd3MvbmF zaHZpbGxlL2VwaXNvZGUtZ3VpZGUvc2Vhc29uLTA0LzktdGhyZ WVzLWEtY3Jvd2Q=&playbackContext=brand=001&eid=1005 2571&device=001&euid=%7B%7B53246514-4785-4A78-99F9-8431E59377CD%7D%7D_007_0_001_lf&ct=a&rays=eabcdfg

but neither worked in ffmpeg.

biezom 02-22-2016 06:44 AM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by MaxBlum (Post 82751)
First off I want to thank you again for going out of your way to help me withthis . You didn't have to do this, and really appreciate it.

I re-did AdobeHDS.php and couldnt get it to work, but I got the standalone version of AdobeHDS to work on fxnetwork and ifc. No luck with AMC, It says access denied. Any ideas for ABC.com. I was able to find these:

http://content.uplynk.com/ext/d874124ecca24c88a3c9575e78686acf/10052571.m3u8?exp=1456142393&ct=a&eid=10052571&oid =d874124ecca24c88a3c9575e78686acf&iph=d36b15426e19 7c3ace07a7f8cc79247c11e645f8b7a2c1b05fdb2e005e1416 15&rays=eabcdfg&euid={{53246514-4785-4A78-99F9-8431E59377CD}}_007_0_001_lf&sig=47fd0932b0d87085b8 e1e2a2bfd1ed9e014613e2281f71852fb58b8afddb2506&ad. cping=1&referer=abc.go.com

and

http://cdnapi.kaltura.com/p/585231/s...a&rays=eabcdfg

but neither worked in ffmpeg.

hi

try

Code:

livestreamer "hlsvariant://http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/url/protocol/http" best -o video.ts

MaxBlum 02-22-2016 06:53 AM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by biezom (Post 82752)
hi

try

Code:

livestreamer "hlsvariant://http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/url/protocol/http" best -o video.ts

Wow thanks. It worked.

Could explain you found this link: hlsvariant://http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/url/protocol/http

biezom 02-22-2016 07:02 AM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by MaxBlum (Post 82753)
Wow thanks. It worked.

Could explain you found this link: hlsvariant://http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/url/protocol/http

you found this

Code:

http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/http/protocol/http/..........................................
just a little change


Code:

http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/url/protocol/http
nota "flavorId/0_0an70lk5" is not useful so it works with just

Code:

http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/format/url/protocol/http

MaxBlum 02-22-2016 07:30 AM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by biezom (Post 82755)
you found this

Code:

http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/http/protocol/http/..........................................
just a little change


Code:

http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/flavorId/0_0an70lk5/format/url/protocol/http
nota "flavorId/0_0an70lk5" is not useful so it works with just

Code:

http://cdnapi.kaltura.com/p/585231/sp/58523100/playManifest/entryId/0_dqftgqjd/format/url/protocol/http

Worked great again. Thanks.

Can you help with this one:
hhttp://amc350888def-vh.akamaihd.net/z/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739,604_mp4_video_1280x720_243200 0_primary_audio_6,606_mp4_video_1920x1080_8000000_ primary_audio_8,605_mp4_video_1920x1080_5000000_pr imary_audio_7,603_mp4_video_1280x720_1800000_prima ry_audio_5,602_mp4_video_960x540_1200000_primary_a udio_4,601_mp4_video_640x360_568000_primary_audio_ 3,600_mp4_video_480x270_400000_primary_audio_2,599 _mp4_video_416x234_168000_primary_audio_1,.mp4.csm il/manifest.f4m?hdnea=st=1456150992~exp=1456151082~ac l=/z/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739*~hmac=93f92944cb44dd25084966b f992a87acedd2e98baf9fac1e48603c84c473b54c&g=LVJPMW RPOVYN&hdcore=3.5.0

biezom 02-22-2016 08:05 AM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by MaxBlum (Post 82756)
Worked great again. Thanks.

Can you help with this one:
hhttp://amc350888def-vh.akamaihd.net/z/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739,604_mp4_video_1280x720_243200 0_primary_audio_6,606_mp4_video_1920x1080_8000000_ primary_audio_8,605_mp4_video_1920x1080_5000000_pr imary_audio_7,603_mp4_video_1280x720_1800000_prima ry_audio_5,602_mp4_video_960x540_1200000_primary_a udio_4,601_mp4_video_640x360_568000_primary_audio_ 3,600_mp4_video_480x270_400000_primary_audio_2,599 _mp4_video_416x234_168000_primary_audio_1,.mp4.csm il/manifest.f4m?hdnea=st=1456150992~exp=1456151082~ac l=/z/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739*~hmac=93f92944cb44dd25084966b f992a87acedd2e98baf9fac1e48603c84c473b54c&g=LVJPMW RPOVYN&hdcore=3.5.0

open this link and copy the url with the bitrate that you want

Code:

http://link.theplatform.com/s/M_UwQC/media/eWibk2EnHgyO?formats=mpeg4&format=SMIL&callback=jquery
then

Code:

livestreamer "httpstream://URL-FOUNDED" best -o video.mp4

example (you can't use the same url it's an example you need find your own url with link.theplatform...)


Code:

livestreamer "httpstream://http://amc350886pmd-tkn.download.theplatform.com.edgesuite.net/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4?authToken=st=1456153419~exp=1456153509~acl=/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4*~hmac=77e08b1b924c18f52d0b98a23073231fa04a1aec08f13328b4d1ab603d86408d" best -o video.mp4

>>>>

Code:

[cli][info] Found matching plugin stream for URL httpstream://http://amc350886pmd-tkn.download.theplatform.com.edgesuite.net/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4?authToken=st=1456153419~exp=1456153509~acl=/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4*~hmac=77e08b1b924c18f52d0b98a23073231fa04a1aec08f13328b4d1ab603d86408d
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (http)
[download][video.mp4] Written 6.2 MB (12s @ 499.7 KB/s)


MaxBlum 02-22-2016 04:14 PM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by biezom (Post 82757)
open this link and copy the url with the bitrate that you want

Code:

http://link.theplatform.com/s/M_UwQC/media/eWibk2EnHgyO?formats=mpeg4&format=SMIL&callback=jquery
then

Code:

livestreamer "httpstream://URL-FOUNDED" best -o video.mp4

example (you can't use the same url it's an example you need find your own url with link.theplatform...)


Code:

livestreamer "httpstream://http://amc350886pmd-tkn.download.theplatform.com.edgesuite.net/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4?authToken=st=1456153419~exp=1456153509~acl=/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4*~hmac=77e08b1b924c18f52d0b98a23073231fa04a1aec08f13328b4d1ab603d86408d" best -o video.mp4

>>>>

Code:

[cli][info] Found matching plugin stream for URL httpstream://http://amc350886pmd-tkn.download.theplatform.com.edgesuite.net/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4?authToken=st=1456153419~exp=1456153509~acl=/default/AMC_Networks_-_AMC/623451203738/650/411/BCS_201_D1_623452739606_mp4_video_1920x1080_8000000_primary_audio_8.mp4*~hmac=77e08b1b924c18f52d0b98a23073231fa04a1aec08f13328b4d1ab603d86408d
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (http)
[download][video.mp4] Written 6.2 MB (12s @ 499.7 KB/s)



This is what Im getting now .


biezom 02-22-2016 05:09 PM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by MaxBlum (Post 82761)
This is what Im getting now .


maybe not fast enough because the url expire quickly ~60 seconds

MaxBlum 02-22-2016 08:01 PM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by biezom (Post 82763)
maybe not fast enough because the url expire quickly ~60 seconds

Got it to work, but it only did the first 1:00 out of 48:00




Sometime this when I try a different link



Also not sure where you got this

Code:

http://link.theplatform.com/s/M_UwQC/media/eWibk2EnHgyO?formats=mpeg4&format=SMIL&callback=jquery
Ive just been using url sniffers

biezom 02-22-2016 09:32 PM

Re: New to ffmpeg need help


 
Quote:

Originally Posted by MaxBlum (Post 82769)
Got it to work, but it only did the first 1:00 out of 48:00




Sometime this when I try a different link



Also not sure where you got this

Code:

http://link.theplatform.com/s/M_UwQC/media/eWibk2EnHgyO?formats=mpeg4&format=SMIL&callback=jquery
Ive just been using url sniffers

ok sorry i hadn't check if it was complete

so try hls protocol instead of progressive protocol
it seems ok


Code:

livestreamer "hlsvariant://link.theplatform.com/s/M_UwQC/media/eWibk2EnHgyO?mbr=true&manifest=m3u" best -o video.ts


All times are GMT -6. The time now is 07:01 PM.