Search YouTube and download first result

YouTube-dl Download and Documentation I was a long time user of YTMusic, a premium music subscription service. One day they randomly stopped accepting payments from my card. I tried a few others but nothing worked. In a few days I lost access to all my songs and I had to start with a new account with no explanation for what happened. I decided to not let this happen again and started building a backup of songs. Every time I liked a song, I would append it to list on Evernote. Now whenever I need to have all those songs available locally, I run the following command which iterates over each song title, searches youtube and dowloads first video’s audio. This is about 96% accurate :D ...

June 17, 2021 · 1 min · 141 words · Saqib Razzaq

Download all videos from YouTube channel

YouTube-dl Download and Documentation This command iterates over entire channel and downloads each video one by one. youtube-dl -f best -ciw -o "%(title)s.%(ext)s" -v url_of_channel

March 28, 2021 · 1 min · 25 words · Saqib Razzaq

Download best audio of a YouTube video as MP3

YouTube-dl Download and Documentation Download the best quality audio in mp3 format using the command below. This command also utilises ffmpeg to extract audio. In general, it is a good idea to have ffmpeg installed on your system if you plan to use YouTube-dl youtube-dl -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 'url_here'

March 24, 2021 · 1 min · 53 words · Saqib Razzaq

Markdown Syntax Guide

This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. ...

March 11, 2019 · 3 min · 446 words · Hugo Authors