For those too lazy to subscribe to TED’s blog ;-) here are 3 good videos from this year’s TED conference that has recently finished:

2 Responses to “”

  1. A one-liner to keep your “hi-res” TED feed full:

    wget -O- http://feeds.feedburner.com/tedblog 2>/dev/null | sed -ne ‘s/.*embed\/\(.*\)-embed_high\.flv.*/\1/p’ | xargs -i wget -c “http://video.ted.com/talks/podcast/{}_480.mp4″

    (Should really add fu to detect when a file hasn’t been downloaded, either fully or at all, and not bother TED’s servers if it hasn’t been.)

  2. wget doesn’t give good return values, but this should do the trick:

    wget -O- http://feeds.feedburner.com/tedblog 2>/dev/null | sed -ne ‘s#.*embed\/\(.*\)-embed_high\.flv.*#\1_480.mp4#p’ | xargs -i bash -c “echo looking for {}; if [ \! -e {} -o -e .{}.incomplete ]; then touch .{}.incomplete; wget -c “http://video.ted.com/talks/podcast/{}” | grep saved && rm .{}.incomplete; fi”

Leave a Reply