Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Time-Stretching (Read 6155 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Time-Stretching

Hi everyone,

I'm working on an audio software and I'd like to do some time stretching in "real-time". That is reading an audio file and changing the duration of the track without changing the pitch.

The first obvious option is to use resampling to change the number of final samples, but that changes the pitch...

So my second option was inspired by granular synthesis. Cut the file in small parts and then output these parts as is with some samples added/removed at the end (added with content from the original part). But the sound is really bad and the pitch seem to be changed anyway (depends on the size of the parts). It sounds especially bad on low frequencies.

I'm thinking about adding some fade in/fade out on the transition part (where data is added remove). But I doubt it will improve the quality much.

So I was wondering if anyone here know places with good informations on how to code a good time-stretching (or even better some working+free code in C or C++).


Time-Stretching

Reply #2
perhaps ac3filter can also do that!? (or only change delay?  )
I know, that I know nothing (Socrates)


Time-Stretching

Reply #4
Quote
,Sep 15 2003, 06:54 PM] take a look at this. It might be what you want.
http://www.sunpoint.net/~oparviai/soundtouch/

Note that there also exists a foobar plugin (Download here: http://www.cqasys.com/projects/kode54/index.php ).

I must say, that foorbar plugin is very impressive.  It can also alter pitch without changing tempo, very interesting.

Time-Stretching

Reply #5
Quote
,Sep 15 2003, 09:54 AM] Note that there also exists a foobar plugin (Download here: http://www.cqasys.com/projects/kode54/index.php ).

I don't see any such thing there
Also what I need is either an algorithm, a principle or a source code, not a binary   

edit: oops I didn't make the link with the previous sentence, sorry...


Time-Stretching

Reply #7
You should also be able to do this with a combination of switches in SoX.

    - M.

Time-Stretching

Reply #8
Quote
Also what I need is either an algorithm, a principle or a source code, not a binary   

SoundTouch library is available as source code, and also includes examples. If you would prefer my DSP component as an example, the source code is available from my page.