Reputation: 409
I have a java program to download a video file via HTTP. But it just can download that webpage instead of video. I do not know the video file address. How could I get it?
Thanks in advance.
Upvotes: 1
Views: 2208
Reputation: 1055
You have to know the video url to download it. You can try to parse the html file to find it, but you need to know what you are looking for, is it <video>
tag or <object>
tag with flv file...
Upvotes: 1