You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to my personal lack of time, I'm opting to transcode the FLAC to a WAV. Found a library that has sample code to assist in doing that. I'm basically adapting the code for our needs. Do not recommend this for a future release.
The text was updated successfully, but these errors were encountered:
I was able to get the transcoded files to play. Metadata is loaded from the original FLAC instead of the WAV. The WAV's only purpose is to be a playable file by our MediaPlayer. The next step is to cache the creation of these files in a session. And then also to delete the files on normal close.
My caching works! The files no longer need to be reloaded. And it turns out Java 8 File has a deleteOnExit() method. On program execution, the temporary WAV files we created for playback will delete.
Due to my personal lack of time, I'm opting to transcode the FLAC to a WAV. Found a library that has sample code to assist in doing that. I'm basically adapting the code for our needs. Do not recommend this for a future release.
The text was updated successfully, but these errors were encountered: