SuprBay: The PirateBay Forum

Full Version: Download videos online from any video hoster FREE
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I just want to share a free site that I always use for this process.

https://9xbuddy.com

METHOD
1. View a video on any site
2. Copy the video URL
3. Open 9xbuddy.com
4. Enter the URL in the input field at the top of the page and press enter
5. Get links to download the video.

Here you can view the video hosters supported. (Almost Everyone!!!)
https://9xbuddy.com/sites
I have an app called Tampermonkey. It leaves a little green arrow over all videos allowing you to "one click" and it downloads. 

I'll have to check out the one you've posted.
youtube-dl

youtube-dl is a command-line program to download videos from YouTube.com and a few more sites.
https://ytdl-org.github.io/youtube-dl/su...sites.html

Note:
- youtube-dl requires Python version 2.6, 2.7, or 3.2+ to work except for Windows exe.
- Windows exe requires Microsoft Visual C++ 2010 Redistributable Package (x86) and does not require Python that is already embedded into the binary.

Code:
youtube-dl [OPTIONS] URL [URL...]
Code:
Video Format Options:
-f, --format FORMAT  Video format code, see the "FORMAT SELECTION" for all the info
-F, --list-formats   List all available formats of requested videos
Full Documentation: https://github.com/ytdl-org/youtube-dl/b....md#readme

Download Page:
http://ytdl-org.github.io/youtube-dl/download.html

Example:
recomended for doing -F first to make sure "video format code" is right.
Code:
youtube-dl -F https://www.youtube.com/watch?v=yhADZohYjNA
[Image: youtube-dl.jpg]
note: different video hosting sites have different "video format code".

Download youtube video in 360p with url https://www.youtube.com/watch?v=yhADZohYjNA
Code:
youtube-dl -f 18 https://www.youtube.com/watch?v=yhADZohYjNA
A simpler solution might be to just install Python (3.7 or 3.8), make sure pip is in /Scripts and

pip install --user youtube-dl

The user arg is needed because it can cause a conflict in the normal site-packages. I ran into it just recently.

All systems should have Python installed, because hackers have done some *wondrous* things with it, and even if you cant speak the language, it doesnt stop you from hacking it.