octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #59149] Resampling from 22050 to 48000 Hz intr


From: anonymous
Subject: [Octave-bug-tracker] [bug #59149] Resampling from 22050 to 48000 Hz introduces a strange and unexpected artifacts
Date: Sun, 20 Sep 2020 02:37:55 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:80.0) Gecko/20100101 Firefox/80.0

URL:
  <https://savannah.gnu.org/bugs/?59149>

                 Summary: Resampling from 22050 to 48000 Hz introduces a
strange and unexpected artifacts
                 Project: GNU Octave
            Submitted by: None
            Submitted on: Sun 20 Sep 2020 06:37:54 AM UTC
                Category: Octave Function
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Marc René Schädler
        Originator Email: suaefar@googlemail.com
             Open/Closed: Open
                 Release: 5.2.0
         Discussion Lock: Any
        Operating System: GNU/Linux

    _______________________________________________________

Details:


%I noticed this when preparing listening experiments for listeners with
impaired hearing, where these high-frequency components (see result of code
example below) get amplified and are producing audible distortions.
% The sox resampler does not produce such artifacts

% Code that produces the artifact for me:

% Generate a sine wave
fs = 22050;
s = sin(linspace(0,1000.*2*pi,fs+1));

% Resample from 22050 to 48000 Hz
sr = resample(s,48000,fs);

% Plot first 100ms of both signals
plot((1:2205)./2205,s(1:2205)); hold on;
plot((1:4800)./4800,sr(1:4800));

% Watch closely and you should see that one sample is "off" a bit
xlim([0.37 0.39])







    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?59149>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]