I managed to sort out an automated download. Heres what I did.<br><br><br>wget <a href="https://www.defcon.org/podcast/defcon-16-video.rss" target="_blank">https://www.defcon.org/podcast/defcon-16-video.rss</a><br><br>then<br>
<br>cat defcon-16-video.rss | grep .m4v > dump.txt<br><br>then <br><br>cat dump.txt <br>
<p style="margin-bottom: 0in;">cat dump.txt | cut -d '"' -f2 > urls.txt<br></p><p style="margin-bottom: 0in;">Then using this shell script:</p><p style="margin-bottom: 0in;"><br></p><p style="margin-bottom: 0in;">
#!/bin/sh<br> exec< "urls.txt"<br> value=0<br> while read line<br> do<br> wget $line<br> done<br></p><p style="margin-bottom: 0in;"><br></p><p style="margin-bottom: 0in;"><br></p><p style="margin-bottom: 0in;">
It downloads each of the video files one by one.</p><p style="margin-bottom: 0in;"><br></p><p style="margin-bottom: 0in;"><br></p><p style="margin-bottom: 0in;">Enjoy ^^</p><p style="margin-bottom: 0in;"><br>
</p>