Tutorial : Save DB videos
Purpose :
You wish you download the DB video of the girl you just visited, and save it to your computer for posterity. Follow those simple steps below.
Principle :
When you click on Play video, on a DB page where it's available, a new window will open, and the video will start. What is happening is that there's a video player integrated in that window, and it will play a video file saved on sex141 servers.
In term of code behind, it's very simple, there's just a few programming lines saying Video player read file http://photo.sex141.com/9990/vid ... 89fb594663f508c.mp4
If you open that link, you will be offered to save that file to your computer. The video is in mp4 format. So the aim is to find that link, and it's done.
Tutorial :
Let's try to open the nice video from this Charming girl, haha...
1. Click on Play Video to launch it
2. Read the Page source of the new window (=coding lines behind)
a. If you use Firefox : Open the window larger, and Right-Click anywhere on the white area, and select "View page source". Alternatively, just click on Shortcut Ctrl+U
b. If you use Internet Explorer : Click in the menu on View / Source
c. If you don't understand anything, copy the page address of the new window, and paste it into that website, in the blue box just above the "Go" button (overwrite the existing http://), then click Go
Whatever the method you use, you will then see the source code of the window
3. There are just several code lines (around 30). Check the line situated around 12 lines before the end, you will find the link to the mp4 file.
provider:"http",
file: "http://photo.sex141.com/14234/video/b205744033fdd935a9fa18319a9bc0eb.mp4",
height: 360,
width: 480
});
</script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-1899037-1";
urchinTracker();
window.self.focus();
</script>
</body>
</html> In our example, the file link is http://photo.sex141.com/14234/vi ... 9fa18319a9bc0eb.mp4
4. Open the link in a new window, you'll be offered to save the mp4 file.
Just that simple
[ Last edited by marcopo at 14-3-2012 15:40 ] |