Package uk.co.caprica.vlcj.player

Examples of uk.co.caprica.vlcj.player.AudioDevice


    private static void dump(int i, AudioOutput audioOutput) {
        List<AudioDevice> audioDevices = audioOutput.getDevices();
        System.out.printf(FORMAT_PATTERN, String.valueOf(i + 1), audioOutput.getName(), audioOutput.getDescription(), "(" + audioDevices.size() + ")", "");
        for(int j = 0; j < audioDevices.size(); j ++ ) {
            AudioDevice audioDevice = audioOutput.getDevices().get(j);
            System.out.printf(FORMAT_PATTERN, "", "", "", audioDevice.getDeviceId(), formatLongName(audioDevice.getLongName()));
        }
    }
View Full Code Here

TOP

Related Classes of uk.co.caprica.vlcj.player.AudioDevice

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.