Code:
#!/bin/sh
# Download the parts
i=1
while wget "edgecastcdn.net/00096D/products/cwg/video/binary/pres1/data/swf/slide${i}.swf"; do
((i++))
done
# Optional, convert the parts. You can just play the swf file through
# the browser if you prefer.
i=1
while ffmpeg -i "slide${i}.swf" -c copy "slide${i}.mp3"; do
((i++))
done