NeoLAB
34 subscribers
150 photos
29 videos
94 files
335 links
Lab of @neo_is_kal

🐧 | @ArchLinuxIndia
🐚 | @PrivacyToolsIOChat
🍬 | @FossMemes

This is a Journal + Shrine of links
Website: https://neovoid.is-cool.dev
Download Telegram
How to easily download videos from Youtube as mp3!

This is just a little script I made. It's nothing special.

​

Depends on youtube-dl and id3v2

#!/bin/bash
cd ~/Music
read -p 'Link: ' link
read -p 'Title of the song: ' title
read -p 'Artist of the song: ' artist
read -p 'Album: ' album
youtube-dl -x --audio-format mp3 --audio-quality 0 -o ~/Music/"$title.%(ext)s" $link
id3v2 -t "$title" -a "$artist" -A "$album" "$title".mp3

tell me what you think about it

https://redd.it/ltnr3a
@r_linux