Examples of DoubleLumifyProperty


Examples of io.lumify.core.model.properties.types.DoubleLumifyProperty

        }
    }

    private String[] prepareFFMPEGOptions(GraphPropertyWorkData data, File videoPosterFrameFile) {
        ArrayList<String> ffmpegOptionsList = new ArrayList<String>();
        DoubleLumifyProperty durationProperty = new DoubleLumifyProperty(config.durationIri);
        Double duration = durationProperty.getPropertyValue(data.getElement(), 0);

        if (duration != null) {
            ffmpegOptionsList.add("-itsoffset");
            ffmpegOptionsList.add("-" + (duration / 3.0));
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.