Skip to content

Instantly share code, notes, and snippets.

@tlinkner
tlinkner / Output Android Icons.jsx
Last active February 19, 2021 14:15
Photoshop script to output Android icons
// Output Android Icons.jsx
// 2012 Todd Linkner
// License: none (public domain)
// v1.0
//
// This script is for Photoshop CS6. It outputs Android icons of the
// following sizes from a source PSD at least 512px x 512px
//
// store:
// Icon.png (512px x 512px)
@markwingerd
markwingerd / GStreamer Tutorial 1 - 3 Play audio
Created November 18, 2014 20:23
GStreamer Tutorial 1: Part 3/3 - Plays an mp3 file
# Set our pipelines state to Playing.
pipeline.set_state(gst.STATE_PLAYING)
# Wait until error or EOS.
bus = pipeline.get_bus()
msg = bus.timed_pop_filtered(gst.CLOCK_TIME_NONE,
gst.MESSAGE_ERROR | gst.MESSAGE_EOS)
print msg
# Free resources.