Skip to content

Instantly share code, notes, and snippets.

View sdeancos's full-sized avatar
🪐
divide et impera

SM sdeancos

🪐
divide et impera
  • Madrid, Spain.
View GitHub Profile
@sdeancos
sdeancos / download_photos_pycones2014
Created April 7, 2015 17:05
quick&dirty download photos PyConEs2014 ZGZ
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# download_photos_pycones2014.py
import urllib2, shutil
from BeautifulSoup import BeautifulSoup
def main():
host = 'http://2014.es.pycon.org/static/fotos/'
@sdeancos
sdeancos / gist:49349e2e34ff5dfa0c7d
Created January 19, 2015 22:50
Converting Video Formats with FFmpeg
ffmpeg -i input.avi -ab 128k -ac 2 -ar 48000 -vcodec mpeg4 -vtag xvid -qscale 1 output.avi