PDA

View Full Version : saving streaming flash video



stuart.reinke
September 13th, 2009, 11:52 AM
Hi all, I'm trying to save streaming flash video to my hard drive.

I've read a couple tutorials on how to do this. They both say to copy the streaming file from the /tmp directory to the desktop and rename it. Sound simple enough.

I can't find any temporary flash files (Flashxxxxxx) in my /tmp directory while the video is streaming.

I tried a movie from Hulu and the only temporary files that show up are the commercials. The movie has nothing.

I also tried a tv show from CBS.com and got no file at all. (even using ls -a)

What am I doing wrong?

Странник
September 13th, 2009, 11:53 AM
I use a firefox addon. videodownloader

stuart.reinke
September 13th, 2009, 12:10 PM
I use a firefox addon. videodownloader

i'll give that a try.

SuperSonic4
September 13th, 2009, 12:15 PM
I use video downloadhelper for firefox

NESFreak
September 13th, 2009, 01:04 PM
open adblocks blockable objects list (ctrl-shift-v) filter for any flv files, copy its url and do whit that url whatever you want (download, open in external mediaplayer, whatever)

binbash
September 13th, 2009, 01:05 PM
Use a firefox addon. NESFreak's way also works.

etnlIcarus
September 13th, 2009, 01:12 PM
- The flashgot addon for Firefox will put download links in your statusbar for a number of streaming sites (youtube, pornhub, etc).

- In the case of Youtube, I use "YousableTubeFix", from userscripts.org. Besides adding download links in a number of formats in the video description column, it also makes youtube a lot less infuriating.

- sudo aptitude install youtube-dl. Read it's manpage; it's very straight-forward.

hoppipolla
September 13th, 2009, 01:13 PM
I use video downloadhelper for firefox

2nded :)

hoppipolla
September 13th, 2009, 01:14 PM
- The flashgot addon for Firefox will put download links in your statusbar for a number of streaming sites (youtube, pornhub, etc).

- In the case of Youtube, I use "YousableTubeFix", from userscripts.org. Besides adding download links in a number of formats in the video description column, it also makes youtube a lot less infuriating.

- sudo aptitude install youtube-dl. Read it's manpage; it's very straight-forward.

What's wrong with Youtube? As long as you have the official adobe plugin it should run smooth as anything :)

etnlIcarus
September 13th, 2009, 01:23 PM
What's wrong with Youtube? As long as you have the official adobe plugin it should run smooth as anything :)

Videos automatically start; they only offer two size options: small and full-screen; the site doesn't honour your quality settings, often starting videos in, "HQ"; comments are visible, creating the temptation to flame idiots; other, extraneous information is displayed, that I don't want.

Also, Adobe haven't enabled video acceleration for people using R300 graphic chipsets, so it's hardly, "smooth".

RabbitWho
September 13th, 2009, 01:31 PM
I'm using video downloadhelper.. what program can i use to convert the downloaded videos into .ogg (I just want the audio)?

ecmatter
September 13th, 2009, 02:54 PM
I'm using video downloadhelper.. what program can i use to convert the downloaded videos into .ogg (I just want the audio)?

The following command converts to mp3:



ffmpeg -i full/path/to/file.flv -vn new_file.mp3


*I've never used it to convert to ogg, but I think you would use the same command (replacing '.mp3' with '.ogg', of course).

RabbitWho
September 13th, 2009, 03:20 PM
The following command converts to mp3:



ffmpeg -i full/path/to/file.flv -vn new_file.mp3
*I've never used it to convert to ogg, but I think you would use the same command (replacing '.mp3' with '.ogg', of course).

Tried it with mp3 to start, cd to the folder with the videos in it and then pasted in what you wrote, everything stayed the same, what else do I have to do?

ecmatter
September 13th, 2009, 03:41 PM
Tried it with mp3 to start, cd to the folder with the videos in it and then pasted in what you wrote, everything stayed the same, what else do I have to do?

When you pasted in what I wrote, you changed 'full/path/to/file.flv' to reflect an actual file on your computer?

Do you have the restricted-extras package installed?

SuperSonic4
September 13th, 2009, 03:46 PM
I'm using video downloadhelper.. what program can i use to convert the downloaded videos into .ogg (I just want the audio)?

Use ffmpeg


ffmpeg -i input.flv -vn -acodec libvorbis -ac 2 -ab 128k output.ogg

RabbitWho
September 13th, 2009, 05:05 PM
When you pasted in what I wrote, you changed 'full/path/to/file.flv' to reflect an actual file on your computer?



wey-hey it worked! stupidly I thought if I was in the right directory I wouldn't have to put in the full path!

Sorry about that, thanks!

I don't suppose there's a nice way to get that to apply to all files in a folder?

Next question:

Is there a way to record streaming music files from things like myspace and deezer?

NESFreak
September 15th, 2009, 05:24 PM
I don't suppose there's a nice way to get that to apply to all files in a folder?

the following command should do that for you:
first go to the directory which contains the files you'd like to convert*
next enter the following command:

for i in *.flv; do ffmpeg -i $i -vn -acodec libvorbis -ac 2 -ab 128k ${i%flv}ogg; done


*(tip: a small utility called nautilus-open-terminal, which allows you to open the directory you're viewing by just richtclicking on some empty space, and select open in terminal. It's really neat, and available in synaptic, after installing nautilus requires a restart though, 'killall nautilus; nautilus)