This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# | |
# qt_AddFastStart.sh | |
# | |
# description: uses QTCoffee (http://www.3am.pair.com/QTCoffee.html) 'modmovie' | |
# command to add fast-start headers to all .mov files in the current working | |
# directory | |
# | |
# replace spaces in filenames with underscores |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Generates thumbnail contact sheets of all video files in current working directory. | |
# | |
# Script defaults to writing PNG contact sheets to the same folder, using the original | |
# video filename as the basename for the contact sheet | |
# | |
# More details: https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video | |
# | |
# NOTE: 'montage' requires that Ghostscript be installed, in order to be able to generate titles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on dateISOformat(dateString) set y to text -4 thru -1 of ("0000" & (year of dateString)) set m to text -2 thru -1 of ("00" & ((month of dateString) as integer)) set d to text -2 thru -1 of ("00" & (day of dateString)) return y & m & d end dateISOformat dateISOformat(current date) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jq -r '.personal.path' < ~/.dropbox/info.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Path Finder" | |
set theSelection to selection | |
set selectionList to theSelection as list -- list of fsItems (fsFiles and fsFolders) | |
set LF to character id 10 | |
set AppleScript's text item delimiters to LF | |
if theSelection is not missing value then | |
set fileList to {} | |
repeat with aFile in selectionList | |
set end of fileList to POSIX path of aFile | |
end repeat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Droplr Pro Receipt - 15 Nov 2014" | egrep -o '[0-9]{2} [a-zA-Z]{3} [0-9]{4}' | xargs -I DATESTRING date -jf "%d %b %Y" DATESTRING +"%Y%m%d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Path Finder" | |
set theSelection to selection | |
set selectionList to theSelection as list -- list of fsItems (fsFiles and fsFolders) | |
set LF to character id 10 | |
set AppleScript's text item delimiters to LF | |
if theSelection is not missing value then | |
set fileList to {} | |
repeat with aFile in selectionList | |
set end of fileList to POSIX path of aFile | |
end repeat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This AppleScript will losslessly split an input Quicktime .mov file into 5-minute chunks. | |
-- Requires the "splitmovie" utility, from the QT_Coffee Quicktime utilities package: http://www.3am.pair.com/QTCoffee.html | |
-- | |
-- Usage: Save this script as an Application, and drop the source QT files onto the .app to begin the splitting process. | |
-- Note: There is currently no visual feedback that the script is processing the file. I'm too lazy to add this at the moment. | |
property type_list : {"MOV"} | |
property extension_list : {"mov"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# takes RMD files from source folder full of RMD files (i.e. flat folder containing nothing but .RMDs), | |
# and copies them to their associated .RDC folders located in a different location. | |
RMDFILES="/path/to/rmd_originals" | |
RDCFOLDER="/path/to/RDC_folder" | |
FOLDERS=$(ls -l $RDCFOLDER | awk '{print $9}') | |
for RDC in $FOLDERS |
NewerOlder