Save wave as .txt

Any idea if this is possible ?
I tried saving it from the instrument editor , save as .txt but no luck
iI want to use these as table data in reaktor -plugdata

What text/data format exactly would you need? Like csv/“comma separated data”, or something else?

I guess this needs a handmade converter. It’s even possible to make one into renoise as a lua tool, so you can convert and save your loaded samples as text file directly.

Usually this is done using Base64 encoding.

1 Like

How should the text look like?
One value per line?
Some value separator?
Range of text values? float(-1, 1), 8bit, 16bit, 24bit numbers.
You need to be a bit more specific.

where each sample value is between -1 and 1 , in windows I saved the files as utf-8txt , codecutf-8
5

Here it’s in renoise

and here imported in reaktor core
2

Reaktor core accepts txt files , where each sample canbe separated by a comma ( but it doesn’t need to be

And imported in reaktor

4

Ok, try this.
It has simple gui with type selector.
Now supports only mono samples of course.
Floats are rounded to 8 places.

cz.martblek.SaveAs.xrnx (2.6 KB)

4 Likes

Dude , that is absolutely wonderfull.
Works a charm
Thanks a million

I’m glad it works.

1 Like

this ought to be interesting to see if i could bounce samples into puredata from renoise.

Sure you can
Use the get array but you will have some verry long text files , depending on the size of the array .
I made a waveform generator in plugdata by summing partials , the text file ( from the get array ) I can then import in reaktor for use wit the sine bank .
That’s the beauty of pure data , juat copy -paste messages into text files , no hassle

1 Like