Mixing one audio signal to another at a specific point
4 次查看(过去 30 天)
显示 更早的评论
I'm trying to figure out how to mix one audio signal to another at a specific point.
For example, mixing them together at the same starting point would be a case of
newaudio = a1+a2;
However, I would like to specify the point at which a2 is mixed into a1. For example, being able to mix a2 10 seconds into a1.
Any help would be appreciated.
0 个评论
采纳的回答
David K.
2021-3-16
This is fairly easy at first. You just need to pad the signal a2 with enough zeros to equal 10 seconds. This requires knowledge of the signals sampling fequency.
fs = % your audio fs
timeStart = 10; % time in seconds
a2Pad = [zeros(1,fs*timeStart),a2]; % if a2 is vertical use [zeros(fs*timeStart,1);a2];
newaudio = a1+a2pad
However, this will likely result in the arrays being different sizes so you need to pad the end of the shorter one ( or cut the longer) to be able to add them. This can be done in nearly the same way.
3 个评论
David K.
2021-3-16
Tried to point this out in the comment on that line in my answer. But this meant that your vectors were oriented different than expected and you had to use this instead:
[zeros(fs*timeStart,1);a2];
I think this should work for you:
% Pad a2
a2 = [zeros(fs*timeStart,1);a2];
sl = min([length(a1), length(a2)]); %Gets the shortest length of a1,a2.
%Ensure both audio is the same length.
a1 = a1(1:sl);
a2 = a2(1:sl);
%Mix
newaudio = a1+a2;
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio Processing Algorithm Design 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!