I think I need to correct my own words of the first post.
I just looked through all the video files that I ever downloaded from that website of mine and discovered that "
Real Player" doesn't actually display the
URLs of any of them! Instead, it displays the path (location) of those files on my computer. This is what "
Clip Info" window of "
Real Player" shows (
File >
Clip Properties >
View Clip Info, or simply
Ctrl + I).
The fact is I have downloaded all of those video files from my website using an
AHK script that contained
UrlDownloadToFile command. But even with some other video files on my computer that I have downloaded from other places on the internet and not with the help of
AHK their
URLs aren't displayed by "
Real Player" either. Perhaps, their
URLs can be seen in some other way on "
Real Player", except I don't know how.
However, if there's no such way in "
Real Player" or in any other video player, then it's good news for me as it seems that if I succeed in compiling my
UrlDownloadToFile-containing
AHK script strongly enough, then the user will only be able to download a file, yet won't be able to know its
URL on the web, which is exactly what I want (unless there are some other ways to find this out, and I am afraid there are such ways).
So here is my question: if the "
Real Player" doesn't show the
URL, is there still a way to find out where the file is being downloaded from, perhaps, through checking the computer's current connection?
There are still some other things that look kind of strange to me:
Firstly, I can't download video files from my website using
FireFox. If I type this
URL of my video file
http://bottleneck.0fees.net/monolithic_video.MPG
into
FireFox address bar and press
Enter, nothing happens.
Why is it so? Is it some problem with my
FireFox? Can anyone who also has
FireFox, please, check it out for me? That file is very small - only 1, 216 KB, and, of course, it has no viruses. (I myself shot this video).
Secondly, if I type that
URL into the address bar of
IE7 (I am also using
IE7) and then press
Enter, I can see the downloading window for a moment (as if the file were being downloaded into some folder on my computer), and then the "
Real Player" launches automatically, playing back my video file.
What is interesting is that in this case, I really can't locate the downloaded file on my computer! I looked everywhere - in
My Downloads, in
My Documents, on the desktop, in
Program Files, etc. - I even used the search function throughout the whole of
My Computer and just couldn't find that file!
The impression that I get here is that the file is kind of being streamed to my computer while I am playing it back in the "
Real Player", rather then is firstly downloaded on my computer; or, perhaps, the file is being downloaded into some sort of operating memory (my knowledge here is very limited) that keeps files in it only while executing them.
And in this case "
Real Player" shows me the actual
URL of the video file in the "
Clip Info" window! If I click to see the file info window, after it finished playing, I will see the
URL of that file (not its location on my computer).
I guess it was in this case (using
IE7) that I saw "
Real Player" showing me the file's
URL and, therefore, decided to start this thread.
Well, if use an
AHK script with
UrlDownloadToFile command (and I know that this command also uses
IE):
Code:
URL = http://bottleneck.0fees.net/monolithic_video.MPG
file = monolithic_video.MPG
UrlDownloadToFile, %URL%, %file%
msgbox, It's done!!!
then the file is successfully downloaded to my default folder, and the file info window in "
Real Player" shows me its location on my computer - not its
URL.