Static site generator for making web mixtapes in 2020.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Matt Baer b7e276966b Add README 4 years ago
cmd/cdr Skip renaming tracks with errors 4 years ago
templates Support additional track info in playlist 4 years ago
LICENSE Add LICENSE 4 years ago
README.md Add README 4 years ago
mixtape.tmpl Fix site on mobile 4 years ago
render.go Log parse and render errors 4 years ago
sanitize.go Transliterate track info to ASCII on clean 4 years ago
templates.go Fix site on mobile 4 years ago
track.go Add Num field to Track 4 years ago

README.md

CD-R 700mb

Before Spotify, Apple Music, Amazon Music Unlimited, Amazon Music HD, Google Play Music, Tidal, Deezer, Pandora, Idagio, LiveXLive, Primephonic, SiriusXM Essential, SiriusXM Premier, and YouTube Music, we listened to mixtapes. We compiled tracks on iTunes and burned them onto CD-Rs. We traded them with each other. We freely listened in our car or at home or with our portable CD player. And it was good.

Today we might spend an eternity making the perfect playlist for someone special, only to learn they’re on the Z Music Unlimited service while you’re on X Music Basic. Now, vendor lock-in means love lock-out. Our connections are disconnected. Our romantic hopes aren’t high enough for the surrounding paywalls. What can we do?

A Modern Mixtape

This is a static site generator for “burning” a modern mixtape. It’s platform-independent and won’t get scratched up in your car.

Run this program inside a directory of music files to produce a bare-bones HTML page that will simply play the music for someone. Upload it all to your website, and share the URL. Boom, you have a mixtape.

This only takes care of “burning the CD,” if you will -- then it’s up to you to make it special, like you would a normal mixtape. Add track notes, make it look cool or funky, do something that takes a little more effort than sharing a freaking Spotify playlist. All this tech convenience has made us lazy and boring. So make something interesting! Show someone that they mean something to you!

The Process

First, compile a collection of music files you’d like to put on a mixtape, and rename them according to the order you want, where each file name starts with a two-digit track number (i.e. 01, 02, ... 10, 11).

Of course, THIS PROGRAM IS FOR ILLUSTRATIVE PURPOSES ONLY AND SHOULD NOT BE USED TO DISTRIBUTE COPYRIGHTED MATERIAL YOU DO NOT OWN THE RIGHTS TO.

cdr Usage

  1. Install cdr with go get github.com/thebaer/cdr
  2. Create a directory for your playlist
  3. Add audio files into the directory
  4. Make sure they’re named in the order you want, and start with a two-digit track number, e.g. 01 - Track 1.mp3
  5. Run cdr clean in this directory to standardize the file names based on their metadata (supports ID3, MP4, OGG, FLAC)
  6. Run cdr burn in this directory to generate your mixtape page
  7. Open your new index.html in your browser!

This gives you the basic HTML. Now have fun with it.

Over-achievers

You can also tweak the original template before it generates the final page.

  1. Copy mixtape.tmpl into your mixtape directory
  2. Edit this file to your liking, being sure to retain the {{template ...}} lines in the file
  3. Run cdr burn -- it’ll generate your page from this template instead of the default!

Commands

NAME:
   CD-R 700MB - A static mixtape site generator

USAGE:
   cdr [global options] command [command options] [arguments...]

VERSION:
   v1.0

COMMANDS:
   burn     generate the static mixtape site
   preview  serve the mixtape site
   clean    clean and organize audio files in the current directory
   help, h  Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h     show help (default: false)
   --version, -v  print the version (default: false)