How-to Save a Flash Video
Linux Journal's Mitch Frazier demonstrates how to save a local copy of a flash video when you don't have a save option.
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
| Using Salt Stack and Vagrant for Drupal Development | May 20, 2013 |
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
- Using Salt Stack and Vagrant for Drupal Development
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- New Products
- Validate an E-Mail Address with PHP, the Right Way
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- The Pari Package On Linux
- Home, My Backup Data Center
- New Products
- Developer Poll
- This is the easiest tutorial
4 hours 22 min ago - Ahh, the Koolaid.
10 hours 1 min ago - git-annex assistant
16 hours 59 sec ago - direct cable connection
16 hours 23 min ago - Agreed on AirDroid. With my
16 hours 33 min ago - I just learned this
16 hours 37 min ago - enterprise
17 hours 7 min ago - not living upto the mobile revolution
19 hours 59 min ago - Deceptive Advertising and
20 hours 34 min ago - Let\'s declare that you have
20 hours 35 min ago
Enter to Win an Adafruit Prototyping Pi Plate Kit for Raspberry Pi

It's Raspberry Pi month at Linux Journal. Each week in May, Adafruit will be giving away a Pi-related prize to a lucky, randomly drawn LJ reader. Winners will be announced weekly.
Fill out the fields below to enter to win this week's prize-- a Prototyping Pi Plate Kit for Raspberry Pi.
Congratulations to our winners so far:
- 5-8-13, Pi Starter Pack: Jack Davis
- 5-15-13, Pi Model B 512MB RAM: Patrick Dunn
- Next winner announced on 5-21-13!
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.



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.