Combinate audio BLOB data

0
Let’s say I’m an audio engineer and I have two wav files. If I wanted to upload and concatenate the binary and re-export them into a single wave file, what would be the best way of going about it (assuming I know everything about bitrates, sample dates, and all the formulas, etc). Does Mendix have anything that can handle manipulation of BLOB data like this? I wouldn’t necessary need to save it as a file, just as a field in a db (the original and the combined output).  
asked
2 answers
2

Your way would be Java. See stackoverflow: https://stackoverflow.com/questions/653861/join-two-wav-files-from-java

And this library would probably be helpfull: http://www.sauronsoftware.it/projects/jave/

But no easy task if both music files have different encoding.

Regards,

Ronald

 

answered
0

I just realized that there is a BINARY data type.

 

Would there be a way to simply concatenate two binary fields (just like strings)? That would 100% handle this request.

answered