Re: [Ldsoss] Script to download conference mp3s....

2007-10-16 Thread Lars Rasmussen
2 minutes later - poof! I've got 'em all. Very nice. Thanks for sharing. -- Lars On 10/8/07, Pete Whiting [EMAIL PROTECTED] wrote: This may not be as complete/robust as Matt's script, but accomplishes something similar: wget -O -

Re: [Ldsoss] Script to download conference mp3s....

2007-10-08 Thread m h
I've updated my script so that there are no longer dependencies on BeautifulSoup. Just one script and you can download all the mp3s for conference. It will run on most recent unix derived OS's (windows users will need to download the only dependency, python). Enjoy -matt ps. note that sunday

Re: [Ldsoss] Script to download conference mp3s....

2007-10-08 Thread Pete Whiting
This may not be as complete/robust as Matt's script, but accomplishes something similar: wget -O - http://lds.org/conference/sessions/display/0,5239,23-1-775,00.html| perl -e 'while(){next if /Complete/; `wget -nc $1\n` if(/\(http:.*mp3)\/); }' You need to figure out for yourself, each

Re: [Ldsoss] Script to download conference mp3s....

2007-08-20 Thread Thomas Haws
Should you add these tools to LDSoss wiki? On 8/19/07, m h [EMAIL PROTECTED] wrote: My wife recently asked for all the recent conference mp3s, so I whipped out a little script to do that in python. You point it at a lds.org conference url and it will pull all the individual talks (skipping

Re: [Ldsoss] Script to download conference mp3s....

2007-08-20 Thread m h
I guess I could add them to this page http://ldsoss.org/index.php/LDS.org_Hacks_and_Tricks On 8/20/07, Thomas Haws [EMAIL PROTECTED] wrote: Should you add these tools to LDSoss wiki? On 8/19/07, m h [EMAIL PROTECTED] wrote: My wife recently asked for all the recent conference mp3s,

Re: [Ldsoss] Script to download conference mp3s....

2007-08-20 Thread Jesse Stay
On 8/20/07, m h [EMAIL PROTECTED] wrote: I guess I could add them to this page http://ldsoss.org/index.php/LDS.org_Hacks_and_Tricks Yes, please do - that way there will be an archive of what you've written so others can use it in the future (without them having to search the mailing

Re: [Ldsoss] Script to download conference mp3s....

2007-08-20 Thread Cathy Malmrose
Wow, that is so nice. Thank you for doing that. --Cathy Malmrose, CEO ZaReason, Inc. (Mormon family building Linux systems) www.zareason.com On 8/19/07, m h [EMAIL PROTECTED] wrote: My wife recently asked for all the recent conference mp3s, so I whipped out a little script to do that in

[Ldsoss] Script to download conference mp3s....

2007-08-19 Thread m h
My wife recently asked for all the recent conference mp3s, so I whipped out a little script to do that in python. You point it at a lds.org conference url and it will pull all the individual talks (skipping the complete session ones) into a specified directory. I thought I'd share it in case