Will hopefully have the time to try and make a resampling mode for Timber tomorrow(resampling processed samples to tape with auto start, stop and save) I have the idea ready on paper, just need to implement it.
Edit: giving up at the time, modifying Timber was a bit heftier than expected.
The idea was to add a resample mode to the Sample Setup menu. That could be toggled to “Yes” or “No”.
When toggled to “Yes”, Timber would automatically start a tape recording when you play a sample with timber(using the original file naming and just adding an ascending number at the end of the filename) and tape would automatically stop when the sample finished playing. Does this make sense? Not even sure it would have worked. Anyone else want to have a crack? This would involve, as far as I can see, some rewrites to the timber_engine.
it would use the following tape calls:
--- open a tape recording file.
-- @param file
Audio.tape_record_open = function(file)
_norns.tape_record_open(file)
end
--- start tape recording.
Audio.tape_record_start = function()
_norns.tape_record_start()
end
--- stop tape recording.
Audio.tape_record_stop = function()
_norns.tape_record_stop()
end