LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-05-2010, 03:37 PM   #1
CrashedAgain
Member
 
Registered: Jan 2004
Posts: 307

Rep: Reputation: 33
Capture Flash 10 Video


Does anyone know how to capture Flash 10 video clips?

With older versions of Flash the clips could be found in the Firefox cache file and just copied over but with Flash 10 this does not work becuase either there is no cache file or else it is located somewhere else.

Thanks
 
Old 07-06-2010, 08:57 AM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,325

Rep: Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330
have you seen youtube-dl?
http://bitbucket.org/rg3/youtube-dl/wiki/Home
 
Old 07-06-2010, 08:57 AM   #3
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,646

Rep: Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969Reputation: 7969
Quote:
Originally Posted by CrashedAgain View Post
Does anyone know how to capture Flash 10 video clips?

With older versions of Flash the clips could be found in the Firefox cache file and just copied over but with Flash 10 this does not work becuase either there is no cache file or else it is located somewhere else.

Thanks
There are several plugins for Firefox that let you do this. DownloadHelper and Flash Video Resources Downloader are two that jump to mind.
 
Old 07-06-2010, 09:40 AM   #4
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
I just go to /tmp and cp (or mv) the file with Flash in it's name to some place more permanent (at the same time renaming it to semehting more useful) before it disappears
 
Old 07-06-2010, 02:12 PM   #5
CrashedAgain
Member
 
Registered: Jan 2004
Posts: 307

Original Poster
Rep: Reputation: 33
Sample Video I am trying to download: http://artistsnetwork.tv/preview.aspx?productID=221

youtube-dl gives an invalid url error message.
DownLoad Helper does nothing
Unplug finds only the .swf media player not the video
I installed FFlash Video Resources Downloader plugin but cannot figure how to start it.

There is no video cache file in either /tmp of Firefox cache

Ideas????
 
Old 07-06-2010, 02:39 PM   #6
arizonagroovejet
Senior Member
 
Registered: Jun 2005
Location: England
Distribution: openSUSE, Fedora, CentOS
Posts: 1,094

Rep: Reputation: 198Reputation: 198
flvstreamer (or rtmpdump(*)) will do it. The trick is finding the url of the video to give to flvstreamer.

From using Live HTTP Headers it's possible to see that Firefox is requesting the url http://artistsnetwork.tv/artistsnetw...a.aspx?pid=221. Request that url and you get the url of the actual video.


Of course making copies of copyrighted media without the content of the copyright holder may be illegal in whatever country you happen to reside in so you should of course ensure that you have permission etc.


(*) flvstreamer is a fork of rtmpdump without that bit(s) which caused sites hosting it to be hit with a DMCA notice or some such thing. rtmpdump probably isn't in your distro's repos, but flvstreamer probably is. rtmpdump is still freely available from non-US based hosting locatable via Google.
 
Old 07-06-2010, 02:50 PM   #7
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,138
Blog Entries: 6

Rep: Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827
The video is here
http://www.youtube.com/watch?v=GOFj-1ElwMU

I found that by using
Code:
curl http://artistsnetwork.tv/preview.aspx?productID=221
Then did a search on youtube for artistnetwork
http://www.youtube.com/results?searc...work+tv&aq=0sx

I use cclive to download .flv videos from the web with this FreeBSD box.

Use whatever you like to download the you tube video.
 
Old 07-06-2010, 09:58 PM   #8
CrashedAgain
Member
 
Registered: Jan 2004
Posts: 307

Original Poster
Rep: Reputation: 33
Got rtmpdump from Debian repositories (I'm using Ubuntu) & it works.

Takes a bit of figuring to work out the syntax to get it to work...the "help" is pretty brief and doesn't make it clear that the url must be in quotes.

ie This works:
Code:
crashedagain@acer:~$ rtmpdump -r "rtmp://sas-Flash.OnstreamMedia.com/ondemand/FlashDMSP/fw_artistsnet/Nice Trees/NiceWatercolorPrev.flv" -o NiceTrees.flv
This just creates an empty file:
Code:
crashedagain@acer:~$ rtmpdump -r rtmp://sas-Flash.OnstreamMedia.com/ondemand/FlashDMSP/fw_artistsnet/Nice Trees/NiceWatercolorPrev.flv -o NiceTrees.flv
Thanks arizonagroovejet.

..and yes I'm aware of the legalities of copying stuff but I needed an example to work with.
 
Old 07-07-2010, 02:41 AM   #9
arizonagroovejet
Senior Member
 
Registered: Jun 2005
Location: England
Distribution: openSUSE, Fedora, CentOS
Posts: 1,094

Rep: Reputation: 198Reputation: 198
Quote:
Originally Posted by CrashedAgain View Post
...doesn't make it clear that the url must be in quotes.
That's because it doesn't have to be in quotes. The url you're dealing with contains spaces, that's why you need to enclose it in quotes. If the url didn't contain spaces, or characters the shell interprets as having special meaning (e.g. &), then quotes wouldn't be needed. This is a fairly basic concept of working in a *nix shell, it's not unique to rtmpdump.

E.g. This creates two files, one called hello and one called world.

Code:
$ touch hello world
This creates one file called 'hello world'

Code:
$ touch 'hello world'
If you wanted to copy that file called 'hello world' you need to use
Code:
$ cp 'hello world' goodbye
or

Code:
$ cp hello\ world goodbye

This is why anyone who regularly works on *nix system command lines generally avoids creating filenames, or indeed urls, that contain spaces. In practice I wouldn't create a file called 'hello world' I'd call it hello_world. I'd also never create a file that contained an & in it's filename. In my experience people who only ever use an OS with a GUI and never touch a command line will create files and directories (which they'll insist on calling folders) with names that contain spaces and pretty much anything else their OS will let them. They also won't enclode any of those names containing spaces in quotes when they email you, which can lead to confusion as to what exactly they're refering to. But that's another story
 
Old 07-07-2010, 10:24 AM   #10
CrashedAgain
Member
 
Registered: Jan 2004
Posts: 307

Original Poster
Rep: Reputation: 33
Never thought to check for that!
So then this should work:
Code:
rtmpdump -r rtmp://sas-Flash.OnstreamMedia.com/ondemand/FlashDMSP/fw_artistsnet/Nice\ Trees/NiceWatercolorPrev.flv -o Nice_Trees.flv
...and it does!

Thanks
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Question about RTD VFG7350,Compressed video capture,Mplayer,Cat video dxj Linux - Software 0 01-10-2010 01:49 AM
What happened to Flash Player 9 sound after installing a video capture card? davegutz Linux - Desktop 5 02-09-2007 05:14 PM
AV420 Video Capture to Compact Flash rstar Linux - Software 2 06-09-2005 05:20 PM
Capture Video to Compact Flash rstar Linux - General 1 06-07-2005 08:10 AM
Capture support for dvd and video capture in linux is it even going to be real ever? maximalred Linux - Distributions 3 07-06-2003 07:29 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:02 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration