Skip to content

Instantly share code, notes, and snippets.

@erikccoder
Forked from mattintosh4/ffplay.applescript
Last active August 29, 2015 14:07
Show Gist options
  • Save erikccoder/49f97cf198c9124f36a2 to your computer and use it in GitHub Desktop.
Save erikccoder/49f97cf198c9124f36a2 to your computer and use it in GitHub Desktop.
property ffplay : "/usr/local/bin/ffplay"
on main(input)
do shell script ffplay & space & quoted form of input
end main
on open argv
repeat with aFile in argv
main(POSIX path of aFile)
end repeat
end open
on run
main(POSIX path of (choose file))
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment