Hey everyone, Well I figured I would give this a shot. Heres my first new contribution to this forum. I will walk you through step by step how to download the flv file(flash player video) of said video. This most likely is geared toward n00bs of the forum.
just go to the website that has videos like yt.
Right click outside of the video and click on view source.
Look for code that may or may not be similar to the below.
Keep in mind that this is just an example and that you will have to adapt this to the situation you are in.
In this case look for the area that says something like flashvars:"file=...
The /uploads/file.flv is what we are looking for. Just use the domain name along with the directory and file name(s) and there you go. Thats how to pull flvs from the website.
phpfiend
just go to the website that has videos like yt.
Right click outside of the video and click on view source.
Look for code that may or may not be similar to the below.
Code:
<div class="video">
<p id="player1" style="margin-top:0px"><a href="">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var FO = { movie:"/swf/flvplayer.swf",width:"640",height:"480",majorversion:"7",build:"0",bgcolor:"#FFFFFF",allowfullscreen:"true",
flashvars:"file=/uploads/D01.flv&image=/uploads/D01.jpg" };
UFO.create( FO, "player1");
</script>
</div>
Keep in mind that this is just an example and that you will have to adapt this to the situation you are in.
In this case look for the area that says something like flashvars:"file=...
The /uploads/file.flv is what we are looking for. Just use the domain name along with the directory and file name(s) and there you go. Thats how to pull flvs from the website.
phpfiend