On Mon, Feb 22, 2016 at 07:37:10PM -0500, Michael Lamb wrote: > > I'd be happy to post them directly on the FSF's MediaGoblin instance, if > > someone with access wanted to help me make that happen. > > I don't have that access, but I would love to see that happen, since > (last I checked) SlideShare requires users to run nonfree javascript > to navigate its slides.
I agree it's a pain, but it is possible to download the slides with just a little bit of Bash, since the slides are all there in the source. eg. #!/bin/bash # Fetch the video #wget -c http://media.libreplanet.org/mgoblin_media/media_entries/109/deb-nicholson-80s.medium.webm # Fetch the slides for i in http://image.slidesharecdn.com/styleorsubstancelp2015-160223001717/95/style-or-substance-free-software-is-totally-the-80s-lp2015-{1..68}-638.jpg do wget -c ${i} done # # Zero-pad the slide numbers in the file name to correct the ordering. for i in style-or-substance-free-software-is-totally-the-80s-lp2015-?-* do mv ${i} ${i%%?-638.jpg}0${i##style-or-substance-free-software-is-totally-the-80s-lp2015-} done
signature.asc
Description: Digital signature
