Questions tagged [visualizer]

255 questions
1
vote
0 answers

visual studio debugger visualizer maximum template support

I am using visual studio 2010 and wanted to update my debugger visualizer to show correctly my boost::variant instance. I found this page: https://svn.boost.org/trac/boost/wiki/DebuggerVisualizers and here…
Lior
  • 68
  • 5
1
vote
2 answers

Leap Motion C++ Libraries not being recognized?

I've been playing around with the leap motion using Java and it was fine.. but then I am trying to use C++ instead, but I couldn't seem to make this to work. I am using Visual Studio 2012 and set the libraries and include directory…
Yann Braga
  • 1,231
  • 1
  • 9
  • 15
1
vote
2 answers

Color Visualizer website development

I'm working for a client that is interesting in building a color visualizer for their steel products. I am a web developer and don't really have the advanced knowledge to create these types of things. Are there any pre-built applications out there…
dcaryll
  • 45
  • 3
  • 12
1
vote
1 answer

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 MyClass { T **v; int nRow; int…
Randi
  • 320
  • 2
  • 11
1
vote
2 answers

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 I use audioTrack = new…
Martin L.
  • 3,006
  • 6
  • 36
  • 60
1
vote
1 answer

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 regular intervals to a callback function, which…
F.X.
  • 6,809
  • 3
  • 49
  • 71
1
vote
1 answer

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?
Buzz
  • 6,030
  • 4
  • 33
  • 47
0
votes
0 answers

How To make speech visualizer for speech recognition without using mediaDevices.getUserMedia?

Using JavaScript and speech recognition API Can I build a visualizer to reflect user speech like the one in the link below, without using getUserMedia. The reason of my request because getUserMedia and speechrecognition are not working…
Khalid Almannai
  • 162
  • 1
  • 1
  • 13
0
votes
0 answers

Uncaught TypeError: Cannot read properties of undefined (reading 'style') error

i'm making a sorting visualizer project and i followed a tutorial for the mergeSort algorithm and now i'm trying to make the quicksort algorithm my self. i wrote the code the algorithm works fine but when i try to visualize it i get the error listed…
Avenger
  • 1
  • 2
0
votes
0 answers

I have installed a plugin named JIVE in the Eclipse software. it prompts that the source code is not available when i use it

I have installed a plugin named JIVE in the Eclipse software. It can generate object diagrams and sequence diagrams based on Java source code and supports features like rollback and filtering. However, when I right-click on the sequence diagram and…
0
votes
0 answers

Android audio visualizer: cannot make it to work with tts

My app uses Android text-to-speech to read paragraphs, and I'd like to add an audio visualizer so to have an animation according to the speech. I've found this android-audio-visualizer library that looks quite interesting, but I don't know how to…
Diego Perez
  • 2,188
  • 2
  • 30
  • 58
0
votes
0 answers

FORTIFY: pthread_mutex_lock called on a destroyed mutex (0x)

I am using Visualizer class for music beats change that gives me value which I am using to show spectrum animation user experience as: visualizer = Visualizer(audioSessionId) visualizer!!.enabled = false visualizer!!.captureSize =…
0
votes
0 answers

How to save an audio stream as a file and play it in php and html

I have created a text to speech program using an API from https://www.voicerss.org/ The program plays the audio directly in the browser. This is done with header('Content-Type:…
0
votes
0 answers

Android Visualizer class - app forces ANR and crash

I am using Equalizer class to visualize audio output. Below is the code which uses Equalizer class public void initialize() { if (mVisualizer == null) { mVisualizer = new Visualizer(MediaManager.AUDIO_SESSION_ID); if (mEqualizer…
cubesoft
  • 3,448
  • 7
  • 49
  • 91
0
votes
0 answers

Android Flashlight blinking at rythm of the (output) music

I'm new to android and I'm working on an app as a project. This app should make the flashlight turn on/off at the same rythm of the output music of the smartphone. I thought about using the android class Visualizer…