Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themilkerguy/pybytebeat
ByteBeat in Python because why not
https://github.com/themilkerguy/pybytebeat
audio bytebeat cowy equation love purepython py python python3 wav wave
Last synced: 4 days ago
JSON representation
ByteBeat in Python because why not
- Host: GitHub
- URL: https://github.com/themilkerguy/pybytebeat
- Owner: TheMilkerGuy
- Created: 2025-01-01T07:06:37.000Z (4 days ago)
- Default Branch: main
- Last Pushed: 2025-01-01T07:13:06.000Z (4 days ago)
- Last Synced: 2025-01-01T08:17:44.484Z (4 days ago)
- Topics: audio, bytebeat, cowy, equation, love, purepython, py, python, python3, wav, wave
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyByteBeat
Process your ByteBeat codes and output .wav files with Python (made by The Milker Guy because yes)# How to use:
Paste the **PyByteBeat.py** source and make sure to put it right with your Python file.
Example of use (in your Python file):
```python
from PyByteBeat import *
equation = "((t >> 10) & 42) * t"
seconds = 5
buffer = _buffer(equation, seconds)
output_file = "output.wav"
_wav(output_file, buffer, seconds)
```# Cautions
There are **NO** real PyPi modules of this so watch out for malicious modules! The only official source is this repository.# Modules used
There are no modules used, it's 100% pure Python (and Cowy love 😘)