Concatenate two audio files

84 Ansichten (letzte 30 Tage)
SBakc
SBakc am 17 Aug. 2019
Kommentiert: Walter Roberson am 19 Aug. 2019
I would like to concatenate two audio files such that a new audio signal is created whereby the first audio plays and this is then immedialely followed by the second.
[y1,Fs] = audioread('sample1.wav');
y1_sample_rate = 8000;
[y2,Fs] = audioread('sample2.wav');
y3 = [y1(1:y1_sample_rate,:); y2;];
What am I doing wrong?
Thank you.
  1 Kommentar
Walter Roberson
Walter Roberson am 19 Aug. 2019
We as outside observers have no reason to expect that the two audios will be at the same rate. You should be using resample() to bring them to a common rate.
We as outside observers also have no reason to expect that the two audios will have the same number of channels.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Adam Danz
Adam Danz am 17 Aug. 2019
Bearbeitet: Adam Danz am 19 Aug. 2019
If your intentions are to subsample every 8000 values in y1 and then concatenate y2 to the end,
y3 = [y1(1:y1_sample_rate:numel(y1)); y2];
% |________| ^ no need for semicolon

Weitere Antworten (0)

Kategorien

Mehr zu Audio I/O and Waveform Generation finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by