Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Download vids and music like a boss

Yuukun

Recruit
Basic Member
Messages
1
Reaction score
1
Points
18
Well, simple, yet so featurerich. Let me show you how is done.

Install youtube-dl like a boss.
Code:
pip install --upgrade youtube-dl

Then we get those videos... with STYLE.

Make some aliases in your bashrc or zshrc or what you're using.

- download in mp3
Code:
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 --embed-thumbnail
- download an entire playlist as mp3
Code:
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 --embed-thumbnail --yes-playlist
- download in a different folder, but also create a playlsit folder and keep track of what was downloaded.
Code:
-o '~/Music/%(playlist)s/%(title)s.%(ext)s' --download-archive
- if you just want the vid itself, use the config file then:
Code:
youtube-dl LINK

For some basics in
Code:
~/.config/youtube-dl/config/

Code:
# Ignore errors
-i

# Default download
-o '~/Desktop/%(title)s.%(ext)s'

# Format (best quality)
-f best

# Cover art
--embed-thumbnail

# Playlsit
--no-playlist

But what is that I hear? No support for bandcamp? No problem.

Code:
pip install --user bandcamp-downloader
Code:
bandcamp-dl --base-dir '~/Music/'

But what... you want more?! No problem.
https://github.com/obskyr/thehylia
I will leave this one for you to figure out :salute:
 
Last edited:
haha may thread na pala dito. plan ko sana gumawa.
Kakadiscovered ko lang today. I've downloaded "While you were sleeping (by Bae Suzy) 1080p from VIKI with premium account.

I discovered, na eto pala ginagamit ng mga nagririp ng WEBDL sa netflix and viki etc.....
 
You can actually shorten the commands para di mo na sya itatype palagi ng sobrang haba. If you're using BASH tulad ng karaniwang Linux users, you can actually make an alias file and include it in your .bashrc file. Or directly sa iyong .bashrc. file type mo lang, for example:

alias youtd='youtube-dl -4 -c -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best" '

Then to download a youtube video and automatically convert it to best quality MP4, ang itatype mo na lang sa terminal is, youtube , like so: $ youtd https://www.you...our .bashrc file right away. Hope this helps.
 
Well, simple, yet so featurerich. Let me show you how is done.

Install youtube-dl like a boss.
Code:
pip install --upgrade youtube-dl

Then we get those videos... with STYLE.

Make some aliases in your bashrc or zshrc or what you're using.

- download in mp3
Code:
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 --embed-thumbnail
- download an entire playlist as mp3
Code:
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 --embed-thumbnail --yes-playlist
- download in a different folder, but also create a playlsit folder and keep track of what was downloaded.
Code:
-o '~/Music/%(playlist)s/%(title)s.%(ext)s' --download-archive
- if you just want the vid itself, use the config file then:
Code:
youtube-dl LINK

For some basics in
Code:
~/.config/youtube-dl/config/

Code:
# Ignore errors
-i

# Default download
-o '~/Desktop/%(title)s.%(ext)s'

# Format (best quality)
-f best

# Cover art
--embed-thumbnail

# Playlsit
--no-playlist

But what is that I hear? No support for bandcamp? No problem.

Code:
pip install --user bandcamp-downloader
Code:
bandcamp-dl --base-dir '~/Music/'

But what... you want more?! No problem.
https://github.com/obskyr/thehylia
I will leave this one for you to figure out :salute:
i will try this one.keep on sharing
 
Back
Top Bottom