All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ocap.hn.content.StreamableContentResource Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.ocap.hn.content;

/**
 * Abstract class representing content that can be streamed, e.g., MPEG file.
 */
public interface StreamableContentResource extends ContentResource
{

    /**
     * Gets the duration of this content.
     * 
     * @return the duration of the content.
     */
    public javax.media.Time getDuration();

    /**
     * Gets the Bitrate this content is encoded with or -1 if not known.
     * 
     * @return the bit rate of the content in bytes per second or -1 if
     *      not known.
     */
    public long getBitrate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy