Friday, August 12, 2011

How to download Flash 10.2 video streams in Linux.


1- Download this Script here .


2- change mod the file to be executed
Type: chmod +x flashcache


3- load the video in a browser (wait until the video complete load), and check the output of the following command:
lsof | grep -i flash

 
This came out with a predictable, and very useful single line:
plugin-co 25646 n00b 17u REG 8,2 31286337 787220 /tmp/FlashXXepl6qa (deleted)


The second field of the output tells us which process currently has the file descriptor open, and the fourth tells us which number the file descriptor has taken. This is all we need to access the file itself.

4- run the script and put the secound field(25646) to script like this:
./flashcache 25646

If the script found the video it will show you this message:
/proc/25646/fd/27 -> foundflash.1.flv

That it, Good Luck.

-----------------------------------------------------------------------------------------------------

http://n00bsys0p.wordpress.com/2011/02/10/how-to-download-flash-10-2-video-streams-in-linux/

Thursday, August 11, 2011

SAVE STREAMING VIDEO, SAVE FLASH VIDEO... no program needed ON Mac

THIS TUTORIAL WILL COVER HOW TO SAVE FLASH VIDEOS FROM ANY SITE.

When you watch a video from youtube, google...ect the video once COMPLETELY downlaoded is ALREADY SAVED to your computer in a hidden directory. ALL YOU HAVE TO DO IS MOVE IT.

Use the TERMINAL application from applications/utilities folder...its easy. You will only need 3 commands: cd (change directory=change folder), ls (list whats in the folder), and cp (copy)

Tiger
*you can copy and paste these commands into the terminal window*

1. Start Terminal type "cd /private/var/tmp/folders.501/TemporaryItems" enter

2. This will take you to the folder with the flash video(s) type "ls" enter this will show the contents of the folder. (The flash videos will be FlashTmp1, FlashTmp2...and so on) Choose video 2 for example.

3. type "cp FlashTmp2 ~/Desktop" enter

THATS IT! The file will be moved to your desktop; play it with an flv player, covert it, delete it...ect.


Leopard (slightly more difficult)

1. Start Terminal type "cd /private/var/folders/" enter

2. Type "ls -R | grep "TemporaryItems" enter
it will give you the path for TemporaryItems folder .

3. Remove "./" from first of the path and enter to it by this command
Type "cd eeQUOonjE-GWvpRuzmR29+++TI/TemporaryItems" enter

4. This will take you to the folder with the flash video type "ls" enter this will show the contents of the folder. (The flash videos will be FlashTmp1, FlashTmp2...and so on) Choose video 2 for example.

5. type "cp FlashTmp2 ~/Desktop/FlashTemp2.flv" enter

THATS IT! The file will be moved to your desktop; play it, covert it, ect

---------------------------------------------------------------------------------------------------------------------
http://forums.macrumors.com/showthread.php?t=403792