5
2
There used to be a method for extracting buffered flash video in any browsers (like firefox, chrome, etc.), which makes use of the command ps
and spies the fd
that is pointing to an in-memory temporary file. Unfortunately, this method doesn't work any more. For example, all fd
used by chromium is:
chrome 19412 ymf 69u REG 0,14 470364 0 270129 /dev/shm/.org.chromium.Chromium.1fzPuo (deleted)
chrome 19412 ymf 77u REG 0,14 131060 0 270141 /dev/shm/.org.chromium.Chromium.94K6Di (deleted)
chrome 19412 ymf 103u REG 8,5 2052 0 4230990 /var/tmp/etilqs_01QDHFotJcLOpBS (deleted)
chrome 19412 ymf 112u REG 8,5 24600 0 4232788 /var/tmp/etilqs_tFao7GamL5cslaZ (deleted)
chrome 19412 ymf 188u REG 8,6 16384 0 1310851 /home/ymf/.config/chromium/Default/History Index 2013-07-journal (deleted)
chrome 19412 ymf 189u REG 8,5 16400 0 4232787 /var/tmp/etilqs_D5p3BT7rtTSWLsy (deleted)
None of them contains media content.
And I firmly believe that there's someway we can grip the playing video (on Linux), since the video is streamed from the server whenever we play it (without the help of any browser-specific plugins).
3I use DownloadHelper extension on Firefox and it extracts most media content. – Boris_yo – 2013-07-22T09:44:13.570
On Windows I use VideoCacheView. Are you looking for a LINUX specific solution here ?
– Ankit – 2013-07-27T07:59:54.203@Lamb Yes. I'll add this clarification to my post. – Determinant – 2013-07-27T08:09:50.183
Have you already tried everything here: http://www.kirsle.net/blog/kirsle/download-any-flash-video-in-linux (Does everything on that site fall under the old method you mentioned?)
– A.M. – 2013-07-31T04:23:09.917Are you aware that
chrome
is notchromium
and thatchrome
usespeperflash
? – Braiam – 2013-08-02T04:24:33.413@Braiam Sorry, I wasn't aware of that. And BTW, I'm using chromium. – Determinant – 2013-08-02T04:53:26.407