The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

How to get real time audio ouput using visualizer class

datacapture part class DataCapture { private Visualizer mVisualizer; public double amp = 0; public void start() { mVisualizer = new Visualizer(0); mVisualizer.setEnabled(false); ...
0
votes
1answer
30 views

Multidimensional array visualizer for Visual Studio using autoexp.dat

I have been trying to create a visualizer for Visual studio in autoexp.dat file. Can someone give me a few pointers? Here is a stripped down version of the class declaration: template<class ...
-1
votes
0answers
7 views

Visualizer code [closed]

i'm starting an internet radio. A really cool idea struck me. Is it possible that the background can turn into a visualizer(like one of windows media player, vlc, etc), and ofcourse the visualizer for ...
0
votes
1answer
26 views

Need to have an visualizer to show information from a file

I am scanning a log file, the log file contains different component, component contain sub component & the sub component contains sub-sub component. There is parent child relationship with 3 ...
0
votes
2answers
63 views

Android Visualizer on muted AudioTrack/MediaPlayer

I have a PCM-stream which I would like to visualize with Android's "Visualizer" but without playing it out loudly. Therefor I have implemented android-visualizer. The visualization is successful, if ...
1
vote
0answers
67 views

Show preview of bitmap on rollover in Visual Studio debugger

How do I create a Visual Studio 2010 Extension to show a panel when I rollover a Bitmap? I'd like to show the thumbnail of the Bitmap object on rollover, something like this: How can I accomplish ...
0
votes
0answers
12 views

What are some other tools which visually map a page's DOM structure?

The only one I've found so far is the NodeMap extension for Chrome. It's going in the right direction but leaves a lot to be desired. I know about the 3D inspector in Firefox. I'm looking for ...
0
votes
1answer
111 views

Creating a visualizer Unity3d

I have been trying to find some things online about how to make your own visualizer that responds to sound, But so far I only could find tutorials for on a mac. I also found some premade visualizer ...
0
votes
1answer
96 views

Android MediaPlayer.snoop(): How do you get future audio data?

This is something that I'm guessing is impossible without weird work arounds if its possible at all. However, How would I use snoop() (or something like it) to get audio data for the audio ...
0
votes
1answer
140 views

Android Visualizer Stereo Capture

I'd like to use the Visualizer class to capture system wide audio in a specific format. (44.1khz, 16 bits, Stereo) I can't figure out how to request a certain format be returned to me. I can get a ...
0
votes
0answers
355 views

Fatal signal 11 android Visualizer

I'm developing application that play a list of audio files after click of button play all, after playing each file I recreate a new VisualizerView from ...
0
votes
1answer
115 views

Android Visualizer behavior

I'm trying to use a C library (Aubio) to perform beat detection on some music playing from a MediaPlayer in Android. To capture the raw audio data, I'm using a Visualizer, which sends a byte buffer at ...
0
votes
0answers
116 views

How can I play bytes(from visualizer) using soundpool?

What I am trying is : Playing sound using MediaPlayer Trying to capture that playing audio using visualizer modify pitch using soundpool play using soundpool. Here is my complete rough code: ...
0
votes
1answer
98 views

How to get android-visualizer from Felix Palmer to work?

I downloaded the code for "android-visualizer" from Felix Palmer and I tried to get it to work, but I got the error that I pasted below. What should I to get this to work? My company is working on an ...
0
votes
1answer
133 views

Unable to play(using AudioTrack) Captured PCM audio using Visualizer

I m trying to capture the played file in MediaPlayer using Visualizer and play it using AudioTrack. But the captured data is noise only. Here is my code. mPlayer = MediaPlayer.create(this, ...
0
votes
0answers
158 views

How to download your Android music visualizer project? [closed]

Your Android music visualizer project looks very interesting! My company is working on an Android visualizer with OpenGL 3d effects. Is it possible to download the source code for it? I read the info ...
0
votes
2answers
65 views

Mole for Visual Studio 2012 or similar tool?

Mole 2010 is a very nice mega visualizer to view many kinds of .NET objects with exporting capabilities. However it doesn't work in Visual Studio 2012. The word from them since summer is the new ...
0
votes
0answers
84 views

ReadDebuggeeMemory std::vector

I'm writing a custom native visualizer dll for Visual Studio 2012 Debugger on a C++ and i have a little trouble with getting content of std::vector. I have read many manuals about this theme, but none ...
0
votes
2answers
315 views

Call requires API level 9 (current is 8 => WRONG), android.media.audiofx.Visualizer related. (Picture Inside)

Sorry I couldn't make the title more clear, so here is my problem : I'm using a source code from this project ( https://github.com/felixpalmer/android-visualizer ) and have a really weird problem. ...
3
votes
3answers
638 views

How to do Visualizer while recording audio in android

I know Visualizer to show some wave while playing audio using android Media Player. But i want to show Visualizer while recording audio means while recording i want to show linear wave which changes ...
1
vote
1answer
138 views

How to get non-zero Sound data from Android Visualizer class

I have the following code: mVisualizer = new Visualizer(0); mVisualizer.setEnabled(false); int capRate = Visualizer.getMaxCaptureRate(); int capSize = Visualizer.getCaptureSizeRange()[1]; ...
2
votes
1answer
857 views

LINQ to SQL debug visualizer for VS 2012?

I'm looking for the Linq to SQL debug visualizer for VS 2012. I found out that you needed to import Microsoft.VisualStudio.DebuggerVisualizers.dll in C:\Program Files (x86)\Microsoft Visual Studio ...
0
votes
0answers
197 views

Visualizing Weka classification tree in C#

I created a C# program using the weka library. I was following the WekaManual.pdf, example builds a J48 classifier on a dataset and displays the generated tree visually using the TreeVisualizer ...
1
vote
1answer
150 views

Is there any free WPF visualizer for VS2010

Is there any free wpf visualizer available, a quick google search show tool name "mole" and "snoop", any one have experience with them, are they really helpfull?
7
votes
1answer
1k views

How to write a custom native visualizer DLL for Visual Studio 2012 debugger?

What is needed to write a custom native visualizer DLL in C++ for Visual Studio 2012 debugger? I want to display a value that can only be calculated from a class/struct on-demand hence a native ...
5
votes
1answer
451 views

Android : “cannot initialize visualizer engine”

I've started programming for Android 3 days ago, and today I wanted to do something more difficult using some classes from android Api. I find class Visualizer and at first attemp I had a problem. I ...
1
vote
0answers
131 views

visualizer for simple typedef type in autoexp.dat (to display fourcc DWORD as chars)

We are using a lot of fourCC custom types in our code, like: typedef unsigned int fourcc; fourcc flag; if (flag=='add') ...; else if (flag=='del') ...; etc... We would like to be able to add a ...
0
votes
1answer
467 views

How to work with onWaveFormDataCapture result of Visualizer object?

I'm new to android programming and audio stuff. I want to create a simple audio visualizer using MediaPlayer and Visualizer classes, but my problem is i dont know what a wave form data really is, and ...
0
votes
0answers
128 views

Visualizer with MediaPlayer for android 2.2 and 2.1

I know the Visualizer class available for android 9 and up , but is there a way to make a visualizer for android 2.2 and down ??
0
votes
0answers
395 views

Android Visualizer that detects beat

I am working on an application which will be detecting the high beat and perform some animation accordingly. While looking at the android visualizer class I saw that we can get either waveform data or ...
0
votes
3answers
534 views

What is a good Python 2D realtime visualizer?

I just want to draw and update simple 2D shapes to the screen in realtime based on data being received from a network. So static plotting is not appropriate. I couldn't get Pyglet working on MacOs - ...
1
vote
2answers
73 views

Is there any tool or API to visualize NAnt build scripts?

I have a complex NAnt build script, which contains a lot of *.build and *.include files with many targets inside, which in their turn are called both via depends and via call. I'd like to have a ...
4
votes
2answers
286 views

Is there an Expression Tree Visualizer for VS 2012?

Is there an Expression Tree Visualizer for VS 2012? Have had a search but have found the VS 2008 popping up all over the place, and the new VS 2012 doesn't have a Visualizers folder in the ...
0
votes
1answer
431 views

How to develop a music visualizer using openFrameworks

I'm going to using openFrameworks to develop a music visualizer--music drive graphics. I can use Opengl to do the graphics. But the problem is the audio processing part. I have no experience in this ...
2
votes
1answer
249 views

How to video out java through DVI/HDMI?

For a project I have to create a music visualizer in java (I've decided on using www.processing.org to create the visuals) and then output it using DVI/HDMI to a spartan-6 board. I haven't been able ...
2
votes
2answers
326 views

Best addon for reading data from .mp3 with JDK 1.6

I'm attempting to write a music visualizer. I've looked into it and sound.sampled looks like a good library for reading the data. However, the jdk can only load .wav files. So I'm looking for a ...
2
votes
2answers
511 views

Even simplest rules for [Visualization] in autoexp.dat won't work

I am trying to visualize my matrix class in a more readable way than array of arrays using text visualizer. However even simplest rules won't work. Here is my rule for autoexp.dat: ; Custom ...
2
votes
1answer
518 views

How to add two edges having the same label (but different endpoints) in JUNG?

How to add two edges having the same label but different endpoints? For example, I want to add two edges having the same label 'label1', one from vertex v-1 to vertex v-2 and the other one from ...
2
votes
1answer
1k views

How to add custom vertex labels in JUNG graph visualization?

How to use custom vertex labels in JUNG graph visualization? I am following this tutorial. There I found that setVertexLabelTransformer() can be used to label the vertices, but these labels cannot be ...
0
votes
1answer
668 views

android.media.audiofx.Visualizer throwing exception every other time

I'm making a Live Wallpaper for Android 2.3.3 and it used the Visualizer class. I've already got a working version of my Visualizer program working as a stand alone but when I place the code into a ...
1
vote
0answers
654 views

Implement Audio Visualizer in Android 2.1

I have developed an Audio player in Android with minSdkVersion=7 i.e Android 2.1. Now I want implement Audio Visualizer as given in AudioFxDemo example. The problem is I can not use AudioFxDemo ...
2
votes
1answer
334 views

Creating Custom Visualizer

I am Trying to make a Audio visualizer for a project that will render audio like typical audio debugger Except rendered as a circle (Some of you may be thinking THATS NOT HOW IT WORKS, but i will ...
1
vote
3answers
3k views

Android Visualizer implementation crash

I am trying to implement the Android Visualizer class. I have looked up other trouble threads but I am still getting a fatal error. This all looks to me like it should work correctly, for whatever ...
2
votes
2answers
2k views

Audio visualisation while recording

I would like to show a bar graph visualisation while recording audio. How can I do this?
3
votes
1answer
1k views

Visual Studio: Dataset and DataTable Visualizer not working in watch window

I have just installed visual studio 2005 service pack 1 on a Windows 7 64 bit machine. Everything appears to work fine and I am able to run my project without any errors. However, when I am in debug ...
2
votes
1answer
1k views

Android Visualizer (Audio Effects) runtime exception on Ice Cream Sandwich

In the sample AudioFxDemo.java, provided with the SDK, I get a java.lang.RuntimeException: Cannot initialize Visualizer engine, error: -4 when trying to create the android.media.audiofx.Visualizer ...
2
votes
0answers
632 views

Android Visualizer getWaveForm() behaves weird at high volumes

I am using the Android Visualizer to obtain the waveform data of an audio stream and calculate the RMS of it. public int[] getFormattedData(byte[] rawVizData) { for (int i = 0; i < ...
2
votes
1answer
1k views

Android Visualizer FFT / waveform affected by device volume?

I'm working on some music analysis using the Visualizer class on Android 2.3.1. I am finding that the FFT and waveform magnitudes are affected by the volume of the device. This means that if the user ...
4
votes
1answer
395 views

Creating a C# VS2010 Visualizer that operates on all Object

I’m attempting to create a C# debugging visualizer that can perform a visualization on all objects. I can’t seem to get the assembly attribute (above the namespace) to bind this visualizer to ...
5
votes
2answers
2k views

Why does my FFT gives a different visualizer output than Windows Media Player?

I am trying to implement an audio spectrum analyzer in android using the Visualizer class. I am getting FFT data in the onFftDataCapture() method of OnDataCaptureListener() event and I'm drawing that ...

1 2