Tutorial/Manual how to create Visualizer in autoexp.dat
Date : March 29 2020, 07:55 AM
|
Multidimensional array visualizer for Visual Studio using autoexp.dat
Date : March 29 2020, 07:55 AM
wish of those help So I discovered the rank, and base expressions as described here. Got it working. Not a fancy list...but it works. MyClass<*>{
children
(
#array
(
rank: 2,
base: 0,
expr: $e.v[($i % $e.nRow)][($i - $i % $e.nRow)/$e.nRow],
size: ($r==1)*$e.nRow+($r==0)*$e.nCol
)
)
}
|
Android Visualizer Detect Beat? And Visualizer.setCaptureSize() not Working? Alternatives?
Date : March 29 2020, 07:55 AM
seems to work fine Ok after several Hours of Testing and Researching I have found a solution. It may not be very accurate, but it is the only alternative I could come up with. I made a class called BeatDetector: public class BeatDetectorByFrequency {
private static final String TAG = "TEST";
private Visualizer mVisualizer = null;
private double mRunningSoundAvg[];
private double mCurrentAvgEnergyOneSec[];
private int mNumberOfSamplesInOneSec;
private long mSystemTimeStartSec;
// FREQS
private static final int LOW_FREQUENCY = 300;
private static final int MID_FREQUENCY = 2500;
private static final int HIGH_FREQUENCY = 10000;
private OnBeatDetectedListener onBeatDetectedListener = null;
public BeatDetectorByFrequency() {
init();
}
private void init() {
mRunningSoundAvg = new double[3];
mCurrentAvgEnergyOneSec = new double[3];
mCurrentAvgEnergyOneSec[0] = -1;
mCurrentAvgEnergyOneSec[1] = -1;
mCurrentAvgEnergyOneSec[2] = -1;
}
public void link(MediaPlayer player) {
if (player == null) {
throw new NullPointerException("Cannot link to null MediaPlayer");
}
mVisualizer = new Visualizer(player.getAudioSessionId());
mVisualizer.setCaptureSize(Visualizer.getCaptureSizeRange()[1]);
Visualizer.OnDataCaptureListener captureListener = new Visualizer.OnDataCaptureListener() {
@Override
public void onWaveFormDataCapture(Visualizer visualizer,
byte[] bytes, int samplingRate) {
// DO NOTHING
}
@Override
public void onFftDataCapture(Visualizer visualizer, byte[] bytes,
int samplingRate) {
updateVisualizerFFT(bytes);
}
};
mVisualizer.setDataCaptureListener(captureListener,
Visualizer.getMaxCaptureRate() / 2, false, true);
mVisualizer.setEnabled(true);
player.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mediaPlayer) {
mVisualizer.setEnabled(false);
}
});
mSystemTimeStartSec = System.currentTimeMillis();
}
public void release() {
if (mVisualizer != null) {
mVisualizer.setEnabled(false);
mVisualizer.release();
}
}
public void pause() {
if (mVisualizer != null) {
mVisualizer.setEnabled(false);
}
}
public void resume() {
if (mVisualizer != null) {
mVisualizer.setEnabled(true);
}
}
public void updateVisualizerFFT(byte[] audioBytes) {
int energySum = 0;
energySum += Math.abs(audioBytes[0]);
int k = 2;
double captureSize = mVisualizer.getCaptureSize() / 2;
int sampleRate = mVisualizer.getSamplingRate() / 2000;
double nextFrequency = ((k / 2) * sampleRate) / (captureSize);
while (nextFrequency < LOW_FREQUENCY) {
energySum += Math.sqrt((audioBytes[k] * audioBytes[k])
* (audioBytes[k + 1] * audioBytes[k + 1]));
k += 2;
nextFrequency = ((k / 2) * sampleRate) / (captureSize);
}
double sampleAvgAudioEnergy = (double) energySum
/ (double) ((k * 1.0) / 2.0);
mRunningSoundAvg[0] += sampleAvgAudioEnergy;
if ((sampleAvgAudioEnergy > mCurrentAvgEnergyOneSec[0])
&& (mCurrentAvgEnergyOneSec[0] > 0)) {
fireBeatDetectedLowEvent(sampleAvgAudioEnergy);
}
energySum = 0;
while (nextFrequency < MID_FREQUENCY) {
energySum += Math.sqrt((audioBytes[k] * audioBytes[k])
* (audioBytes[k + 1] * audioBytes[k + 1]));
k += 2;
nextFrequency = ((k / 2) * sampleRate) / (captureSize);
}
sampleAvgAudioEnergy = (double) energySum / (double) ((k * 1.0) / 2.0);
mRunningSoundAvg[1] += sampleAvgAudioEnergy;
if ((sampleAvgAudioEnergy > mCurrentAvgEnergyOneSec[1])
&& (mCurrentAvgEnergyOneSec[1] > 0)) {
fireBeatDetectedMidEvent(sampleAvgAudioEnergy);
}
energySum = Math.abs(audioBytes[1]);
while ((nextFrequency < HIGH_FREQUENCY) && (k < audioBytes.length)) {
energySum += Math.sqrt((audioBytes[k] * audioBytes[k])
* (audioBytes[k + 1] * audioBytes[k + 1]));
k += 2;
nextFrequency = ((k / 2) * sampleRate) / (captureSize);
}
sampleAvgAudioEnergy = (double) energySum / (double) ((k * 1.0) / 2.0);
mRunningSoundAvg[2] += sampleAvgAudioEnergy;
if ((sampleAvgAudioEnergy > mCurrentAvgEnergyOneSec[2])
&& (mCurrentAvgEnergyOneSec[2] > 0)) {
fireBeatDetectedHighEvent(sampleAvgAudioEnergy);
}
mNumberOfSamplesInOneSec++;
if ((System.currentTimeMillis() - mSystemTimeStartSec) > 1000) {
mCurrentAvgEnergyOneSec[0] = mRunningSoundAvg[0]
/ mNumberOfSamplesInOneSec;
mCurrentAvgEnergyOneSec[1] = mRunningSoundAvg[1]
/ mNumberOfSamplesInOneSec;
mCurrentAvgEnergyOneSec[2] = mRunningSoundAvg[2]
/ mNumberOfSamplesInOneSec;
mNumberOfSamplesInOneSec = 0;
mRunningSoundAvg[0] = 0.0;
mRunningSoundAvg[1] = 0.0;
mRunningSoundAvg[2] = 0.0;
mSystemTimeStartSec = System.currentTimeMillis();
}
}
// USE INTERFACES IN NEXT UPDATE:
private void fireBeatDetectedLowEvent(double power) {
// Utility.log("LOW BEAT DETECTED!");
Game.lowBeat(power);
if (onBeatDetectedListener != null) {
onBeatDetectedListener.onBeatDetectedLow();
}
}
private void fireBeatDetectedMidEvent(double power) {
// Utility.log("MEDIUM BEAT DETECTED!");
Game.mediumBeat(power);
if (onBeatDetectedListener != null) {
onBeatDetectedListener.onBeatDetectedMid();
}
}
private void fireBeatDetectedHighEvent(double power) {
// Utility.log("HIGH BEAT DETECTED!");
Game.highBeat(power);
if (onBeatDetectedListener != null) {
onBeatDetectedListener.onBeatDetectedHigh();
}
}
public void setOnBeatDetectedListener(OnBeatDetectedListener listener) {
onBeatDetectedListener = listener;
}
public interface OnBeatDetectedListener {
public abstract void onBeatDetectedLow();
public abstract void onBeatDetectedMid();
public abstract void onBeatDetectedHigh();
}
}
public static void highBeat(double power) {
HIGH_FREQUENCY += (power * 1000); // ORIGINAL: * 1000
if (HIGH_FREQUENCY > GameValues.FREQ_MAX) {
HIGH_FREQUENCY = GameValues.FREQ_MAX;
}
updateHighFreq();
}
public static void updateHighFreq() {
prcnt = HIGH_FREQUENCY * 100 / GameValues.FREQ_MAX;
if (prcnt < 0)
prcnt = 0;
HIGH_F_HEIGHT = (int) (GameValues.FREQ_MAX_HEIGHT * (prcnt / 100));
}
|
Is there anything simple for debugger visualizers in C# that's analogous to editing autoexp.dat for C++?
Tag : chash , By : pjkinney
Date : March 29 2020, 07:55 AM
I hope this helps . Override ToString() for your objects, or use DebuggerDisplay (thanks @gdir).
|
Simple music visualizer
Tag : java , By : nonkelhans
Date : March 29 2020, 07:55 AM
|