https://github.com/tversteeg/rockysmithereens
🎸 Rocksmith 2014 CDLC song player
https://github.com/tversteeg/rockysmithereens
bevy game rocksmith rocksmith2014 rust
Last synced: about 1 year ago
JSON representation
🎸 Rocksmith 2014 CDLC song player
- Host: GitHub
- URL: https://github.com/tversteeg/rockysmithereens
- Owner: tversteeg
- License: agpl-3.0
- Created: 2022-06-22T19:05:15.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-14T02:06:22.000Z (over 1 year ago)
- Last Synced: 2025-04-14T03:23:31.044Z (over 1 year ago)
- Topics: bevy, game, rocksmith, rocksmith2014, rust
- Language: Rust
- Homepage:
- Size: 8.85 MB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
rockysmithereens
Rocksmith CDLC (`.psarc`) player.
## Player
```bash
cargo run
```
## Tools
### Play song from Rocksmith `.psarc`
```bash
cargo run --bin cli_music_player -- example_file.psarc
```
### Extract from `.psarc`
```bash
# Show files in archive
cargo run --bin psarc_extract -- example_file.psarc list
# Extract a file from the archive
cargo run --bin psarc_extract -- example_file.psarc extract example/path/from/above/command output_file.ext
```
## Build
### WebAssembly
```sh
rustup target add wasm32-unknown-unknown
cargo install wasm-bindgen-cli
cargo build --release --target wasm32-unknown-unknown
wasm-bindgen --out-name rockysmithereens --out-dir web --target web target/wasm32-unknown-unknown/release/rockysmithereens.wasm
cargo install basic-http-server
(cd web && basic-http-server)
```