This is what I've used to build and upload Twigs using OSX 10.11.4
This is the AVR interface I'm using
brew tap PX4/homebrew-px4
This is what I've used to build and upload Twigs using OSX 10.11.4
This is the AVR interface I'm using
brew tap PX4/homebrew-px4
This is what I used to build Branches using OSX 10.11.4
This is the AVR interface I'm using
brew tap PX4/homebrew-px4
for i in *.wav; do lame -b 320 -h "${i}" "${i}.mp3"; done |
--- osascript open_ableton_project.scpt [project name] | |
on run argv | |
tell application "Finder" | |
--- get current directory | |
set parentpath to POSIX path of (parent of (path to me) as text) | |
end tell | |
tell application "Ableton Live 9 Suite" | |
open (POSIX path of parentpath) & "assets/ableton/" & item 1 of argv & " Project/" & item 1 of argv & ".als" | |
end tell |
#!/bin/sh | |
# | |
# Get the total duration for .mov video files in the current directory | |
# | |
find *.mov -print0 | xargs -0 /Applications/MPlayer\ OSX\ Extended.app/Contents/Resources/Binaries/mpextended.mpBinaries/Contents/mpextended.mpBinaries/Contents/MacOS/mplayer -vo dummy -ao dummy -identify 2>/dev/null | perl -nle '/ID_LENGTH=([0-9\.]+)/ && ($t +=$1) && printf "%02d:%02d:%02d\n",$t/3600,$t/60%60,$t%60' | tail -n 1 |
input_file, | |
output_file, | |
start_time, | |
duration, | |
fps, | |
scale = *ARGV | |
options = "-ao null -nosound -vo gif89a:fps=#{fps}:output=#{output_file} -ss #{start_time} -endpos #{duration} -vf scale=#{scale}" | |
player_path = "/Applications/MPlayer OSX Extended.app/Contents/Resources/Binaries/mpextended.mpBinaries/Contents/mpextended.mpBinaries/Contents/MacOS/mplayer" |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>JavaScript Web Speech API Example</title> | |
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
var final_transcript = ''; |
require "java" | |
require "benchmark" | |
# To install and build CMU Sphinx, from the directory where you wish to run this script: | |
# | |
# svn co https://svn.code.sf.net/p/cmusphinx/code/trunk/sphinx4 | |
# cd sphinx4 | |
# ant | |
# |