Skip to content

Commit

Permalink
feat(sound): add "Playground"
Browse files Browse the repository at this point in the history
resolve #174
  • Loading branch information
mateusfg7 committed Aug 16, 2023
1 parent 8acb72b commit d24c00a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
Binary file added .github/assets/sounds/playground.ogg
Binary file not shown.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pnpm build && pnpm start
# ©️ Credits

## Icons
[rain](https://freeicons.io/weather-4/weather-forecast-rain-wind-strong-cloud-icon-44765) - [storm](https://freeicons.io/weather-4/weather-forecast-storn-lightning-bolt-cloud-storm-icon-44770) - [wind](https://freeicons.io/weather-4/weather-forecast-blow-wind-windy-icon-44746) - [drops](https://freeicons.io/weather-icons/icon-raindrops-icon-6741) - [waves](https://freeicons.io/test/travel-beach-swimming-icon-1279) - [birds-tree](https://freeicons.io/travel-and-holiday/travel-trees-icon-1302) - [leafs](https://freeicons.io/beauty-and-salon/leaf-icon-1202) - [fire](https://freeicons.io/travel-and-holiday/travel-fire-icon-1289) - [cave](https://www.flaticon.com/free-icon/cave_2206606) - [night](https://freeicons.io/weather-4/weather-moon-night-stars-icon-44777) - [coffee](https://freeicons.io/restaurant/restaurant-breakfast-hot-drink-coffee-icon-43370) - [noise-block](https://freeicons.io/computer-devices/headset-headphone-earphone-icon-133586) - [train](https://freeicons.io/vehicles-and-transport-2/vehicles-and-transport-train-sign-rail-tram-travel-icon-44648) - [air-plane](https://freeicons.io/travel-and-holiday/travel-plane-flight-icon-1296) - [underwater](https://freeicons.io/sports-icons-2/icon-diving-goggles-icon-6578) - [washingmachine](https://freeicons.io/cleaning/cleaning-washing-machine-washingmachine-icon-42075#) - [waterfall](https://www.svgrepo.com/svg/215029/waterfall) - [noise](https://freeicons.io/music-2/music-sound-waveform-wave-icon-43351)
[rain](https://freeicons.io/weather-4/weather-forecast-rain-wind-strong-cloud-icon-44765) - [storm](https://freeicons.io/weather-4/weather-forecast-storn-lightning-bolt-cloud-storm-icon-44770) - [wind](https://freeicons.io/weather-4/weather-forecast-blow-wind-windy-icon-44746) - [drops](https://freeicons.io/weather-icons/icon-raindrops-icon-6741) - [waves](https://freeicons.io/test/travel-beach-swimming-icon-1279) - [birds-tree](https://freeicons.io/travel-and-holiday/travel-trees-icon-1302) - [leafs](https://freeicons.io/beauty-and-salon/leaf-icon-1202) - [fire](https://freeicons.io/travel-and-holiday/travel-fire-icon-1289) - [cave](https://www.flaticon.com/free-icon/cave_2206606) - [night](https://freeicons.io/weather-4/weather-moon-night-stars-icon-44777) - [coffee](https://freeicons.io/restaurant/restaurant-breakfast-hot-drink-coffee-icon-43370) - [noise-block](https://freeicons.io/computer-devices/headset-headphone-earphone-icon-133586) - [train](https://freeicons.io/vehicles-and-transport-2/vehicles-and-transport-train-sign-rail-tram-travel-icon-44648) - [air-plane](https://freeicons.io/travel-and-holiday/travel-plane-flight-icon-1296) - [underwater](https://freeicons.io/sports-icons-2/icon-diving-goggles-icon-6578) - [washingmachine](https://freeicons.io/cleaning/cleaning-washing-machine-washingmachine-icon-42075#) - [waterfall](https://www.svgrepo.com/svg/215029/waterfall) - [playground](https://freeicons.io/water-park-icon-set-35898/slider-playground-fair-water-park-winter-amusement-icon-1439949) - [noise](https://freeicons.io/music-2/music-sound-waveform-wave-icon-43351)

## Sounds

Expand All @@ -100,6 +100,7 @@ Sound | Auth
[Brown Noise](https://freesound.org/people/georgedyer/sounds/171552/) | [George Dyer](https://freesound.org/people/georgedyer/) | CC0 | [Mateus Felipe](https://github.com/mateusfg7)
[White noise](https://commons.wikimedia.org/w/index.php?title=File%3AWhite-noise-sound-20sec-mono-44100Hz.ogg) | [Jorge Stolfi](https://commons.wikimedia.org/wiki/User:Jorge_Stolfi) | CC BY-SA
[Pink Noise](https://es.wikipedia.org/wiki/Archivo:Pink_noise.ogg) | [Omegatron](https://commons.wikimedia.org/wiki/User:Omegatron) | CC BY-SA
[Playground](https://www.youtube.com/watch?v=YxGv6o1g-LM) | [SFX Producer](https://www.youtube.com/channel/UCbJpWz8-JnMwVqHZcUE8gaQ) | CC0

# Alternatives

Expand Down
1 change: 1 addition & 0 deletions src/components/sound-icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ export { ReactComponent as WashingMachine } from './washing-machine.svg'
export { ReactComponent as Waterfall } from './waterfall.svg'
export { ReactComponent as Waves } from './waves.svg'
export { ReactComponent as Wind } from './wind.svg'
export { ReactComponent as Playground } from './playground.svg'
3 changes: 3 additions & 0 deletions src/components/sound-icons/playground.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/sounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
Leaves,
Night,
PinkNoise,
Playground,
Rain,
Storm,
StreamWater,
Expand Down Expand Up @@ -175,6 +176,15 @@ export const sounds = [
type: 'audio/ogg'
}
},
{
id: 'playground',
title: 'Playground',
icon: Playground,
file: {
url: 'https://storage.googleapis.com/ambience-sounds/playground.ogg',
type: 'audio/ogg'
}
},
{
id: 'brown-noise',
title: 'Brown Noise',
Expand Down

0 comments on commit d24c00a

Please sign in to comment.