Loading
Home ›
How-to Save a Flash Video
Jan 21, 2009 By Mitch Frazier
Linux Journal's Mitch Frazier demonstrates how to save a local copy of a flash video when you don't have a save option.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Linux-Based X Terminals with XDMCP
- 100% disappointed with the decision to go all digital.
- Readers' Choice Awards 2011
- Parallel Programming with NVIDIA CUDA
- You Need A Budget
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- The Linux RAID-1, 4, 5 Code
- Python for Android
- Gnome3 is such a POS. No one
5 hours 4 min ago - Gnome 3 is the biggest POS
5 hours 15 min ago - I didn't knew this thing by
11 hours 19 min ago - Author's reply
14 hours 44 min ago - Link to modlys
15 hours 50 min ago - I use YNAB because of the
16 hours 2 min ago - Search
21 hours 5 min ago - Question
21 hours 28 min ago - for the record
21 hours 31 min ago - That's disappointing. Thanks
23 hours 54 min ago





Comments
What is he saying at :39? I
What is he saying at :39? I cannot understand him.
yet another simple way
I usually use download helper plugin for Firefox because I did not know how easy it was to do it in the manner described above.
Bash Script to save videos
I wrote a script to do this for me and it also brings up a dialog box to have you name it.
Create a new file and name it whatever (mine is called “Flash Video.sh”)
Put this in the file
#!/bin/bash
name=$(zenity --entry --height=100 --width=300 --title=”Name your Video” --text=”Please change to desired name “)
cp /tmp/Fla* ~/Videos/”$name”
Now set the file permissions for it.
$ sudo chmod 755 filename
and store this file in ~/.gnome2/nautilus-scripts/
I then made a custom application launcher and added it to my top panel. All you have to do is direct it to the script in the COMMAND box (mine shows ~/.gnome2/nautilus-scripts/Flash\ Video.sh) and make it an Application (not application in Terminal)
Without Adobe flash...
If you don't want to install the proprietary flash plugin, swfdec works very well as a free software Flash replacement (better than Gnash, in my experience) and gives you the option in its context menu to save the video in cases where Adobe's plugin wouldn't.
If you don't want to install any flash plugin at all, youtube-dl from the command line works too.
Another way to save without copying
I normally create a hard link for the Flashxxxx file in the same file system so that it doesn't occupy any extra space. I use the following command to create the hard link
ln Flashxxxx Song.flv
One can do that if they don't have extra free space in their system.