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

Record this radio

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

cantimplora 10-30-2015 07:29 AM

Record this radio


 
i want record this radio hd http://radiomitre.cienradios.com/hd/ .. I get the manifets but no working

Quote:

php AdobeHDS.php --manifest "http://prepublish.f.qaotic.net/b04/ngrp:MITREHD-10002_all/manifest.f4m" --delete
any can help me?

troller12 10-30-2015 08:44 AM

Re: Record this radio


 
Hi,

you just need to add a etxra user-agent to get it working.
Code:

livestreamer --http-header "User-Agent=iPhone" "hds://http://prepublish.f.qaotic.net/b04/ngrp:MITREHD-10002_all/manifest.f4m" best
greetz

cantimplora 10-30-2015 10:29 AM

Re: Record this radio


 
one question... how get --http-header "User-Agent=iPhone" ??

troller12 10-30-2015 12:14 PM

Re: Record this radio


 
So iPhone is just a shortcut name I used to get access to the site / f4m manifest (quicktest).If you want to access the direct link into browser then it dosen't work "Error 403 Access denied" using the normal browser user agent like in that case.

Read this..
https://en.wikipedia.org/wiki/HTTP_403

On the other hand you can follow the requests of the original site you can run in browser which plays the segments to see what it did request.
Code:

http://prepublish.f.qaotic.net/b04/ngrp:MITREHD-10002_all/media_u1puceem3_b346000.abst/Seg1-Frag42453
--------------------------------------------------------------------------------------
GET /b04/ngrp:MITREHD-10002_all/media_u1puceem3_b346000.abst/Seg1-Frag42453 HTTP/1.1
Host: prepublish.f.qaotic.net
User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:41.0) Gecko/20100101 Firefox/41.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: x
Accept-Encoding: gzip, deflate
DNT: 1
Referer: http://vmf.edge-apps.net/res/player/universal/StrobeMediaPlayback_test.swf
Connection: keep-alive
--------------------------------------------------------------------------------------

Above you see the infos by browser access (also same for direct f4m file).So to get access on file you need to use the Referer Paramter to prevent 403 error code to allow the access.If you want to use it livestreamer tool then it has to look so...
Code:

livestreamer --http-header "Referer=http://vmf.edge-apps.net/res/player/universal/StrobeMediaPlayback_test.swf" "hds://http://prepublish.f.qaotic.net/b04/ngrp:MITREHD-10002_all/manifest.f4m" best
...to get it work.You can also shortcut the referer link if you want.Just use Firefox tools itself to find the infos or use extern tools / debugger etc.

greetz

cantimplora 10-30-2015 02:56 PM

Re: Record this radio


 
which programs you use to find these parameters? thanks

troller12 10-30-2015 04:20 PM

Re: Record this radio


 
Try URLSnooper 2.Handling of this tool is simple also for newbies.Also you can use Firefox tools (strg+shift+I / or choose it).If you want to request specific datas to http/s header datas etc then you can also use some online tools (google online http headers) or direct tools like this simple one...
Code:

http://www.dreamincode.net/forums/topic/266444-masm-winsock-interacting-with-webpages/
...or you use any web debugger.

greetz


All times are GMT -6. The time now is 04:09 PM.