How to find the stream behind a Flash player
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: The Builders
--
Chapters
00:00 How To Find The Stream Behind A Flash Player
00:28 Accepted Answer Score 8
00:52 Answer 2 Score 1
01:07 Answer 3 Score 6
01:35 Answer 4 Score 30
02:18 Thank you
--
Full question
https://superuser.com/questions/114196/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#video #flash #streaming #rtmp
#avk47
ANSWER 1
Score 30
Firebug for Firefox, and the Google Chrome Developer Tools (built-in to Chrome) can show every HTTP request performed by the browser. They sometimes reveal URLs such as these.
In Firefox, install Firebug (no restart), start the addon by clicking the bug icon (use customize to make it visible - but it should be by default), start the stream, and in the Firebug window click Net tab and then All, maybe refresh the video page. The url should appear when putting the mouse over the line that says something like "GET video", right click on the URL and Copy location.
In Chrome, open the Developer tools, check the Network tab and start playing the file.
ACCEPTED ANSWER
Score 8
Download and decompile the flash file. The source of the stream should be pretty easy to find.
It's possible that the player is generic, and the file/stream it is playing is being passed in as a param. Grep the webpage source code for "embed"/"swf" or text that's near the flash object on the page. Then look at the contents of "param name"/"param value"
ANSWER 3
Score 6
Fiddler2 is a great tool for this. Think of it like Wireshark but for HTTP specifically. It will reveal exactly what your browser is doing. It works by setting itself up as a local HTTP proxy. Point your browser to it and it will reveal all of the connections that are made and what data is transmitted.
ANSWER 4
Score 1
URL Snooper or the "Grab++" module of Orbit Download Manager (be carefull for unwanted adware at install) could help you to analyze the network traffic and find the URL