Package uk.co.caprica.vlcj.discovery

Examples of uk.co.caprica.vlcj.discovery.NativeDiscovery


public class NativeDiscoveryTest {

    public static void main(String[] args) {
        System.setProperty("vlcj.log", "DEBUG");
        // Create a discovery component that uses the default provided discovery strategies
        boolean found = new NativeDiscovery().discover();
        Logger.debug("found={}", found);
        if(found) {
            Logger.debug("Version: {}" + LibVlcFactory.factory().create().libvlc_get_version());
        }
    }
View Full Code Here


    private final JFrame frame;

    private final EmbeddedMediaPlayerComponent mediaPlayerComponent;

    public static void main(String[] args) {
        new NativeDiscovery().discover();

        final String mrl = args[0];

        SwingUtilities.invokeLater(new Runnable() {
            @Override
View Full Code Here

TOP

Related Classes of uk.co.caprica.vlcj.discovery.NativeDiscovery

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.