how to pan stereo audio on Matlab
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Femi Okome
le 15 Déc 2022
Commenté : Femi Okome
le 16 Déc 2022
i have exported the data of a sterio wav file. i have code to change aplitude of the audio, pan the audio and play it. but im stuck on how to pan the audio
amplificationFactor = 1.1; % Ten percent gain.
data = data * amplificationFactor;
plot(data);
sound(data, fs);
any advice will be appreciated
0 commentaires
Réponse acceptée
Bora Eryilmaz
le 15 Déc 2022
Modifié(e) : Bora Eryilmaz
le 15 Déc 2022
For stereo audio, your data has to be an n x 2 matrix. Then you can multiply each channel (column) by a weight between 0 and 1 to pan.
% Full pan left
data = rand(100,2);
data(:,2) = 0;
% Full pan right
data = rand(100,2);
data(:,1) = 0;
% 25% left, 75% right pan
data = rand(100,2);
data(:,1) = 0.25 * data(:,1);
data(:,2) = 0.75 * data(:,2);
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Measurements and Spatial Audio dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!