Package com.ooyala.pulse
Class MediaFile
- java.lang.Object
-
- com.ooyala.pulse.MediaFile
-
public class MediaFile extends java.lang.Object
Represents a resource file used to display a linear creative; typically a video file.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MediaFile.DeliveryMethod
Indicates the delivery method of a given media file.
-
Constructor Summary
Constructors Constructor Description MediaFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAPIFramework()
The API framework used by this media file.int
getBitRate()
This media file's bitrate.java.lang.String
getCodec()
The codec format of media file.MediaFile.DeliveryMethod
getDeliveryMethod()
The delivery method of this media file.int
getHeight()
This media file's height.java.lang.String
getMimeType()
The MIME-type of this media file.java.net.URI
getURI()
The URI where this media file can be found.int
getWidth()
This media file's width.
-
-
-
Method Detail
-
getDeliveryMethod
public MediaFile.DeliveryMethod getDeliveryMethod()
The delivery method of this media file.- Returns:
- The delivery method.
-
getWidth
public int getWidth()
This media file's width.- Returns:
- The width.
-
getHeight
public int getHeight()
This media file's height.- Returns:
- The height.
-
getBitRate
public int getBitRate()
This media file's bitrate.- Returns:
- The bitrate.
-
getCodec
public java.lang.String getCodec()
The codec format of media file.- Returns:
- The codec.
-
getMimeType
public java.lang.String getMimeType()
The MIME-type of this media file.- Returns:
- The MIME-type.
-
getURI
public java.net.URI getURI()
The URI where this media file can be found.- Returns:
- The URI.
-
getAPIFramework
public java.lang.String getAPIFramework()
The API framework used by this media file.- Returns:
- The API framework used.
-
-