Can Java Sound be used to control the system volume?

前端 未结 6 1274
旧时难觅i
旧时难觅i 2020-11-29 10:22

Java Sound offers FloatControl instances for various sound line functionality, and both a MASTER_GAIN & VOLUME control type.

Can these controls be

6条回答
  •  粉色の甜心
    2020-11-29 10:59

    add following line just after Line is initialized. this is required to open the line.

    boolean opened = line.isOpen() || line instanceof Clip;
    if(!opened){
        System.out.println("Line is not open, trying to open it...");
        line.open();
        opened = true;
    }
    

提交回复
热议问题