Rock your Razer Chroma devices with the Audio Visualizer | Razer Insider
Skip to main content

Rock your Razer Chroma devices with the Audio Visualizer


Did this topic help you find an answer to your question?
Show first post
This topic has been closed for comments

1953 Replies

  • 0 replies
  • January 20, 2017
Why i can't install this files

Pantelis SeJo
Why i can't install this files
Should be pretty obvious based on the error message. Another version is already installed, that means you don't need to install it again.

OniiNyah
  • 4 replies
  • January 20, 2017
Max_Zhang
i got a question though, so it says keyboard visualizer. but i only have a firefly. will it work still?
It should be able to work. If you havent tested it yet, try it and see :))

Yeah Firefly is supported. You don't need a keyboard, I just called it that because originally it was just keyboards supported. These days it supports a ton more devices, many non-keyboards.

  • 0 replies
  • January 21, 2017
Hi guys quick question... does this work on the new razer stealth ? if so could anyone link a guide how to use it? i have tried downloading the files and it just makes my keyboard black.

Jenjar
Vanguard
  • Vanguard
  • 483 replies
  • January 21, 2017
macos007
Hi guys quick question... does this work on the new razer stealth ? if so could anyone link a guide how to use it? i have tried downloading the files and it just makes my keyboard black.
Is the Audio Device section set to the device you are listening from? This was a little problem i had first when i downloaded the updated version.

  • 0 replies
  • January 21, 2017
Jenjar
Is the Audio Device section set to the device you are listening from? This was a little problem i had first when i downloaded the updated version.
hi i am sorry for another dumb question (this is my first razer devide) how do i check the audio device ? i have in razer synapse under chroma apps the audiovisualizer app enabled. but once i open the audiovisualizer 1.11 and also the 2.02 version it goes two ways black or just keeps playing the current setting. I am trying to use the keyboard of the new razer stealth (not sure if is posible and i am assuming you can) tried some youtube videos but all they use is razer keyboards but none showing they keyboard of the laptop.

Jenjar
Vanguard
  • Vanguard
  • 483 replies
  • January 21, 2017
macos007
hi i am sorry for another dumb question (this is my first razer devide) how do i check the audio device ? i have in razer synapse under chroma apps the audiovisualizer app enabled. but once i open the audiovisualizer 1.11 and also the 2.02 version it goes two ways black or just keeps playing the current setting. I am trying to use the keyboard of the new razer stealth (not sure if is posible and i am assuming you can) tried some youtube videos but all they use is razer keyboards but none showing they keyboard of the laptop.
It has a little option where you can change what audio device you are using. You can try to do this in version 2.22, But i don't know if this option was a thing in the version 1.11. May just be a problem with the stealth right now, Although i think you can use it on the stealth, since i seen videos of it being done on it before.

  • 0 replies
  • January 21, 2017
As soon as i close the visualiser the colors on my blackwidow chroma freeze.Although the app is running on the backround.Is this normal?

Jenjar
Vanguard
  • Vanguard
  • 483 replies
  • January 21, 2017
BlackJack7
As soon as i close the visualiser the colors on my blackwidow chroma freeze.Although the app is running on the backround.Is this normal?
On my old deathstalker when i left the program it froze the colors on the keyboard. All i used to do was go into synapse, And disable and re-enable the app.

  • 0 replies
  • January 22, 2017
Jenjar
On my old deathstalker when i left the program it froze the colors on the keyboard. All i used to do was go into synapse, And disable and re-enable the app.
I did that 100 times already because i thought it was bugging but still nothing

The new Razer Blade Stealth isn't supported yet. It's due to a limitation of the Chroma SDK, where sending an effect to the Blade Stealth only works with the first generation (Skylake) Blade Stealth and not the new Kaby Lake one. I just committed a change that will allow you to use the generic keyboard effect which isn't as good but does work on the Kaby Lake RBS, with the limitation that the same pattern applies to all keyboards. I haven't released a build with this change yet but I'll post it when I do.

  • 0 replies
  • January 22, 2017
CalcProgrammer1
The new Razer Blade Stealth isn't supported yet. It's due to a limitation of the Chroma SDK, where sending an effect to the Blade Stealth only works with the first generation (Skylake) Blade Stealth and not the new Kaby Lake one. I just committed a change that will allow you to use the generic keyboard effect which isn't as good but does work on the Kaby Lake RBS, with the limitation that the same pattern applies to all keyboards. I haven't released a build with this change yet but I'll post it when I do.
awesome thank you so much for the hard work

Inelastic
  • Insider Mini
  • 9 replies
  • January 24, 2017
Just tried the latest version, 3.01. Great work! One thing I noticed is that the drop box for the audio device is only the size of 1 of the text entries. Also, the led visualizer doesn't appear to be even-strip friendly. What I mean is that if you have 15 leds, then you can split it up into 7 on the left and 7 on the right with a center led. The program works great for this since the middle one lights up first and then it spreads out evenly between the 7 on the left and 7 on the right. However, if you have 16 leds then the visualizer starts off on led 8 and spread out that way (as opposed to starting off on 7 and 8). If you turn the amplitude up to over 9000, then all the leds are light up on the right but the last led on the left isn't lit up. I wound up creating another serial_buffer in the Arduino code to compensate. It creates a new array identical to the original array, then overwrites the left side rgb values with the right side. I'll post it below in case anyone else who is anal like me wants to use it. Place it inside the "if" statement at the top with the comment "Test if valid write packet" [CODE] for (int i = 0; i < PACKET_SZ; i++) { serial_buffer_even = serial_buffer; } for (int i = 0; i < LEDS / 2; i++) { int idx = start + 1 + (3 * i); int idx2 = start + 1 + (LEDS - i - 1) * 3; serial_buffer_even[idx + 0] = serial_buffer[idx2 + 0]; serial_buffer_even[idx + 1] = serial_buffer[idx2 + 1]; serial_buffer_even[idx + 2] = serial_buffer[idx2 + 2]; }[/CODE] You'll have to define the new serial buffer just like the other one in the beginning of the code and then use this buffer in the setPixelColor() function.

  • 1 reply
  • January 24, 2017
Hey does it work with my blade stealth?

Inelastic
Just tried the latest version, 3.01. Great work! One thing I noticed is that the drop box for the audio device is only the size of 1 of the text entries. Also, the led visualizer doesn't appear to be even-strip friendly. What I mean is that if you have 15 leds, then you can split it up into 7 on the left and 7 on the right with a center led. The program works great for this since the middle one lights up first and then it spreads out evenly between the 7 on the left and 7 on the right. However, if you have 16 leds then the visualizer starts off on led 8 and spread out that way (as opposed to starting off on 7 and 8). If you turn the amplitude up to over 9000, then all the leds are light up on the right but the last led on the left isn't lit up. I wound up creating another serial_buffer in the Arduino code to compensate. It creates a new array identical to the original array, then overwrites the left side rgb values with the right side. I'll post it below in case anyone else who is anal like me wants to use it. Place it inside the "if" statement at the top with the comment "Test if valid write packet" [CODE] for (int i = 0; i < PACKET_SZ; i++) { serial_buffer_even = serial_buffer; } for (int i = 0; i < LEDS / 2; i++) { int idx = start + 1 + (3 * i); int idx2 = start + 1 + (LEDS - i - 1) * 3; serial_buffer_even[idx + 0] = serial_buffer[idx2 + 0]; serial_buffer_even[idx + 1] = serial_buffer[idx2 + 1]; serial_buffer_even[idx + 2] = serial_buffer[idx2 + 2]; }[/CODE] You'll have to define the new serial buffer just like the other one in the beginning of the code and then use this buffer in the setPixelColor() function.
I need to look into adjusting the scaling for LED strips. The Firefly has 15 LEDs and scales pretty much perfectly so I need to copy what I did there. I installed a 15 LED strip in my case and it's not centered on one point like it should be. For even numbered LED strips it should treat two LEDs as center, same as on the Razer Core for example, which has 8 LEDs.

Inelastic
  • Insider Mini
  • 9 replies
  • January 25, 2017
CalcProgrammer1
I need to look into adjusting the scaling for LED strips. The Firefly has 15 LEDs and scales pretty much perfectly so I need to copy what I did there. I installed a 15 LED strip in my case and it's not centered on one point like it should be. For even numbered LED strips it should treat two LEDs as center, same as on the Razer Core for example, which has 8 LEDs.
I haven't actually tried it for an odd number of leds on a strip. I have 32 and it started on led 17 only, 16 didn't light up initially with 17. Led 1 never lit up at all (1 being the first on the strip). Choosing the green/yellow/red scheme, there were 6 green on the higher numbers (17-32) and only 5 green on the lower values (1-16). The yellow and red had the same amount on each side (5 of each). That's why I wrote a new array to mimic the higher values to the lower values.

  • 0 replies
  • January 25, 2017
so im using audio visualizer 3.01 but its not working help me please

Zaczzy
so im using audio visualizer 3.01 but its not working help me please
"Not working" can mean just about anything without any additional information, but the most likely issue is that Synapse needs reinstalled. If you see the visualizer application window and the preview is reacting to music but your Chroma devices aren't, then there is something wrong with your SDK install and you should uninstall and reinstall Synapse.

  • 0 replies
  • January 28, 2017
Hello. I just got a new Kaby Lake Blade Stealth and have been obsessed with trying to get the Audio Visualizer to work LoL. I've tried using KeyboardVisualizer 3.01 and 2.02 but the keyboard just turned black when I turned them on, no react to sounds whatsoever ( I had Synapse off, too). Is there an upcoming ver. for KeyboardVisualiser that will help or Am I just doing sth wrong? (I did have C++ 2015 Distributal x64 and x86 too) Thanks a lot guys

minoratic
Hello. I just got a new Kaby Lake Blade Stealth and have been obsessed with trying to get the Audio Visualizer to work LoL. I've tried using KeyboardVisualizer 3.01 and 2.02 but the keyboard just turned black when I turned them on, no react to sounds whatsoever ( I had Synapse off, too). Is there an upcoming ver. for KeyboardVisualiser that will help or Am I just doing sth wrong? (I did have C++ 2015 Distributal x64 and x86 too) Thanks a lot guys
Kaby Lake Stealth is broken in the SDK. I have a workaround in 3.02 that you have to manually enable in the settings file (to use the generic CreateKeyboardEffect rather than creating effects for each individual keyboard) but I haven't released 3.02 yet. I'll probably release it sometime this weekend. The issue is that the BLADE_STEALTH identifier in the SDK only works for the Skylake RBS (which is the one I have) and there is no identifier for the new Kaby Lake one. I've brought this issue up with Razer before, so it's on them to release an updated SDK.

  • 0 replies
  • January 28, 2017
CalcProgrammer1
Kaby Lake Stealth is broken in the SDK. I have a workaround in 3.02 that you have to manually enable in the settings file (to use the generic CreateKeyboardEffect rather than creating effects for each individual keyboard) but I haven't released 3.02 yet. I'll probably release it sometime this weekend. The issue is that the BLADE_STEALTH identifier in the SDK only works for the Skylake RBS (which is the one I have) and there is no identifier for the new Kaby Lake one. I've brought this issue up with Razer before, so it's on them to release an updated SDK.
Thanks a bunch, I really appreciated it and looking foward to updates

Meh7991
  • 13 replies
  • January 29, 2017
So, I made another video showing off the awesome app :wink_:
Media not available

  • 0 replies
  • January 29, 2017
"api-ms-win-crt-string-|1-1-0.dll is missing" What to do?

  • 0 replies
  • January 30, 2017
Razer|Rfx
Let your Razer Chroma-enabled devices rock to your beats with the beta Audio Visualizer, developed on the latest Razer Chroma SDK 4.8. Fire off the colors not just on your Razer BlackWidow Chroma, but also on the newly supported Razer Mamba TE & Razer Firefly! *EDIT* 19th January 2016 Hey everyone! I can't believe it has already almost been 4 months since this post came up and Chroma has come a long way since then! The Audio Visualizer is no longer an early build and the setup process is very simple, I've updated the steps below accordingly. We’ll let the video du-du-du-du-do the showing: https://www.youtube.com/watch?v=UzX_puEu9u0 We really appreciate all the work our community developers have put in to push the potential of the Razer Chroma technology and our friend @CalcProgrammer1 has really done a solid job on the Audio Visualizer. This new Audio Visualizer gives you the freedom to customize the color scheme and tweak its amplitude so you are only limited by your own creativity. Did we mention it’ll not just react to your music, but also to game audio? Here’s how to get the fun started:
  • Ensure that you have connected you Chroma device and updated Synapse to the latest version
  • Once updated, make sure that under your Chroma device > Chroma Apps tab, you have "Chroma Apps" turned on
  • Head over to the Chroma Workshop and download the Audio Visualizer
  • Install the vc_redist.x86.exe file that comes together in the zip
  • Launch the Audio Visualizer and get rockin'
Have a go at it and show us what you are doing with your Chroma hardware. Useful links: FAQs: To those facing the "mfc140.dll is missing" issue Download the Visual Studio Redistributable version "vc_redist.x86.exe" As this is a very early build, it clashes with Advanced Configurator occasionally. Change your effects to the default ones e.g. Wave, Spectrum Cycling. You can then launch the application and your keyboard/mousemat/mice will show a blank slate until a sound is played. What products does it work with? *EDIT* It works with...
  • BlackWidow Chroma / TE
  • DeathStalker Chroma
  • Firefly
  • Diamondback
  • Naga Chroma/Naga Epic
  • Mamba TE/Mamba wireless
  • Orochi
  • DeathAdder Chroma
  • Tartarus Chroma
  • Orbweaver Chroma
  • Kraken 7.1 Chroma
The visualizer bars are really low, anyway to fix that? You can bump the bar's height up by increasing the amplitude or your volume (not too much please). How do I get the colours like the ones in the video? Adjust "Foreground Mode" to the colour scheme that you like. In the video, I used "Rainbow Inverse". You can also add a "Background Mode" should you like. Does it react to any sounds besides music? It takes your Windows sound input, hence any sound - including your games or movies! Do I have to turn off Synapse? Closing Synapse before launching the app will be the safest. Keyboard goes black but it does not react to any audio As the program is reliant on some limited functions by Windows, be sure that your volume is cranked up or adjust the "Amplitude" to a higher value (Try in the 500s or 1000s) I can't get it to work due to misc reasons that we have yet to identify I apologize for this, this was meant to be a beta build and I shared it earlier as I knew the video will get you guys psyched for the app! We are using your feedbacks to build a better experience. While it may be tedious right now, we WILL be reducing the steps and processes in due time with Synapse and etc. That is on top of more product support. Hang in there!
Mine is not working. :( "api-ms-win-crt-string-|1-1-0.dll is missing from your comupter." Help please :(

Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings