From 23cb23de1520aeda37140d1b300cd38db6848ff7 Mon Sep 17 00:00:00 2001 From: filifa Date: Wed, 4 Sep 2024 21:55:33 -0500 Subject: [PATCH] update readme --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7012949..132f276 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,12 @@ generate the PCM stream, then pipe to milkbucket, like so: ``` ffmpeg -i $audio -ar 44100 -f s16le - | ./milkbucket -p $preset ``` +Note that you can pass in multiple presets with multiple `-p` flags, then use +the arrow keys to cycle through the presets while running. -Note that neither of these commands will output any audio! If you want to hear -the audio at the same time (and assuming your machine uses pipewire), run: +Note that neither of these commands (ffmpeg or milkbucket) will output any +audio! If you want to hear the audio at the same time (and assuming your +machine uses pipewire), run: ``` ffmpeg -i $audio -ar 44100 -f s16le - | tee >(pw-play --rate=44100 --format=s16 -) | ./milkbucket -p $preset ```