- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编程一个媒体播放器android应用程序。
我想使用AudioTrack
类,因为我想使用具有超过5个Band的均衡器。
我的问题是,我解码了.mp3文件,并使用AudioTrack
播放了示例。这很好用,但是当我使用BiQuad peakEq滤波器时,我的轨道在我想要增强的频率处crack啪作响。
这是我的代码:
Player.java:
public class Player {
private static final String TAG = Player.class.getSimpleName();
public short[] buffer;
public boolean firstStart = false;
public static volatile int position = 0;
public static short[] decode(String path, int startMs, int maxMs)
throws IOException, DecoderException {
short[] pcm = new short[16070400];
int position = 0;
float totalMs = 0;
boolean seeking = true;
File file = new File(path);
InputStream inputStream = new BufferedInputStream(new FileInputStream(
file), (8 * 1024));
try {
Bitstream bitstream = new Bitstream(inputStream);
Decoder decoder = new Decoder();
boolean done = false;
while (!done) {
Header frameHeader = bitstream.readFrame();
if (frameHeader == null) {
done = true;
} else {
totalMs += frameHeader.ms_per_frame();
if (totalMs >= startMs) {
seeking = false;
}
if (!seeking) {
SampleBuffer output = (SampleBuffer) decoder
.decodeFrame(frameHeader, bitstream);
if (output.getSampleFrequency() != 44100
|| output.getChannelCount() != 2) {
throw new DecoderException(
"mono or non-44100 MP3 not supported", null);
}
short[] buffer = output.getBuffer();
for (int i = 0; i < buffer.length; i++) {
pcm[position] = buffer[i];
position++;
}
}
if (totalMs >= (startMs + maxMs)) {
done = true;
}
}
bitstream.closeFrame();
}
Log.i(TAG, "position " + position);
return pcm;
} catch (BitstreamException e) {
throw new IOException("Bitstream error: " + e);
} catch (DecoderException e) {
Log.w(TAG, "Decoder error", e);
throw new DecoderException(maxMs, e);
} finally {
}
}
private void fillBuffer(short[] samples) {
BiQuad filter = new BiQuad(FilterType.PEAK, (63.0 / 44100.0), 0.707, 5.0);
for (int i = 0; i < buffer.length; i++) {
buffer[i] = (short) filter.process(buffer[i]);
}
}
public void playWithAudioTrack() throws IllegalArgumentException,
SecurityException, IllegalStateException, IOException,
DecoderException {
new Thread(new Runnable() {
@Override
public void run() {
try {
String path = "/storage/sdcard0/Music/lordi.mp3";
MediaPlayer mPlayer = new MediaPlayer();
mPlayer.setDataSource(path);
mPlayer.prepare();
int durationMs = mPlayer.getDuration();
if (!firstStart) {
buffer = decode(path, 0, durationMs);
}
fillBuffer(buffer);
int minSize = AudioTrack.getMinBufferSize(44100,
AudioFormat.CHANNEL_OUT_STEREO,
AudioFormat.ENCODING_PCM_16BIT);
AudioTrack track = new AudioTrack(
AudioManager.STREAM_MUSIC, 44100,
AudioFormat.CHANNEL_OUT_STEREO,
AudioFormat.ENCODING_PCM_16BIT, minSize,
AudioTrack.MODE_STREAM);
track.play();
for (int i = 0; i < buffer.length; i++) {
track.write(buffer, i, buffer.length);
}
track.release();
firstStart = true;
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SecurityException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalStateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// TODO Auto-generated method stub
catch (DecoderException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
}
}
}).start();
}
}
public class BiQuad
{
FilterType filterType;
double a0, a1, a2, b1, b2;
double Fc, Q, peakGain;
double z1, z2;
public enum FilterType
{
LOWPASS,
HIGHPASS,
BANDPASS,
NOTCH,
PEAK,
LOWSHELF,
HIGHSHELF;
};
public float process(float in)
{
double out = in * a0 + z1;
z1 = in * a1 + z2 - b1 * out;
z2 = in * a2 - b2 * out;
return (float)out;
}
public BiQuad()
{
filterType = FilterType.LOWPASS;
a0 = 1.0f;
a1 = a2 = b1 = b2 = 0.0f;
Fc = 0.50f;
Q = 0.707f;
peakGain = 0.0f;
z1 = z2 = 0.0f;
}
public BiQuad(FilterType filterType, double Fc, double Q, double peakGainDB)
{
setBiquad(filterType, Fc, Q, peakGainDB);
z1 = z2 = 0.0f;
}
public void setType(FilterType filterType) {
this.filterType = filterType;
calcBiquad();
}
public void setQ(double Q) {
this.Q = Q;
calcBiquad();
}
public void setFc(double Fc) {
this.Fc = Fc;
calcBiquad();
}
public void setPeakGain(double peakGainDB) {
this.peakGain = peakGainDB;
calcBiquad();
}
public void setBiquad(FilterType filterType, double Fc, double Q, double peakGainDB) {
this.filterType = filterType;
this.Q = Q;
this.Fc = Fc;
setPeakGain(peakGainDB);
}
public void calcBiquad() {
double norm;
double V = Math.pow(10, Math.abs(peakGain) / 20.0);
double K = Math.tan(Math.PI * Fc);
switch (this.filterType) {
case LOWPASS:
norm = 1 / (1 + K / Q + K * K);
a0 = K * K * norm;
a1 = 2 * a0;
a2 = a0;
b1 = 2 * (K * K - 1) * norm;
b2 = (1 - K / Q + K * K) * norm;
break;
case HIGHPASS:
norm = 1 / (1 + K / Q + K * K);
a0 = 1 * norm;
a1 = -2 * a0;
a2 = a0;
b1 = 2 * (K * K - 1) * norm;
b2 = (1 - K / Q + K * K) * norm;
break;
case BANDPASS:
norm = 1 / (1 + K / Q + K * K);
a0 = K / Q * norm;
a1 = 0;
a2 = -a0;
b1 = 2 * (K * K - 1) * norm;
b2 = (1 - K / Q + K * K) * norm;
break;
case NOTCH:
norm = 1 / (1 + K / Q + K * K);
a0 = (1 + K * K) * norm;
a1 = 2 * (K * K - 1) * norm;
a2 = a0;
b1 = a1;
b2 = (1 - K / Q + K * K) * norm;
break;
case PEAK:
if (peakGain >= 0) { // boost
norm = 1 / (1 + 1/Q * K + K * K);
a0 = (1 + V/Q * K + K * K) * norm;
a1 = 2 * (K * K - 1) * norm;
a2 = (1 - V/Q * K + K * K) * norm;
b1 = a1;
b2 = (1 - 1/Q * K + K * K) * norm;
}
else { // cut
norm = 1 / (1 + V/Q * K + K * K);
a0 = (1 + 1/Q * K + K * K) * norm;
a1 = 2 * (K * K - 1) * norm;
a2 = (1 - 1/Q * K + K * K) * norm;
b1 = a1;
b2 = (1 - V/Q * K + K * K) * norm;
}
break;
case LOWSHELF:
if (peakGain >= 0) { // boost
norm = 1 / (1 + Math.sqrt(2.0) * K + K * K);
a0 = (1 + Math.sqrt(2.0*V) * K + V * K * K) * norm;
a1 = 2 * (V * K * K - 1) * norm;
a2 = (1 - Math.sqrt(2.0*V) * K + V * K * K) * norm;
b1 = 2 * (K * K - 1) * norm;
b2 = (1 - Math.sqrt(2.0) * K + K * K) * norm;
}
else { // cut
norm = 1 / (1 + Math.sqrt(2.0*V) * K + V * K * K);
a0 = (1 + Math.sqrt(2.0) * K + K * K) * norm;
a1 = 2 * (K * K - 1) * norm;
a2 = (1 - Math.sqrt(2.0) * K + K * K) * norm;
b1 = 2 * (V * K * K - 1) * norm;
b2 = (1 - Math.sqrt(2.0*V) * K + V * K * K) * norm;
}
break;
case HIGHSHELF:
if (peakGain >= 0) { // boost
norm = 1 / (1 + Math.sqrt(2.0) * K + K * K);
a0 = (V + Math.sqrt(2.0*V) * K + K * K) * norm;
a1 = 2 * (K * K - V) * norm;
a2 = (V - Math.sqrt(2.0*V) * K + K * K) * norm;
b1 = 2 * (K * K - 1) * norm;
b2 = (1 - Math.sqrt(2.0) * K + K * K) * norm;
}
else { // cut
norm = 1 / (V + Math.sqrt(2.0*V) * K + K * K);
a0 = (1 + Math.sqrt(2.0) * K + K * K) * norm;
a1 = 2 * (K * K - 1) * norm;
a2 = (1 - Math.sqrt(2.0) * K + K * K) * norm;
b1 = 2 * (K * K - V) * norm;
b2 = (V - Math.sqrt(2.0*V) * K + K * K) * norm;
}
break;
}
}
}
最佳答案
我并没有真正检查后面的数学计算(只是对这个话题不太了解)。我刚刚认识到的是,大多数计算都不会检查该值是否有任何溢出。
这将以某种方式与您的解释相符,即它适用于0dB设置并降低放大率。
关于java - 均衡器,BiQuad滤波器破裂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21414296/
所以我试图增强我的图像的对比度,我发现一位绅士通过在线 Gamma 校正来做到这一点,代码如下: (im/255).^0.45*255 据我了解,1/gammavalue = 0.45,其中 gamm
我有一个包含简单时间序列数据的向量(从 deSolve 矩阵中提取),用于测试目的可以是: x x r for (n in 2:length(x)) r[n] (r) [1] NA 1 1
我有这段实现 Prewitt 边缘检测的代码。我需要做的是只用一个缓冲区来实现它,也就是说,我不会创建图像的拷贝,而是编辑原始图像。所以如果我想改变值 78 的像素,我不能把新值,例如100,直到所有
我想制作一个 FIR 滤波器。我有一个系数数组 (buffer[size]) 和一个数据数组 (filter[size_filter])。我必须在两个数组之间进行卷积: for(j = 0;j < s
我正在尝试制作 IIR 滤波器。我做了FIR滤波器,但是我觉得IIR比FIR难。 我认为 IIR 与 FIR 类似,但它让我感到困惑。 我觉得过滤器是这样的 FIR : y(n) = b0(x[n])
我想在 Python 中通过窗口创建一个基本的高通 FIR 滤波器。 我的代码在下面并且是故意惯用的 - 我知道你可以(很可能)用 Python 中的一行代码完成它,但我正在学习。我使用了一个带有矩形
我正在尝试用树莓派创建一个相机来检测在走廊中移动的人(这里我假设只有移动的东西是人),并识别那些在该区域花费太多时间的人(使用计时器),我使用背景减法来检测运动并尝试使用基于相关性的跟踪器(例如 MO
我正在研究用于特征提取的超像素。我已经成功地将超像素功能应用于图像。 A = imread('kobi.png'); [L,N] = superpixels(A,5); figure BW = bou
你好 我需要在应用中使用这个 Kolmogorov 过滤器。您将一些测量数据放入其中,并使用过滤器对其进行一些平滑处理。我试着用“nchoosek”来做,但是当我尝试为 50 或更多的 I 做这件事时
我正在尝试在具有静态掩码 5x5 并在 applyFilter() 函数中进行卷积编码的图像上实现 LoG 过滤器。然而,无论我使用什么面具,我都会得到奇怪的结果。保存图像而不通过函数传递它是有效的,
我已经在 Haskell 中实现了一个 FIR 滤波器。我不太了解 FIR 滤波器,我的代码很大程度上基于现有的 C# 实现。因此,我觉得我的实现有太多的 C# 风格,而不是真正的 Haskell 风
我需要制作一个简单的带通音频滤波器。现在我使用了这个简单的 C++ 类:http://www.cardinalpeak.com/blog/a-c-class-to-implement-low-pass
CUDA NPP 库支持使用 nppiFilter_8u_C1R 命令过滤图像,但不断出现错误。我可以毫无问题地启动并运行 boxFilterNPP 示例代码。 eStatusNPP = nppiFi
我是 OpenCV 和 gabor 过滤器的新手,只想获得这样的 gabor 小波: 我在 Java 中使用这个 OpenCV 代码: double sigma_bar = 40; double th
我正在使用 FIR 滤波器对音频进行过采样。这是一个简单的典型窗口 sinc,即一个被截断和窗口化的 sinc 函数。像往常一样,它需要过去和“ future ”的样本才能工作。实际上,这意味着音频输
目前我正在尝试实现 FIR 低通滤波器。 FIR 系数在 MATLAB 中计算。现在我需要用 C++ 实现 FIR 算法。 我将一个类定义为过滤器,将 FIR 的一个函数定义为: double * F
我有一个用 C 语言实现 FIR 滤波器的家庭作业,我想知道您是否认为我理解正确。我认为解决问题的程序是: #include float FIRfloats[5]; void floatFIR(fl
我希望对图像的每条水平线应用频域滤波器,例如低通或带通。这可能使用 opencv 吗? 最佳答案 我认为您需要详细说明您的问题。也许,举一些具体的例子。 如果我将您的问题解释为: 你有一张 10 x
我的问题与 A. Levy 的解释相关: Analyze audio using Fast Fourier Transform 如何在这些复数上生成带通滤波器... [-636.00000000 +0
FIR 滤波器有一个算法,但它是 float : FIR filter implementation in C programming 如果我想要一个符合此规范的定点算法,我该怎么做? the FIR
我是一名优秀的程序员,十分优秀!