else if (input.equals("resume"))
sound.resume();
else if (input.equals("close"))
sound.close();
else if (input.startsWith("loop"))
sound.loop(Integer.parseInt(args[1]));
else if (input.startsWith("volume"))
sound.setVolume(Float.parseFloat(args[1]));
else if (input.equals("getpath"))
System.out.println(sound.getPath());
else if (input.equals("isstopped"))