I tried to run a simple sound example:
import processing.sound.*;
WhiteNoise noise;
void setup() {
size(640, 360);
background(255);
// Create the noise generator
noise = new WhiteNoise(this);
noise.play();}
void draw() {}
But console says:
_# A fatal error has been detected by the Java Runtime Environment:_
_#_
_# Internal Error (0x20474343), pid=8820, tid=0x0000000000001994_
_#_
_# JRE version: Java(TM) SE Runtime Environment (8.0_102-b14) (build 1.8.0_102-b14)_
_# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.102-b14 mixed mode windows-amd64 compressed oops)_
_# Problematic frame:_
_# C [KERNELBASE.dll+0x17788]_
_#_
_# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows_
_#_
_# An error report file with more information is saved as:_
_# R:\processing-3.2.1\hs_err_pid8820.log_
_#_
_# If you would like to submit a bug report, please visit:_
_# http://bugreport.java.com/bugreport/crash.jsp_
_# The crash happened outside the Java Virtual Machine in native code._
_# See problematic frame for where to report the bug._
_#_
_Could not run the sketch (Target VM failed to initialize)._
_For more information, read revisions.txt and Help ? Troubleshooting._
Hay to fix it ?
I use Processing 3.2.1 on WIN10 64bit