GET_FLASH_VIDEOS(1p) | User Contributed Perl Documentation | GET_FLASH_VIDEOS(1p) |
get_flash_videos - Video downloader for various Flash-based video hosting sites
get_flash_videos [OPTION]... URL...
get_flash_videos [OPTION]... SEARCH
Download the Flash video from the web pages given in "URL", choosing suitable filenames for each.
Alternatively if "SEARCH" is specified (either quoted or unquoted), get_flash_videos will search Google Video for "SEARCH", and present a list of videos to download.
get-flash-videos attempts to support many video sites, therefore there is no list of supported sites in this manual page as it frequently changes, see the website for a list.
You can specify a quality as either:
or a target resolution:
High corresponds to 1080p or 720p, medium to 576p, 480w and 480p and low to 240w and 240p.
The default is high.
The default on *nix operating systems is to use mplayer:
mplayer -really-quiet %s
You may wish to automatically delete the video after you have viewed it:
mplayer -really-quiet %s; rm %s
On Windows, if "-p" or "--play" is specified but no player is specified, VLC (if installed) will be used to play the video. There is no need to specify where you have installed VLC - this will be automatically retrieved from the registry.
To specify a SOCKS proxy, simply provide the host and port in host:port format. If port is not specified, 1080 is assumed. "LWP::Protocol::socks" is required for SOCKS support.
To specify an HTTP proxy, provide the proxy URL, for example "http://host:port".
For proxying RTMP downloads, SOCKS is required along with a version of "rtmpdump" which supports SOCKS proxying.
If no proxy is specified on the command line or the config file the $HTTP_PROXY environment variable will be used.
On startup get_flash_videos will read the configuration files located at /etc/get_flash_videosrc and then ~/.get_flash_videosrc.
The files follow a simple "name = value" convention where the name matches the long version of the command line options. For example if you want to specify the default player, to always say yes and to always run the player the file might look like:
player = my-video-player %s 2>/dev/null; rm -f %s yes # Always play the video play
Options given on the command line will override these options, with the exception that it is not currently possible to disable an option enabled in the configuration file from the command line.
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
Third party sites are a moving target therefore it is possible support for some of the sites may not work correctly. First check that you are using the latest version.
If you wish to see open bugs or report a bug visit <https://github.com/monsieurvideo/get-flash-videos/issues>.
If you'd like to change or improve get-flash-videos (for example adding support for another site), please see the project wiki where there's an overview to help you get started, and a detailed tutorial on adding support for a new site: <https://github.com/monsieurvideo/get-flash-videos/wiki>.
Copyright 2009, zakflash and MonsieurVideo
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0>
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributions are welcome and encouraged, but please take care to maintain the JustWorks(tm) nature of the program.
2018-07-27 | perl v5.26.2 |