Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #16

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# cairo-wave
An implementation of the WAVE file format in Cairo

## About
Generate valid WAV files in Cairo

## Local testing:
```bash
Expand All @@ -9,8 +11,20 @@ mplayer tmp/test.wav
```

## Sepolia testing
_Needs a working starkli configured with a Seppolia RPC_
_Needs a working starkli configured with a Sepolia RPC_
```bash
python scripts/get_notes.py
mplayer tmp/out.wav
```
```


## Resources
- [WAVE PCM File format](http://soundfile.sapp.org/doc/WaveFormat/)
- Unix: `man sox`, `ffprobe file.wave`
- [WAV Header](https://onestepcode.com/read-wav-header/)
- [decode header](https://code.whatever.social/questions/29992898/decoding-a-wav-file-header)
- [generate 8-bit pytho gist](https://gist.github.com/jweinst1/1cd52d7f037197e7efb146d2eb42cae5)
- https://aminet.net/
- [sound pack + player](https://op1.fun/users/beatboyninja/packs/arcade-sounds-pack-41028)
- [gameboy 4-bit depth](https://gbdev.gg8.se/forums/viewtopic.php?id=941)
- http://www.hydrogen18.com/blog/joys-of-writing-a-wav-file.html
Loading