0.0
No commit activity in last 3 years
No release in over 3 years
Download batches of youtube videos
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0

Runtime

 Project Readme

Youtube Bulk Video Downloader:

=======

gem install 'bulk_youtube'

obj = BulkYoutube::Scrape.new(youtube_path,save_folder, max_downloads) 
obj.grab_links.you_convert 
# word is born 
Uses mechanize (2.7.2)

Purpose: when you need to download multiple youtube files, say a course or tutorial i.e. to watch offline. 

Note: pass in max_downloads to increase the amount of mp4s can send.

Variables:

> search = 'https://www.youtube.com/playlist?list=PLV1-QgpUU7N2TVWS6gEVMqEfAFjAl-DV6'
> save = '/path/to/save'
> word = 'French'

Send mp4's to your local folder:

Without keyword search:
> find = Scrape.new(search,save)
> find.grab_links.links #show the link objects as is
> find.grab_links.show #show a more concise version  
> find.grab_links.you_convert #send links to folder
With keyword search:
> find = Scrape.new(search,save)
> find.grab_links('French').links
> find.grab_links('French').you_convert
Set to download more
> Scrape.new(search,save,10).grab_links.you_convert