-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move neothesia-cli recorder to separate crate
- Loading branch information
1 parent
0f25ea3
commit b63e395
Showing
8 changed files
with
66 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
build-app: | ||
cargo build --release | ||
cargo build --release --bin neothesia | ||
run-app: | ||
cargo run --release | ||
cargo run --release --bin neothesia | ||
|
||
check-recorder: | ||
cargo check --no-default-features --features record | ||
cargo check -p neothesia-cli | ||
build-recorder: | ||
cargo build --release --no-default-features --features record | ||
cargo build --release -p neothesia-cli | ||
run-recorder: | ||
cargo run --release --no-default-features --bin neothesia-cli --features record -- $(file) | ||
cargo run --release -p neothesia-cli -- $(file) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ version = "0.1.0" | |
edition = "2021" | ||
|
||
[dependencies] | ||
midir = "0.8" | ||
midir = "0.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "neothesia-cli" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[features] | ||
# Download and compile ffmpeg | ||
build-ffmpeg = ["mpeg_encoder/build"] | ||
|
||
[dependencies] | ||
neothesia = { workspace = true } | ||
midi-file = { workspace = true } | ||
piano-math = { workspace = true } | ||
wgpu-jumpstart = { workspace = true } | ||
env_logger = { workspace = true } | ||
futures = { workspace = true } | ||
|
||
mpeg_encoder = { git = "https://github.com/PolyMeilex/mpeg_encoder_next.git" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters