Package net.chrislongo.hls

Examples of net.chrislongo.hls.PlaylistDownloader


    public void download() throws Exception {
        File outDir = new File("out");
        if(!outDir.exists())
            outDir.mkdir();

        PlaylistDownloader downloader = new PlaylistDownloader("file:./data/prog_index.m3u8");
        downloader.download("out/out.ts");
    }
View Full Code Here

TOP

Related Classes of net.chrislongo.hls.PlaylistDownloader

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.