Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build:

# rekordbox mode (the default) — no privileged ports needed
run: build
sudo ./vynull --music-dir $(MUSIC)
./vynull --music-dir $(MUSIC)

# CDJ-USB source mode — needs UDP 111 (see README Requirements)
run-cdj: build
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ By default it listens on `127.0.0.1:9443`; use `--listen 0.0.0.0:9443` to reach
it from another device on the LAN.

```bash
sudo ./vynull --interface eth1 --mode rekordbox --web --listen 0.0.0.0:9443
./vynull --interface eth1 --mode rekordbox --web --listen 0.0.0.0:9443
# then open http://<this-machine>:9443/
```

Expand Down Expand Up @@ -173,14 +173,15 @@ else need no Python.
Scan a music directory at startup:

```bash
sudo ./vynull --interface eth1 --music-dir /path/to/music --lazy-analysis
./vynull --interface eth1 --music-dir /path/to/music --lazy-analysis
```

### Rekordbox USB Mode

If you have an existing rekordbox-exported USB drive:

```bash
# CDJ mode needs UDP 111 — see "Port 111 (CDJ mode only)" for sudo-free options
sudo ./vynull --interface eth1 --music-dir /media/usb --mode cdj
```

Expand Down
Loading