feat: add basic sounds for prototyping

This commit is contained in:
MAZE 2023-10-05 18:33:04 +03:30
parent 87f3a2b511
commit 5791346a88
12 changed files with 58 additions and 0 deletions

BIN
public/sounds/airport.mp3 Normal file

Binary file not shown.

BIN
public/sounds/birds.mp3 Normal file

Binary file not shown.

BIN
public/sounds/cafe.mp3 Normal file

Binary file not shown.

BIN
public/sounds/campfire.mp3 Normal file

Binary file not shown.

BIN
public/sounds/crickets.mp3 Normal file

Binary file not shown.

Binary file not shown.

BIN
public/sounds/rain.mp3 Normal file

Binary file not shown.

BIN
public/sounds/river.mp3 Normal file

Binary file not shown.

BIN
public/sounds/seagulls.mp3 Normal file

Binary file not shown.

BIN
public/sounds/thunder.mp3 Normal file

Binary file not shown.

BIN
public/sounds/waves.mp3 Normal file

Binary file not shown.

58
src/data/sounds.json Normal file
View 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"
}
]
}
}
}