0

現在、私のコードは音声強度を検出しています(メディアレコーダーを使用)音声がないときに背景色を白に変更したい、ユーザーが話すとき、背景色は音声強度に応じて明るくまたは暗くする必要があります

これが私のコードです。声の強さに応じて色を明るくしたり暗くしたりするのに問題があります。

final Runnable updater = new Runnable(){

    public void run(){          
        updateTv();
        TextView tv = (TextView)findViewById(R.id.status);
        int tvStatus=  Integer.parseInt(tv.getText().toString());
        if(tvStatus > 1000)
            updateBackground();
        else
            mScreen.setBackgroundColor(Color.WHITE);
    };
};

final Handler mHandler = new Handler();

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.main);
    mStatusView = (TextView) findViewById(R.id.status);
    mScreen = (LinearLayout) findViewById(R.id.myScreen);

    if (runner ==  null)
    { 
        runner = new Thread(){
            public void run()
            {
                while (runner != null)
                {


                    try
                    { 
                       Thread.sleep(1000);
                        Log.i("Noise", "Tock");
                    } catch (InterruptedException e) { };
                    mHandler.post(updater);
                }
            }
        };
        runner.start();
        Log.d("Noise", "start runner()");
    }
}

private void updateBackground()
{

     int ampl  =(int)getAmplitude();
    int color;
    Random rnd = new Random(); 

 mScreen.setBackgroundColor(

         color );

}
public void onResume()
{
    super.onResume();
    startRecorder();
}

public void onPause()
{
    super.onPause();
    stopRecorder();
}

public void startRecorder(){
    if (mRecorder == null)
    {
        mRecorder = new MediaRecorder();
        mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
        mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
        mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
        mRecorder.setOutputFile("/dev/null"); 
        try
        {           
            mRecorder.prepare();
        }catch (java.io.IOException ioe) {
           android.util.Log.e("[Monkey]", "IOException: " + android.util.Log.getStackTraceString(ioe));

        }catch (java.lang.SecurityException e) {
            android.util.Log.e("[Monkey]", "SecurityException: " + android.util.Log.getStackTraceString(e));
        }
        try
        {           
            mRecorder.start();
        }catch (java.lang.SecurityException e) {
            android.util.Log.e("[Monkey]", "SecurityException: " + android.util.Log.getStackTraceString(e));
        }

        //mEMA = 0.0;
    }

}
public void stopRecorder() {
    if (mRecorder != null) {
        mRecorder.stop();       
        mRecorder.release();
        mRecorder = null;


    }
}

public void updateTv(){
    mStatusView.setText(Integer.toString((getAmplitude())));
}
public double soundDb(double ampl){
    return  20 * Math.log10(getAmplitudeEMA() / ampl);
}
public int getAmplitude() {
    if (mRecorder != null)
        return  (mRecorder.getMaxAmplitude());
    else
        return 0;

}
4

1 に答える 1

1

updateBackground()初期化せずに使用する現在の実装color

private void updateBackground() {
    int ampl = (int) getAmplitude();
    int color;
    Random rnd = new Random(); 

    mScreen.setBackgroundColor(color);
}

最小振幅が0で、最大振幅がMAX_AMPLITUDEであり、白で最小振幅を表し、黒で最大振幅を表す場合は、次のような方法でうまくいくはずです。

private static final int MAX_RGB = 255;
private static final int MAX_AMPLITUDE = 32767;

private void updateBackground() {
    float amplF = (float) getAmplitude();
    int ampl = MAX_RGB - (int) (amplF / MAX_AMPLITUDE * MAX_RGB);

    mScreen.setBackgroundColor(Color.rgb(ampl, ampl, ampl));
}

実際に見られる最大振幅値がよりも大幅に低いことがわかった場合は32767、次の方法でこれを説明できます。

private static final int MAX_RGB = 255;
private static final int int MAX_AMPLITUDE = 1500; // Set to some reasonable value

private void updateBackground() {
    int actual = getAmplitude();

    if (actual > MAX_AMPLITUDE)
        actual = MAX_AMPLITUDE;

    float amplF = (float) actual;
    int ampl = MAX_RGB - (int) (amplF / MAX_AMPLITUDE * MAX_RGB);

    mScreen.setBackgroundColor(Color.rgb(ampl, ampl, ampl));
}

その場合はMAX_AMPLITUDE、一定ではなく、「調整」オプションを提供して構成可能にすることをお勧めします。このオプションでは、ユーザーは大きな音と思われるものを何でも作成できます。

于 2012-07-06T05:19:34.960 に答える