How do i mix two audio signals in GUI and Update the UI?
2 ビュー (過去 30 日間)
古いコメントを表示
This is how my GUI looks. What I would like to do is, mix and save the two audio together by pressing the button Mix. I have shared my app if you can please have a look. I know how to join them with audios from same directory but with the GUI i am having trouble.

0 件のコメント
回答 (1 件)
Cris LaPierre
2021 年 12 月 30 日
編集済み: Cris LaPierre
2021 年 12 月 30 日
See this post on how to mix audio signals:
The challenge here is guaranteeing that the signals are both the same length, or correctly handling them if they are not.
5 件のコメント
Cris LaPierre
2021 年 12 月 31 日
Yup, because that is what you have coded.
joined = [y;y2];
That code appends y2 to the bottom of y. Again, see this post on how to mix audio signals:
参考
カテゴリ
Help Center および File Exchange で Audio and Video Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!