summary Examples of usage
labels Phase-Implementation
Play a video (may prompt for filename still, override with -y):
get_flash_videos -p http://some.site/video
Download a video (note quotes are required for URLs with special characters like '&' in):
get_flash_videos "http://some.site/video?f=1&v=1234"
Play the URL on the clipboard (UNIX):
xclip -o | xargs get_flash_videos -y -p
Play the URL on the clipboard (OSX):
pbpaste | xargs get_flash_videos -y -p
(Note if there is text on the clipboard rather than a URL above then get_flash_videos will search for it).
Play the first video matching "Open Source":
get_flash_videos -y -p Open Source
Install a plugin:
get_flash_videos --add-plugin http://website.com/PluginName.pm
Download all videos from file containing a list of URLs separated by new lines:
cat urls | while read line; do get_flash_videos "$line"; done