draco

hello

i dont have much on this website yet

top tracks of my year:

  1. dracodraco - through the light (2022)
  2. DJ_Dave - Array (2023)
  3. Shygirl - thicc (2023)
  4. PinkPantheress - Capable of love (2023)
  5. In Explosions - anaesthesia (2021)
  6. Yaego - EUROPA (2023)
  7. DJ Planet Express - Lab (black balloons Remix) (2023)
  8. smokedope2016 - IM NOT GOD BUT I WISH I WAS (feat. Joeyy) (2022)
  9. PEARCE - Heartache (2023)
  10. TOKYOPILL - Distance (2023)
  11. southstar - Luna (2023)
  12. usedcvnt - they called me Violet (2022)
  13. Ninajirachi - Undo U (4x4 Mix) (2023)
  14. In Explosions - drop kick (2023)
  15. ---
  16. tba

methods:

spectrograms:

`for f in *.flac; do sox "$f" -n remix - spectrogram -Y 300 -t "$(basename "$f")" -o "$HOME/spects/$f.spect.png"; done`

here `remix -` mixes all channels into one, `-Y 300` sets the target height for the image in pixels, `-t ...` sets the title for the image to be the filename, and then I store everything in my ~/spects folder

FLACs:

`flac -f8 *.flac`

`metaflac --remove-tag=GENRE --set-tag="URL=$URL" *.flac`

finding HQ images:

https://github.com/qsniyg/maxurl

shrinking a jpg:

`ffmpeg -i cover.jpg -vf "scale=1000x1000" -q:v 2 small.jpg`