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
Just getting familiar with this library (and audio/video processing in general). Apologies if I'm misusing any terminology.
I have audio content originally an .aac stored in my database as a byte[] and need to convert it to .wav. It looks like conversion can be done easily using java.nio.Files as shown in the readme.
My question is - is it possible to use this library to convert without using files? I don't have access to the filesystem and would love to not have to go that route and instead convert my byte[] to an InputStream and then feed that to jave.
If not possible, would you consider adding this functionality to jave?
Many thanks. Great looking project.
The text was updated successfully, but these errors were encountered:
Just getting familiar with this library (and audio/video processing in general). Apologies if I'm misusing any terminology.
I have audio content originally an
.aac
stored in my database as abyte[]
and need to convert it to.wav
. It looks like conversion can be done easily usingjava.nio.Files
as shown in the readme.My question is - is it possible to use this library to convert without using files? I don't have access to the filesystem and would love to not have to go that route and instead convert my
byte[]
to anInputStream
and then feed that to jave.If not possible, would you consider adding this functionality to jave?
Many thanks. Great looking project.
The text was updated successfully, but these errors were encountered: