Examples of ITag


Examples of org.red5.io.ITag

        startTimeStamp = streampacket.getTimestamp();
      }

      timeStamp -= startTimeStamp;

      ITag tag = new Tag();
      tag.setDataType(streampacket.getDataType());

      // log.debug("data.limit() :: "+data.limit());
      tag.setBodySize(data.limit());
      tag.setTimestamp(timeStamp);
      tag.setBody(data);

//      if (this.isInterview) {
//        if (timeStamp <= 500) {
//          // We will cut the first 0.5 seconds
//          // The First seconds seem to break the Recording Video often
View Full Code Here

Examples of org.red5.io.ITag

          flvRecordingMetaDeltaDao
              .addFlvRecordingMetaDelta(flvRecordingMetaDelta);

        }

        ITag tag = new Tag();
        tag.setDataType(streampacket.getDataType());

        // log.debug("data.limit() :: "+data.limit());
        tag.setBodySize(data.limit());
        tag.setTimestamp(timeStamp);
        tag.setBody(data);

        writer.writeTag(tag);

      }
View Full Code Here

Examples of org.rythmengine.template.ITag

        //_classes.clear();

        // clear all template tags which is managed by TemplateClassManager
        List<String> templateTags = new ArrayList<String>();
        for (String name : _templates.keySet()) {
            ITag tag = _templates.get(name);
            if (!(tag instanceof JavaTagBase)) {
                templateTags.add(name);
            }
        }
        for (String name : templateTags) {
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.