Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
How to record from this site BBC One?I am not sure which code to use for streamlink to record the stream from this site
http://ds.freestreams-live1.com/bbc-one/ Can someone tell me how should the synthax be like?. I am intending to record this but I don't know how. Please understand that I am requesting how to record using streamlink. |
#2
|
|||
|
|||
Re: How to record from this site BBC One? |
#3
|
|||
|
|||
Re: How to record from this site BBC One?You need referer and hls url. How easy you get it depends on your skill.
In firefox press F12 key, select network monitor tab, right click on hls url and select "Copy Value" > "Copy as Fetch" Code:
await fetch("https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=hU_czdD3GkayEi1VmXKKXw&expires=1662860389", { "credentials": "omit", "headers": { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0", "Accept": "*/*", "Accept-Language": "en-GB,en;q=0.5", "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "cross-site", "If-Modified-Since": "Sat, 10 Sep 2022 23:40:52 GMT", "If-None-Match": "\"631d2084-234\"" }, "referrer": "https://noob4cast.com/", "method": "GET", "mode": "cors" }); Code:
set referer="Referer=https://noob4cast.com/" set url="https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=hU_czdD3GkayEi1VmXKKXw&expires=1662860389" streamlink.exe --http-header %referer% %url% best Code:
[cli][info] Found matching plugin hls for URL https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=hU_czdD3GkayEi1VmXKKXw&expires=1662860389 [cli][info] Available streams: live (worst, best) [cli][info] Opening stream: live (hls) [cli][info] Starting player: C:\P\VLC\vlc.exe |
#4
|
|||
|
|||
Re: How to record from this site BBC One?Quote:
What i've been doing is like this: Code:
streamlink "hls://s6.merizaat.com:8080/hls/hdchnl1.m3u8" best I am using latest Chrome version and I have also installed ublock add on. I guess using F12 or ublock can allow to get the information you mentioned but I don't know exactly where to find that referrer. Please help me. |
#5
|
|||
|
|||
Re: How to record from this site BBC One?The whole syntax is in batch file. Referer is https://noob4cast.com/ and it doesn't change.
Hls url is changing. Code:
set referer="Referer=https://noob4cast.com/" set url="https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=hU_czdD3GkayEi1VmXKKXw&expires=1662860389" streamlink.exe --http-header %referer% %url% best Code:
streamlink.exe --http-header "Referer=https://noob4cast.com/" "https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=hU_czdD3GkayEi1VmXKKXw&expires=1662860389" best http://gy.freestreams-live1.com/bbc-one/ Press F12, select "Network" tab, right click on m3u8 url: 'https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=F4iCbjwhgKLTLqT7JJ2cqA&expires=16 63116671' select "Copy" > "Copy as fetch" Then open Notepad, and paste (content from clipboard). You get this: Code:
fetch("https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=F4iCbjwhgKLTLqT7JJ2cqA&expires=1663116671", { "headers": { "accept": "*/*", "accept-language": "en-US,en;q=0.9", "if-modified-since": "Tue, 13 Sep 2022 22:51:41 GMT", "if-none-match": "\"6321097d-218\"", "sec-ch-ua": "\"Google Chrome\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"", "sec-ch-ua-mobile": "?0", "sec-ch-ua-platform": "\"Windows\"", "sec-fetch-dest": "empty", "sec-fetch-mode": "cors", "sec-fetch-site": "cross-site" }, "referrer": "https://noob4cast.com/", "referrerPolicy": "strict-origin-when-cross-origin", "body": null, "method": "GET", "mode": "cors", "credentials": "omit" }); Hls url is changing and doing this without scripting skills is a pain. |
#6
|
|||
|
|||
Re: How to record from this site BBC One?Quote:
I mean I've just copied from the example you mentioned at the bottom of your message. I still don't get it right. What's the purpose of the whole copy as fetch text from developer mode?. Do I need to save that as a separate file or something?. I am not very savvy with script skills but I can follow instructions as I have some basic knowledge in that. In your answer you say that the code is as follows Code:
set referer="Referer=https://noob4cast.com/" set url="https://s6.merizaat.com:8080/hls/hdchnl1.m3u8?md5=hU_czdD3GkayEi1VmXKKXw&expires=1662860389" streamlink.exe --http-header %referer% %url% best I say this because the code from above has three lines this confuses me. Does the copy as fetch text be saved as a file and then be retreived from the code from above?. Can you please explain this part because I am stuck at trying to understand that. |
Tags: bbc, live, stream |
Thread Tools | |
Display Modes | |
|
|