How to edit audioclip?

Is there a way to merge two clip into one or replace part of clip?
ex. replace 9~10 seconds sound for another short clip …

BTW should I use GetData() and SetData() ?

Yes, you should use GetData and SetData, as well as AudioClip.Create

Look it up in the docs, it’s all there!

Do ask again if you can’t manage.

Tips:
-GetData() will fill the float array you feed it. If your array is longer than the clip’s samples, expect a crash.

-Same applies to SetData: the float array needs to be shorter or equal to the number of samples in your clip.

-You can offset both with set and get data. Handy in many cases.