AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Mass Video (+YouTube) Ripper with Multi-thread Downloader
Goto page 1, 2, 3, 4, 5, 6  Next
 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
fures



Joined: 31 Jan 2008
Posts: 88

PostPosted: Wed Jul 09, 2008 8:52 pm    Post subject: Mass Video (+YouTube) Ripper with Multi-thread Downloader Reply with quote

SuperRipper is a free video ripper script to mass download videos, pictures and other content that are linked or embedded in html web sites.

SuperRipper will:

- scan html files

- following through any click-depth

- for linked or embeded video/audio/pic stuff (you define file extension),

- put filtered file links into a download queue,

- and start a real multithreaded download process with 1-16 parallel downloads (auto sorted re-naming downloaded files).



It also uses "link-stripping" for link-in-link type urls. (you know these link: http://some.com/what.php?link_url=http://other.com/video_stuff.php?k=key&ref=wherefrom)

It also supports flv files from YouTube + Altavista, Alltheweb, Google ...

You can add direct search links to start ripping from e.g. YouTube + keywords

It also can follow search pages: 1-2-3-4-5-6-7-8-9-10... etc.

Can download some mass, so be careful with your discspace... Laughing



Give it a look & try if curious.

cheers,
fures

PS: I used some code from other coders in my script:
- HTTPQueryInfo from olfen
- Eval - evaluate arithmetic expressions from Laszlo
Thanks for them.

Download the latest version from the link in the next post.
Enough to download the main program (SuperRipper.exe or .ahk) - that will install the other stuff (downloader and icons).


Last edited by fures on Thu Jul 09, 2009 7:05 am; edited 3 times in total
Back to top
View user's profile Send private message
fures



Joined: 31 Jan 2008
Posts: 88

PostPosted: Sun Jul 13, 2008 2:26 pm    Post subject: Reply with quote

I fiddled a bit with speed optimization...

Updated version at my site:

[updated links: 2009-07-09]
Windows exe:
VidRipper.exe




These are not needed for running the exe (will be installed automatically)

Script ahk:
VidRipper.ahk
VidRipper_Dnl.ahk

Icons are also located there:
down.ico
error.ico
info.ico
ok.ico
search.ico


fures


Last edited by fures on Thu Jul 09, 2009 6:55 am; edited 2 times in total
Back to top
View user's profile Send private message
Guest






PostPosted: Mon Jul 14, 2008 8:20 am    Post subject: Reply with quote

Looks very nice. Only seems a bit too much work for ripping bad quality videos from youtube. Smile
Back to top
BoBo˛
Guest





PostPosted: Mon Jul 14, 2008 12:59 pm    Post subject: Reply with quote

@ fures
Thx for sharing it. Btw, which tool you used to create that commented screenshot?
Back to top
fures



Joined: 31 Jan 2008
Posts: 88

PostPosted: Mon Jul 14, 2008 1:03 pm    Post subject: Reply with quote

@Guest
Yepp. But I still enjoy it...

@Bobo
The tool is simply PowerPoint (sorry...)

fures
Back to top
View user's profile Send private message
fures



Joined: 31 Jan 2008
Posts: 88

PostPosted: Mon Jul 14, 2008 1:15 pm    Post subject: Reply with quote

By the way, the point here is the proof of concept for a multi-threaded download technology.

The problem was that in AHK, URLDownloadToFile is a little rigid: It freezes running until download is done or timed out, and does not indicate progress. Thus it is not possible to run several downloads parallely.

Now this script contains a method for solving this issue:
The script creates a download queue and uses another script for downloading files in the queue. With this method, each download is a separate instance and the main script can run undisturbed during the downloads.

fures
Back to top
View user's profile Send private message
Azerty



Joined: 19 Dec 2006
Posts: 72
Location: France

PostPosted: Thu Jul 31, 2008 8:20 am    Post subject: Reply with quote

Hi fures

Interresting script

Some blocking points for me :
- can't enter a proxy in interface Sad
- My AHK is not in program files, changed
Code:
            IfExist,C:\Program Files\AutoHotkey\AutoHotkey.exe
               Run, "C:\Program Files\AutoHotkey\AutoHotkey.exe" "myDownload.ahk" "%turl%" "%tfil%" %A_Index%,,,runID

to
Code:
            If (!A__IsCompiled)
               Run, "%A_AhkPath%" "myDownload.ahk" "%turl%" "%tfil%" %A_Index%,,,runID

- In your main post, you should give the recommanded name for files (in particular for the downloader script, for which the name is mandatory Smile )
Back to top
View user's profile Send private message
Payam



Joined: 07 Apr 2004
Posts: 62

PostPosted: Thu Nov 20, 2008 8:41 am    Post subject: Reply with quote

So nicely done.

WOW
Back to top
View user's profile Send private message Send e-mail MSN Messenger
grateful
Guest





PostPosted: Tue Jun 30, 2009 6:29 pm    Post subject: Re: Mass Video (+YouTube) Ripper with Multithread Downloader Reply with quote

When I clicked ion the exe file, it didnt open....?
It ssays: pages cannot be displaced...
Help Please.


Thanks.


fures wrote:
SuperRipper is a free video ripper script to mass download videos, pictures and other content that are linked or embedded in html web sites.

SuperRipper will:

- scan html files

- following through any click-depth

- for linked or embeded video/audio/pic stuff (you define file extension),

- put filtered file links into a download queue,

- and start a real multithreaded download process with 1-16 parallel downloads (auto sorted re-naming downloaded files).



It also uses "link-stripping" for link-in-link type urls. (you know these link: http://some.com/what.php?link_url=http://other.com/video_stuff.php?k=key&ref=wherefrom)

It also supports flv files from YouTube + Altavista, Alltheweb, Google ...

You can add direct search links to start ripping from e.g. YouTube + keywords

It also can follow search pages: 1-2-3-4-5-6-7-8-9-10... etc.

Can download some mass, so be careful with your discspace... Laughing



Give it a look & try if curious.

cheers,
fures

PS: I used some code from other coders in my script:
- HTTPQueryInfo from olfen
- Eval - evaluate arithmetic expressions from Laszlo
Thanks for them.

Download the latest version from the link in the next post.
Enough to download the main program (SuperRipper.exe or .ahk) - that will install the other stuff (downloader and icons).
Back to top
Z_Gecko
Guest





PostPosted: Tue Jun 30, 2009 7:03 pm    Post subject: Reply with quote

grateful, don´t quote whole posts, it´s annoing.
Quote:
When I clicked ion the exe file, it didnt open....?
It ssays: pages cannot be displaced...

That is, because the files are not longer hosted on this server.
Sadly fures didn´t post his scripts on the forum or autohotkey.net,
so the scripts will not be available until fures puts them back there (or better here in the forum)
Back to top
shajul



Joined: 15 Sep 2006
Posts: 564

PostPosted: Thu Jul 02, 2009 2:37 pm    Post subject: Not available.. Reply with quote

So sad that the files are not available now.. Hope you could put them back here.. Thanks in advance.
Back to top
View user's profile Send private message Visit poster's website Yahoo Messenger
TLM



Joined: 21 Aug 2006
Posts: 2926
Location: The Shell

PostPosted: Wed Jul 08, 2009 11:45 am    Post subject: Reply with quote

Yes this is a must have! Please reup.
_________________
paradigm.shift:=(•_•)┌П┐RTFM||^.*∞
Back to top
View user's profile Send private message
fures



Joined: 31 Jan 2008
Posts: 88

PostPosted: Thu Jul 09, 2009 6:52 am    Post subject: New ripper - reworked a bit, reuped Reply with quote

Hi Forum,

Thanks for the interest for the missing files. They are reuped now and can be found here:

The exe file - installs all other stuff (downloader exe and icons)
http://wfures.eqnet.hu/my_ahk_updates/VidRipper.exe

The ahk files:
- main ripper script
http://wfures.eqnet.hu/my_ahk_updates/VidRipper.ahk
- downlaoder thread script
http://wfures.eqnet.hu/my_ahk_updates/VidRipper_Dnl.ahk

Hope you like it.
Best

Fures
Back to top
View user's profile Send private message
TLM



Joined: 21 Aug 2006
Posts: 2926
Location: The Shell

PostPosted: Thu Jul 09, 2009 7:01 am    Post subject: Reply with quote

Ok the weirdest thing happens. When I run the compiled version I get an error, SuperVidRipper does not exist and then it erases itself (kind wish I could do that actually). Same thing happens with the .ahk version.

I was looking forward to this Confused
_________________
paradigm.shift:=(•_•)┌П┐RTFM||^.*∞
Back to top
View user's profile Send private message
fures



Joined: 31 Jan 2008
Posts: 88

PostPosted: Thu Jul 09, 2009 7:10 am    Post subject: Reply with quote

Let me tackle this now.

It works on my XP.
Do you run Vista?
Do you have UAC enabled?
Are you an admin user on your Vista?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page 1, 2, 3, 4, 5, 6  Next
Page 1 of 6

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group