We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
buckle
cd
I'm getting the error discussed here: #21
Basically, if I cd into /path/to/bucklespring and run ./buckle, it works perfectly.
/path/to/bucklespring
./buckle
But if I directly do /path/to/bucklespring/buckle, I get Error opening audio file "./wav/32-1.wav": Failed to open file.
/path/to/bucklespring/buckle
Error opening audio file "./wav/32-1.wav": Failed to open file
macOS Sonoma, Fish shell
The text was updated successfully, but these errors were encountered:
Same issue on macOS Ventura, zsh shell.
Sorry, something went wrong.
I can see from running buckle --verbose that the default audio path is ".wav". Seems odd that the default would be a relative path, but here we are...
buckle --verbose
".wav"
A few workarounds:
Define path to the audio files with --audio_path argument: path/to/bucklespring/buckle --audio_path=path/to/bucklespring/wav
--audio_path
path/to/bucklespring/buckle --audio_path=path/to/bucklespring/wav
OR
Define $BUCKLESPRING_WAV_DIR environment variable: export BUCKLESPRING_WAV_DIR=path/to/bucklespring/wav
$BUCKLESPRING_WAV_DIR
export BUCKLESPRING_WAV_DIR=path/to/bucklespring/wav
Successfully merging a pull request may close this issue.
I'm getting the error discussed here: #21
Basically, if I
cd
into/path/to/bucklespring
and run./buckle
, it works perfectly.But if I directly do
/path/to/bucklespring/buckle
, I getError opening audio file "./wav/32-1.wav": Failed to open file
.macOS Sonoma, Fish shell
The text was updated successfully, but these errors were encountered: