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
I'm having a hard time figuring how to decode flac files in to an array I'm modifying the demo project and call the worker with
worker.postMessage({ command: 'prefetch', args: args, outData: outData, fileData: inData });
Stepping through the code takes med to FlacEncoder.js#onDownloadComplete looks like a dead end
The text was updated successfully, but these errors were encountered:
Decoding: On https://blog.rillke.com/flac.js/ type -d into the console and click the first example file. If you need the example file for offline-testing, here it is: Christoph_Nolte_-_Follow_me_up_to_Carlow.flac
-d
It's worth to switch to the gh-pages branch to see the sample.js file. The following is sent to the worker when trying the sample on the project page:
sample.js
worker.postMessage( { command: 'encode', args: ["-d", "Christoph_Nolte_-_Follow_me_up_to_Carlow.flac"], outData: {"Christoph_Nolte_-_Follow_me_up_to_Carlow.wav":{"MIME":"audio/wav"}}, fileData: { Christoph_Nolte_-_Follow_me_up_to_Carlow.flac: <Uint8Array> } } );
In L.542 of sample.js I extract the file from the worker results.
Sorry, something went wrong.
Use the encode command for actual en/de-coding. (Decoding with "-d" unshifted to args)
encode
"-d"
args
prefetch will only fetch flac's program code.
prefetch
No branches or pull requests
I'm having a hard time figuring how to decode flac files in to an array
I'm modifying the demo project
and call the worker with
Stepping through the code takes med to FlacEncoder.js#onDownloadComplete looks like a dead end
The text was updated successfully, but these errors were encountered: