Skip to content

Commit b4b48bc

Browse files
committed
Update README.md
1 parent d994000 commit b4b48bc

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

README.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ Drop, a LÖVE visualizer and music player
33

44
I've always loved music and visualizations, but mainstream visualizers are frequently so packed with features
55
that they feel cumbersome. They have some neat graphics, but aren't very good at reflecting the actual beat of
6-
the music. I think visualizers have a lot of potential integrated into music players and so, I decided to
7-
create Drop; a simple, efficient music player/visualizer.
6+
the music and so, I decided to create Drop; a simple, efficient music player/visualizer.
7+
88
![music visualization](https://i.imgur.com/LLsSyNt.png)
99
To add music, either drag and drop your music on the window or make sure you run the visualizer at least once, exit, navigate to your system's appdata directory, open "LOVE/Drop/music", and place your music files/folders in there.
1010

1111
### Features:
12-
- drag and drop
13-
- scalable ui
14-
- realtime ffi-implemented rfft calculations (really fast and efficient spectrum generation)
12+
- drag and drop music files/folders onto window
13+
- scalable gui (can make Drop really small and put it in the corner of your screen)
14+
- realtime ffi-implemented rfft calculations (really fast and efficient waveform generation)
1515
- decoder/queueable audio support
1616
- ID3 metadata support (gets song name/artist when stored in mp3)
1717
- audio input support (with this you can visualize speaker and microphone audio!)
@@ -25,7 +25,7 @@ To add music, either drag and drop your music on the window or make sure you run
2525
- quick start
2626
- fps capping
2727
- session persistence
28-
- spectrum visualization
28+
- spectrum/bar visualization
2929
- custom colors
3030
- doesn't run fft calculations when minimized or paused
3131

@@ -35,8 +35,6 @@ To add music, either drag and drop your music on the window or make sure you run
3535
- Up Arrow: Volume Up
3636
- Down Arrow: Volume Down
3737
- Space bar: Pause/Play
38-
- Click the scrub bar to change time
39-
- Drag the scrub head to change time
4038
- s and l: Shuffle and Loop
4139
- i: toggle fade
4240
- m: toggle mute

audio.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function audio.reload()
108108

109109
end
110110

111-
--- Attempts to load music in the folder "mount".
111+
--- Mounts path and attempts to load all mounted music.
112112
-- @param path string: Path of music folder to mount and load.
113113
-- @return boolean: True if successful. False otherwise.
114114
function audio.music.load(path)

0 commit comments

Comments
 (0)