Quickly resize, convert, extract audio from videos and edit audio from the command line.
A complete, cross-platform solution to record, convert and stream audio and video. https://ffmpeg.org
Install Homebrew first
// full instructions on using this script are available here: https://gist.github.com/oldwestaction/68b5c3bedf6d8acb84ff5a846cd3d8f8 | |
// edit these variables depending on how your sheet is set up | |
// 1 = column A, 2 = column B, and so on | |
var googleSheetMenuButton = 'Custom scripts'; | |
var perfumerColumn = 1; | |
var titleColumn = 2; | |
var fragranceNotesColumn = 3; |
Quickly resize, convert, extract audio from videos and edit audio from the command line.
A complete, cross-platform solution to record, convert and stream audio and video. https://ffmpeg.org
Install Homebrew first
# Adapted from: http://ariejan.net/2010/04/25/ruby-version-and-gemset-in-your-bash-prompt-yes-sir | |
function rvm_version { | |
local gemset=$(echo $GEM_HOME | awk -F'@' '{print $2}') | |
[ "$gemset" != "" ] && echo "@$gemset" | |
} | |
# https://github.com/git/git/blob/master/contrib/completion/git-completion.bash | |
# defines '__git_ps1' current git branch function | |
source ~/.git-completion.bash |