Package railo.runtime.video

Examples of railo.runtime.video.VideoInfo


   



  private Pair toMpeg(VideoInput vi) throws PageException, IOException {
    VideoInfo info = getInfo(vi);
    //Struct sct = _doActionInfo(vi);
   
   
    if("mpeg1video".equals(info.getVideoCodec()))
      return new Pair(vi.getResource(),toStruct(info));
   
    VideoOutput tmp = new VideoOutputImpl(pageContext.getConfig().getTempDirectory().getRealResource("tmp-"+new Random().nextInt()+".mpg"));
    try {
      doActionConvert(vi,tmp,null,null,NAMECONFLICT_ERROR);
View Full Code Here

TOP

Related Classes of railo.runtime.video.VideoInfo

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.