mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 01:14:17 +00:00
feat: add basic sounds for prototyping
This commit is contained in:
parent
87f3a2b511
commit
5791346a88
12 changed files with 58 additions and 0 deletions
BIN
public/sounds/airport.mp3
Normal file
BIN
public/sounds/airport.mp3
Normal file
Binary file not shown.
BIN
public/sounds/birds.mp3
Normal file
BIN
public/sounds/birds.mp3
Normal file
Binary file not shown.
BIN
public/sounds/cafe.mp3
Normal file
BIN
public/sounds/cafe.mp3
Normal file
Binary file not shown.
BIN
public/sounds/campfire.mp3
Normal file
BIN
public/sounds/campfire.mp3
Normal file
Binary file not shown.
BIN
public/sounds/crickets.mp3
Normal file
BIN
public/sounds/crickets.mp3
Normal file
Binary file not shown.
BIN
public/sounds/rain-on-window.mp3
Normal file
BIN
public/sounds/rain-on-window.mp3
Normal file
Binary file not shown.
BIN
public/sounds/rain.mp3
Normal file
BIN
public/sounds/rain.mp3
Normal file
Binary file not shown.
BIN
public/sounds/river.mp3
Normal file
BIN
public/sounds/river.mp3
Normal file
Binary file not shown.
BIN
public/sounds/seagulls.mp3
Normal file
BIN
public/sounds/seagulls.mp3
Normal file
Binary file not shown.
BIN
public/sounds/thunder.mp3
Normal file
BIN
public/sounds/thunder.mp3
Normal file
Binary file not shown.
BIN
public/sounds/waves.mp3
Normal file
BIN
public/sounds/waves.mp3
Normal file
Binary file not shown.
58
src/data/sounds.json
Normal file
58
src/data/sounds.json
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
"sounds": {
|
||||||
|
"nature": {
|
||||||
|
"label": "Nature",
|
||||||
|
"sounds": [
|
||||||
|
{
|
||||||
|
"label": "Rain",
|
||||||
|
"src": "/sounds/rain.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Birds",
|
||||||
|
"src": "/sounds/birds.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "River",
|
||||||
|
"src": "/sounds/river.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Thunder",
|
||||||
|
"src": "/sounds/thunder.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Crickets",
|
||||||
|
"src": "/sounds/crickets.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Waves",
|
||||||
|
"src": "/sounds/waves.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Seagulls",
|
||||||
|
"src": "/sounds/seagulls.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Campfire",
|
||||||
|
"src": "/sounds/campfire.mp3"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"urban": {
|
||||||
|
"label": "Urban",
|
||||||
|
"sounds": [
|
||||||
|
{
|
||||||
|
"label": "Airport",
|
||||||
|
"src": "/sounds/airport.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Cafe",
|
||||||
|
"src": "/sounds/cafe.mp3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Rain on Window",
|
||||||
|
"src": "/sounds/rain-on-window.mp3"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue