Browse Source

music 🎹

windhamdavid 1 week ago
parent
commit
918b7fbd51
4 changed files with 21 additions and 32 deletions
  1. 2 2
      notes/music/abcjs.mdx
  2. 15 0
      notes/music/logic.md
  3. 3 30
      notes/music/music.md
  4. 1 0
      sidebarsnotes.js

+ 2 - 2
notes/music/abcjs.mdx

@@ -7,9 +7,9 @@ import ReactPlayer from 'react-player'
 
 Flipping through a bunch of pdfs or watching videos for scales isn't going to cut it so I'm adding two libraries to help me make some music notation. The first is a library for rendering piano keys and the second is a library for rendering ABC notation.
 
-- [react-piano](https://github.com/kevinsqi/react-piano)
-- [ABC.js](https://www.abcjs.net/)
 - [ABC Notation](https://en.wikipedia.org/wiki/ABC_notation)
+- [ABC.js](https://www.abcjs.net/) /  https://paulrosen.github.io/abcjs/overview/abc-notation.html
+- [react-piano](https://github.com/kevinsqi/react-piano)
 
 
 <ReactPlayer

+ 15 - 0
notes/music/logic.md

@@ -0,0 +1,15 @@
+# Logic
+
+I'm gonna use Logic Pro to record. I've dabbled with ProTools and Ableton. I use Adobe Audition somewhat regularly to cut audio, but I haven't spend much time with Logic Pro, much less with the MIDI features of a digital audio workstation. Thousand of buttons and lots to learn. I'll document it here.
+
+I'd like to learn how to have a composition workflow where I can play a work out and play a piece and have it transcribed.  
+
+As of now, my favorite thing to do is just noodle along to other tracks with the Fender Rhodes emulator.
+
+![music](/img/music.png)
+
+## Hardware
+
+## Other Software
+
+- Rogue Ameoba Audio Hijack & Loopback

+ 3 - 30
notes/music/music.md

@@ -2,7 +2,9 @@
 
 25/04/26 - I just started relearning how to read and write music because [I got a new keyboard](/posts/arturia). I need an easy way to make notes about music notation and ideally, I could just use a library to make notation here in markdown. It'd also be nice to have a way to illustrate the piano keys without images. I've started to getting some pdfs together of the major scales. I've also started using Logic Pro instead of Adobe Audition which is gonna require a whole other set of cheat sheets.
 
-![](/img/arturia.jpg)
+## TOC
+
+[Logic](logic) | [Notation](abcjs) | [Scales](scales) | [Theory](theory)
 
 ## Log
 
@@ -16,35 +18,6 @@
 
 In Obsidian, I'm able to use the ABC Notation ( https://en.wikipedia.org/wiki/ABC_notation ) via https://www.abcjs.net - will need to pull the library in for using it here. I added two tools for [Music Notation](abcjs) but I can only use them with ```mdx``` using ```jsx``` embedding.
 
-```js
-<ABC notation={`
-X:1
-T:Example
-M:4/4
-L:1/8
-K:C
-C,D,E,F, G,A,B,C DEFG ABcd|efgab c'd'e'f' g'a'b'c''|
-`} 
-/>
-
-```
-
-```js
-{
-  "tablature": [{"instrument": "piano"}]
-}
----
-X:1
-T: David's
-M: 4/4
-L: 1/8
-R: reel
-K: G
-|:D2|EB{c}BA B2 EB|~B2 AB dBAG|FDAD BDAD|FDAD dAFD|
-```
-
-## Logic 
-![music](/img/music.png)
 
 ## References
 

+ 1 - 0
sidebarsnotes.js

@@ -114,6 +114,7 @@ module.exports = {
         id:'music/music',
       },
       items: [
+        'music/logic',
         'music/abcjs',
         'music/scales',
         'music/theory',