diff options
author | breadcat | 2020-11-16 23:05:27 +0000 |
---|---|---|
committer | breadcat | 2020-11-16 23:05:27 +0000 |
commit | 97674877f08dcb7097863ee4601bb3a24b94b7df (patch) | |
tree | 1d826729bcd7021f7a19a3625733c74af12a69a0 /content/posts/scraping-now-albums.md | |
parent | cb06000a25f8e4889c7f73c8433f6280055ae0aa (diff) | |
download | blog.minskio.co.uk-97674877f08dcb7097863ee4601bb3a24b94b7df.tar.gz blog.minskio.co.uk-97674877f08dcb7097863ee4601bb3a24b94b7df.tar.bz2 blog.minskio.co.uk-97674877f08dcb7097863ee4601bb3a24b94b7df.zip |
Alter some EXCESSIVE casing
Diffstat (limited to 'content/posts/scraping-now-albums.md')
-rw-r--r-- | content/posts/scraping-now-albums.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/posts/scraping-now-albums.md b/content/posts/scraping-now-albums.md index 2acc0a8..391fc3a 100644 --- a/content/posts/scraping-now-albums.md +++ b/content/posts/scraping-now-albums.md @@ -1,5 +1,5 @@ --- -title: "Scraping and Grabbing Now! albums" +title: "Scraping and grabbing Now! albums" date: 2018-12-04T16:28:00 tags: ["Guides", "Linux", "Lists", "Music", "Servers", "Snippets", "Software"] --- @@ -25,7 +25,7 @@ To manage this, we'll run a youtube search on every entry, and grab the resultin while read line; do youtube-dl -x --audio-format=mp3 ytsearch:"$line lyrics"; done < parse_list.txt ``` -Please note, I append a " lyrics" in the search string to avoid too obvious music videos that sometimes have +Please note, I append a " lyrics" in the search string to avoid too obvious music videos that sometimes have With this, we have 73 `mp3` files dumped into our working directory with messy filenames. I usually throw these into `beets` in singleton mode via docker to improve the quality of the filenames/tags. |