Australian Ham Radio Discussion Forum ( AHRDF )
ARRL MP3 downloads - Printable Version

+- Australian Ham Radio Discussion Forum ( AHRDF ) (https://www.ahrdf.net/forum)
+-- Forum: GENERAL (https://www.ahrdf.net/forum/forum-29.html)
+--- Forum: General Discussion (https://www.ahrdf.net/forum/forum-9.html)
+--- Thread: ARRL MP3 downloads (/thread-87.html)



ARRL MP3 downloads - VK3ALB - 08-12-2016

Hi All,

Has anyone been able to figure out how to extract the ARRL mp3 news files from blubrry?

testing

[url=https://www.blubrry.com/arrlaudionews]testing[url]


Re: ARRL MP3 downloads - VK4ADC - 09-12-2016

Lou

I went to the Blubrry site ( https://www.blubrry.com/arrlaudionews/ ) and scrolled down to see the Latest Episodes, clicked on the latest one below the heading, scrolled the window down to see a textual highlights of that issue but scrolling down further showed a hyperlink Download Episode. Clicking on it downloaded a file AAN-2016-12-02.mp3, about 13MB in size.

Doug


Re: ARRL MP3 downloads - VK3ALB - 09-12-2016

Yep I get that but that's a couple of hops that I need to script (sorry, didn't make that clear in my first post) and the site is very secure. Simple scripting does not cut it for this site. Most agencies have a bucket with all the MP3 files in them and it's a simple matter to find the most recent. Not so in this case because the "bucket" cannot be browsed.

Added in 29 minutes 16 seconds:
At the risk of derailing my own request I give you a snippet of the code I use to get the RSGB news. Sadly, every agency requires a different method to deliver their news.

Code:
lynx -source http://gb2rs.podbean.com/ > rsgbdump || error # Get the contents of the MP3 bucket
line=`cat rsgbdump | grep -i http://gb2rs.podbean.com/mf | head -n1 | sed 's/^.*http/http/' | sed 's/".*//'` # Get the path of latest MP3 file
wget --no-check-certificate -q -O ./rsgban.mp3 $line || error # Download the latest MP3 file

Now, I "could" guess at the latest filename and script for that but the ARRL doesn't always deliver a new broadcast every week so in my opinion it is better to grab the latest one available with the method above.