Hi guys,
I've spend an hour trying to fiddle with the source page of this https://radio.eol.co.il/live/ radio station to get the stream url so I can add it to my phone's podcast/radio station list.
I've downlaoded the m3u8 playlist i could find on the source page but no url there. any ideas?
any help much appreciated.
thanks
Roy![]()
+ Reply to Thread
Results 1 to 9 of 9
-
-
Put the m3u8 url from the web page in a playlist: (m3u or m3u8 file):
Code:https://eol-live.cdnwiz.com/eol/eolsite/chunks.m3u8
-
similar problem here https://www.881903.com/live/903. I got the chunk.m3u8 but it is not playing anything.
-
use the playlist.m3u8 + nm3u8dl https://github.com/nilaoda/N_m3u8DL-CLI/releases/tag/2.9.9
Code:16:07:13.380 Start Parsing https://eol-live.cdnwiz.com/eol/eolsite/playlist.m3u8 16:07:14.638 Writing Json: [meta.json] 16:07:14.723 Master List Found 16:07:14.760 Writing Master List Json: [playLists.json] 16:07:14.761 Auto Selected Best Definition 16:07:14.762 Start Re-Parsing... 16:07:15.165 Writing Json: [meta.json] 16:07:15.197 File Duration: 00m35s 16:07:15.199 Original Count: 6, Selected Count: 6 16:07:15.199 Live Stream Found, Recoding... 16:07:15.212 <18964 Downloading> 16:07:15.419 <18964 Complete>
extension to get the m3u8 fast https://addons.mozilla.org/en-US/firefox/addon/hls-stream-detector/Last edited by PUOPUO; 17th Apr 2022 at 05:49.
-
same for you
Code:16:10:34.095 Start Parsing https://live.881903.com/edge-aac/903hd/playlist.m3u8?r=XFBi3o8UAeZY9VfB 16:10:39.953 File Duration: 00m36s 16:10:39.955 Original Count: 6, Selected Count: 6 16:10:39.966 Live Stream Found, Recoding... 16:10:40.190 <18979 Downloading> 16:10:40.623 <18980 Downloading> 16:10:40.842 <18981 Downloading> 16:10:41.138 <18982 Downloading> 16:10:41.459 <18983 Downloading> 16:10:41.840 <18984 Downloading> 16:10:42.066 Waiting...
Last edited by PUOPUO; 17th Apr 2022 at 05:47.
-
-
-
ffplay can play the m3u8 with
Code:ffplay -user_agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0" -headers "Cookie: CloudFront-Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9saXZlLjg4MTkwMy5jb20vZWRnZS0qLyoiLCJDb25kaXRpb24iOnsiSXBBZGRyZXNzIjp7IkFXUzpTb3VyY2VJcCI6IjcyLjIyMC4xODEuOTQvMjQifSwiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NTA5NzA5MjJ9fX1dfQ__; CloudFront-Signature=QbgzqqlSquMgn6FK6IoU9aktVLTX4S8QqOUT%7EtOtdvJ8qgTyiJtfD2xM6GlRtQmQ03MPK5O1HzUsk2sPbpZVRS7p6SXssaDRHhRgA9yp4rYt1GFA4UMHHzn15HdJglitlbg8mBc2S4rnER%7EqulWU%7EJK6FhzKLMJKZWy5mm-ugaxxcKWrvggJOfcXQkwoI6Ta1XEFFIXHU5lqcL03nqj7q-k-q-oJm0ceP6WzVY%7EczV0rtayND7YiSAYv8k9cjlnSVy6drGoH7yjtjqZ1AZ6vcHpECr5xYi983USsDIMqpha0Q2iRucatbYryLNeY7N29vOTNfg57THts834mzC5Scg__; CloudFront-Key-Pair-Id=APKAJD57M4WB2ORCAM4Q" -referer "https://www.881903.com/live/903" -i "https://live.881903.com/edge-aac/903hd/playlist.m3u8?r=RpjoZvJJbt8ymYGe"
<edit>
I figured out why it doesn't work from a batch file: each of the "%7E" needs to be changed to "%%7E":
Code:ffplay -user_agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0" -headers "Cookie: CloudFront-Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9saXZlLjg4MTkwMy5jb20vZWRnZS0qLyoiLCJDb25kaXRpb24iOnsiSXBBZGRyZXNzIjp7IkFXUzpTb3VyY2VJcCI6IjcyLjIyMC4xODEuOTQvMjQifSwiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE2NTA5NzA5MjJ9fX1dfQ__; CloudFront-Signature=QbgzqqlSquMgn6FK6IoU9aktVLTX4S8QqOUT%%7EtOtdvJ8qgTyiJtfD2xM6GlRtQmQ03MPK5O1HzUsk2sPbpZVRS7p6SXssaDRHhRgA9yp4rYt1GFA4UMHHzn15HdJglitlbg8mBc2S4rnER%%7EqulWU%%7EJK6FhzKLMJKZWy5mm-ugaxxcKWrvggJOfcXQkwoI6Ta1XEFFIXHU5lqcL03nqj7q-k-q-oJm0ceP6WzVY%%7EczV0rtayND7YiSAYv8k9cjlnSVy6drGoH7yjtjqZ1AZ6vcHpECr5xYi983USsDIMqpha0Q2iRucatbYryLNeY7N29vOTNfg57THts834mzC5Scg__; CloudFront-Key-Pair-Id=APKAJD57M4WB2ORCAM4Q" -referer "https://www.881903.com/live/903" -i "https://live.881903.com/edge-aac/903hd/playlist.m3u8?r=RpjoZvJJbt8ymYGe"
The cookie will vary depending on your IP address (if I use a VPN I get a different cookie), I believe. So you'll need to get your own.
</edit>Last edited by jagabo; 25th Apr 2022 at 06:49.
Similar Threads
-
Need to grab a url from a website using Flowplayer
By Damione in forum Newbie / General discussionsReplies: 3Last Post: 15th Jan 2019, 10:19 -
I Run A Internet Radio Station Need Help Choosing Which Codec To Use
By DJboutit in forum AudioReplies: 7Last Post: 9th Oct 2018, 19:53 -
Trying to get stream url for this radio station
By jimdagys in forum Video Streaming DownloadingReplies: 8Last Post: 30th Aug 2018, 10:20 -
Need help to get audio url of this radio station
By jimdagys in forum AudioReplies: 5Last Post: 12th Dec 2017, 11:05 -
stream radio interview
By Anonymous in forum Video Streaming DownloadingReplies: 2Last Post: 23rd Jun 2016, 16:40