Package org.tools.io

Examples of org.tools.io.URLResource


        StreamPlayer player = StreamPlayer.create(line, "Music");
        JukeBox jukebox = JukeBox.create(player);
        jukebox.setAutoRewind(true);

        List<Resource> list = new LinkedList<>();
        list.add(new URLResource("http://www.twelvepm.de/vorbis/Agogo.ogg"));
        jukebox.setSongList(list);

        jukebox.play();

        Thread.sleep(50000);
View Full Code Here

TOP

Related Classes of org.tools.io.URLResource

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.