Examples of MetaService


Examples of org.red5.io.flv.meta.MetaService

  /** {@inheritDoc} */
  public void setMetaData(IMetaData meta) throws IOException {
    File tmpFile = File.createTempFile("setMeta_", ".flv");
    if (metaService == null) {
      metaService = new MetaService(file);
    }
    metaService.setInStream(new FileInputStream(file));
    metaService.setOutStream(new FileOutputStream(tmpFile));
    //if the file is not checked the write may produce an NPE
    if (((MetaService) metaService).getFile() == null) {
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.