Questions tagged [visualizer]

255 questions
2
votes
2 answers

Debugger Visualizer for non-managed C++ code?

Does anyone know of a C++ IDE or debugger that's supports debugger visualizers for unmanaged C++ code? The problem is that Visual Studio's debugger visaulizer supports only managed C++. Thanks, Olumide PS: I'm still open to using VS if I can find…
Olumide
  • 5,397
  • 10
  • 55
  • 104
2
votes
1 answer

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 but prefer not to spend 50$ on a asset for it …
MX D
  • 2,453
  • 4
  • 35
  • 47
2
votes
1 answer

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 =…
Gordon Williams
  • 1,856
  • 1
  • 17
  • 31
2
votes
0 answers

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 visualizer in autoexp.dat to display these as four…
stephane.c
  • 136
  • 2
  • 6
2
votes
1 answer

How to work with onWaveFormDataCapture result of Visualizer object?

I'm new to android programming and audio visualization. I want to create a simple audio visualizer using MediaPlayer and Visualizer classes. My problem is that I don't know what wave form data really is. Must I use it to visualize audio? I'm using…
user899205
2
votes
2 answers

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 visual representation in a tree-like form of what…
Yan Sklyarenko
  • 31,557
  • 24
  • 104
  • 139
2
votes
1 answer

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 to find much out there. I'm fairly early in the…
hutherca
  • 35
  • 5
1
vote
0 answers

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 example code as it uses Equalizer and Visualizer the…
Muhammad Nabeel Arif
  • 19,140
  • 8
  • 51
  • 70
1
vote
1 answer

How should I adjust my bubble sort algorithm in python tkinter? (visualizer project)

My code almost works, but I suspect something is being overwritten in my enumerations. I noticed when debugging that I'm comparing the same indexes for ex i=0 and j=0 or i = 1 and j=1. Could this be the issue to my problem? If so how can I adjust…
Jamesyt60
  • 57
  • 6
1
vote
1 answer

ANN Visualizer ERROR: Layer not supported for visualizing

I am relatively new to machine learning with Python and Tensorflow/Keras. I have now got a model running and would like to visualise my network. For this there is a python library for visualizing Artificial Neural Networks (ANN): ANN…
1
vote
1 answer

KubeView fails to start. How can I start KubeView container and not have it exit right away?

Based on the KubeView README, I tried to run KubeView using the container provided here. I run: $ docker run --publish-all --name kubeview ghcr.io/benc-uk/kubeview:0.1.31 I get the following output: 2023/03/12 18:06:45 ### Kubeview v0.1.31…
Shant Dashjian
  • 888
  • 11
  • 20
1
vote
2 answers

Installed Custom Visualizer not loading in VS2022

I am trying for some hours to install a custom visualizer in VS2022. Basically it is a simple string visualizer that opens a wpf form. I followed this:…
1
vote
0 answers

How to mute specific sounds when using multiple audio inputs using P5 Amplitude (P5.js)

I'm very much a P5.js newbie so apologies if this is obvious. I'm trying to build a music visualiser type animation where the amplitude of different audio files control various parameters. However I only want the use to hear the audio file…
Joe_w
  • 11
  • 1
1
vote
1 answer

LegacyAddin works no more in NATVIS Visual Studio 2022

LegacyAddin worked fine until VisualStudio 2019. But the 'natvis' code below stopped to work since Visual Studio 2022:
1
vote
0 answers

How to make a circular waveform using FFMPEG

I am trying to generate a waveform using ffmpeg. I have successfully made a horizontal waveform thanks to pretty good docs(https://trac.ffmpeg.org/wiki/Waveform). However I'm struggling to create circular waveform. I want something like this
Yogesh Yadav
  • 723
  • 6
  • 21