Package com.googlecode.eckoit.events

Examples of com.googlecode.eckoit.events.StreamReadyEvent


        try {
            mp3 = convertToMP3(recordingID, wav);
            if (config.isStream()) {
                File ts = convertToTs(recordingID, mp3);

                StreamReadyEvent sre = new StreamReadyEvent(mp3, "video/MP2T", sectionStartTime);
                sre.setAvailableToStream(ts);
                sre.setStreamDuration((int) (SplitAudioRecorder.getSplitTime() / 1000));
                sre.setSegmentCount(getSegmentCount(wav));
                EventBus.publish(sre);
            }
            ogg = convertToOGG(recordingID, wav);
        } catch (Exception ex) {
            Logger.getLogger(ContinousAudioConvereter.class.getName()).log(Level.SEVERE, null, ex);
View Full Code Here

TOP

Related Classes of com.googlecode.eckoit.events.StreamReadyEvent

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.