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

Add basic multitrack recording #17

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Binary file removed .coverage
Binary file not shown.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
*.egg-info
__pycache__
*.wav
dist/
build/
.ptd_cache/
Expand Down
55 changes: 3 additions & 52 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,54 +1,5 @@
# plaintext-daw
# Plaintext DAW

A plaintext DAW (Digital Audio Workstation)

## Video Series

This project has been developed on video on the PageKey Tech YouTube channel. You can check the series out [here](https://www.youtube.com/watch?v=MguWfieR2tI&list=PL3Kz_hCNpKST2x-SzgbpYBeWOa74F40s7).

## Discord

[Join the Discord](https://discord.gg/5m5yFgDPF5) to discuss this project and connect with others!

## Pre-Requisites

- You must have Git installed on your system and available in the PATH.

- You must have Git LFS installed and configured for use.

- You make sure `ffmpeg` is installed.

```
apt install ffmpeg
brew install ffmpeg
yum install ffmpeg
```

## Installation

General use:

```
pip install plaintext-daw
```

Development:

```
git clone [email protected]:pagekeytech/plaintext-daw
cd plaintext-daw
pip install -e .
```

## Usage

Type `plaintext-daw` on the command line to see usage instructions.

## Docs

Open the `docs` folder as an Obsidian vault to view the documentation for this project.

## Attributions

Piano samples are from [here](https://musical-artifacts.com/artifacts/403) licensed under [CC 4.0](https://creativecommons.org/licenses/by/4.0/deed.en).
Please see the [Python version's README](./python/README.md).

A Rust implementation has been started, but it doesn't do much yet. It will be continued if/when the Python version starts hitting major performance issues.
37 changes: 0 additions & 37 deletions plaintext_daw/gui.py

This file was deleted.

54 changes: 54 additions & 0 deletions python/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# plaintext-daw

A plaintext DAW (Digital Audio Workstation)

## Video Series

This project has been developed on video on the PageKey Tech YouTube channel. You can check the series out [here](https://www.youtube.com/watch?v=MguWfieR2tI&list=PL3Kz_hCNpKST2x-SzgbpYBeWOa74F40s7).

## Discord

[Join the Discord](https://discord.gg/5m5yFgDPF5) to discuss this project and connect with others!

## Pre-Requisites

- You must have Git installed on your system and available in the PATH.

- You must have Git LFS installed and configured for use.

- You make sure `ffmpeg` is installed.

```
apt install ffmpeg
brew install ffmpeg
yum install ffmpeg
```

## Installation

General use:

```
pip install plaintext-daw
```

Development:

```
git clone [email protected]:pagekeytech/plaintext-daw
cd plaintext-daw
pip install -e .
```

## Usage

Type `plaintext-daw` on the command line to see usage instructions.

## Docs

Open the `docs` folder as an Obsidian vault to view the documentation for this project.

## Attributions

Piano samples are from [here](https://musical-artifacts.com/artifacts/403) licensed under [CC 4.0](https://creativecommons.org/licenses/by/4.0/deed.en).

File renamed without changes.
File renamed without changes.
37 changes: 37 additions & 0 deletions python/plaintext_daw/gui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# # -*- coding: utf-8 -*-
# # @Time : 2023/1/28 23:07
# # @Author : LTstrange

# from PyQt5 import QtWidgets as qtw
# from PyQt5 import QtGui as qtg


# class MainWindow(qtw.QWidget):
# def __init__(self):
# super().__init__()

# self.setWindowTitle("plaintext-DAW")
# self.resize(640, 480)

# btn = qtw.QPushButton(self)
# fnt = qtg.QFont()
# fnt.setPointSize(20)
# btn.setFont(fnt)
# btn.setText("Open Project")
# btn.adjustSize()
# btn.clicked.connect(self.open_project)

# layout = qtw.QVBoxLayout()
# layout.addWidget(btn)

# self.setLayout(layout)

# def open_project(self):
# qtw.QMessageBox().information(self, "plaintext-DAW", "Hello World")


# def gui():
# app = qtw.QApplication([])
# mw = MainWindow()
# mw.show()
# return app.exec_()
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading