Skip to content

Instantly share code, notes, and snippets.

View DustinAlandzes's full-sized avatar

Dustin Alandzes DustinAlandzes

View GitHub Profile
@DustinAlandzes
DustinAlandzes / FFMPEG_Notes.md
Created August 7, 2017 20:33 — forked from pjobson/FFMPEG_Notes.md
FFMPEG Notes

Some Recipies for ffmpeg Usage

I screw around with ffmpeg a lot, here are some recipies which I frequently use.

AUDIO

... to MP3

ffmpeg -i <input>.wav -codec:a libmp3lame -b:a 320k output.mp3

ffmpeg -i .wav -codec:a libmp3lame -q:a 0 output.mp3

@DustinAlandzes
DustinAlandzes / webcam-cv2.py
Created February 21, 2017 03:19 — forked from tedmiston/webcam-cv2.py
Display the webcam in Python using OpenCV (cv2)
'''
Simply display the contents of the webcam with optional mirroring using OpenCV
via the new Pythonic cv2 interface. Press <esc> to quit.
'''
import cv2
def show_webcam(mirror=False):
cam = cv2.VideoCapture(0)
while True: