Uses of Class
org.openmobilealliance.schema.sti.v1_0.TranscodingRequest

Packages that use TranscodingRequest
org.alembik Provides the classes necessary for connecting to Alembik service and processing transcoding requests. 
org.alembik.util Provides the utility classes handling transcoding request and response objects. 
org.openmobilealliance.schema.sti.v1_0 Provides all the DTO classes defined by OMA-STI v1_0. 
 

Uses of TranscodingRequest in org.alembik
 

Methods in org.alembik that return TranscodingRequest
static TranscodingRequest TranscodingManager.prepareBestMatchingRequest(java.lang.String sourceUrl, java.lang.String userAgent, java.lang.Class<? extends Media> mediaType, Quality quality, boolean isStreaming)
          Creates a single-job transcoding request instance for the given source location, User-Agent string, specified transcoded content's type and desired quality of a predefined profile selected by "best matching" strategy algorithm.
static TranscodingRequest TranscodingManager.prepareRequest(java.lang.String sourceUrl, java.lang.String profileID, java.lang.String contentType, java.lang.Long maxSize)
          Creates a single-job trancoding request instance with the given transcoding parameters set.
static TranscodingRequest TranscodingManager.prepareUARequest(java.lang.String sourceUrl, java.lang.String userAgent, java.lang.Class<? extends Media> mediaType, java.lang.Integer width, java.lang.Integer height)
          Creates a single-job transcoding request instance for the given source location, User-Agent string, specified transcoded content's type and (optionally) dimensions.
static TranscodingRequest TranscodingManager.prepareUARequest(java.lang.String sourceUrl, java.lang.String userAgent, java.lang.Class<? extends Media> mediaType, java.lang.Long maxSize)
          Creates a single-job transcoding request instance for the given source location, User-Agent string, specified transcoded content's type and (optionally) size limit.
static TranscodingRequest TranscodingManager.prepareUARequestStreamingVideo(java.lang.String sourceUrl, java.lang.String userAgent, java.lang.Long maxSize)
          Creates a single-job streaming video transcoding request for the given source location, User-Agent string and (optionally) size limit.
static TranscodingRequest TranscodingManager.prepareUARequestWithScaling(java.lang.String sourceUrl, java.lang.String userAgent, java.lang.Class<? extends Media> mediaType, java.lang.Integer relativeWidth, java.lang.Integer relativeHeight)
          Creates a single-job transcoding request instance for the given source location, User-Agent string, specified transcoded content's type and (optionally) dimensions in the form of percentage of a device screen size.
 

Methods in org.alembik with parameters of type TranscodingRequest
 JobResult TranscodingManager.getTranscodingInfo(TranscodingRequest request, java.lang.String jobID)
          Fetches a detailed processing results of the given job.
 JobResult TranscodingService.getTranscodingInfo(TranscodingRequest request, java.lang.String jobID)
          Returns the result information of a transcoding job with the specified jobId (within the request).
 boolean TranscodingManager.isSourceFileComplete(TranscodingRequest request, java.lang.String jobID)
          Checks whether a loaded source file has not been truncated by a DownloadLimit transformation.
 boolean TranscodingManager.isSourceFileReady(TranscodingRequest request, java.lang.String jobID)
          Checks whether a source file of the given job has been already loaded into the Alembik storage.
 boolean TranscodingService.isSourceFileReady(TranscodingRequest request, java.lang.String jobID)
          Checks whether the source file of a transcoding job with the specified jobId (within the request) has been loaded into the storage.
 boolean TranscodingManager.isTranscodedFileReady(TranscodingRequest request, java.lang.String jobID)
          Checks whether a source file of the given job has been already transcoded.
 boolean TranscodingService.isTranscodedFileReady(TranscodingRequest request, java.lang.String jobID)
          Checks whether the result file of a transcoding job with the specified jobId (within the request) has been transcoded.
 void TranscodingManager.processAsync(TranscodingRequest request)
          Sends the given transcoding request to be processed asynchronously.
 void TranscodingService.processAsync(TranscodingRequest request)
          Processes the given transcoding request asynchronously.
 TranscodingResponse TranscodingManager.processSync(TranscodingRequest request)
          Sends the given transcoding request to be processed synchronously.
 TranscodingResponse TranscodingService.processSync(TranscodingRequest request)
          Processes the given transcoding request synchronously.
 

Uses of TranscodingRequest in org.alembik.util
 

Methods in org.alembik.util that return TranscodingRequest
static TranscodingRequest TranscodingUtils.createRequest(java.lang.String originatorID, java.lang.String sourceUrl, java.lang.String profileID)
          Creates a single-job transcoding request instance with basic transcoding parameters.
static TranscodingRequest TranscodingUtils.createRequest(java.lang.String originatorID, java.lang.String sourceUrl, java.lang.String profileID, java.lang.String contentType)
          Creates a single-job transcoding request instance with basic transcoding parameters.
 

Methods in org.alembik.util with parameters of type TranscodingRequest
static Properties OMAUtils.getExtensionProperties(TranscodingRequest request)
          Returns "extension data" properties holder of the given transcoding request.
 

Uses of TranscodingRequest in org.openmobilealliance.schema.sti.v1_0
 

Methods in org.openmobilealliance.schema.sti.v1_0 that return TranscodingRequest
 TranscodingRequest ObjectFactory.createTranscodingRequest()
          Create an instance of TranscodingRequest
 

Methods in org.openmobilealliance.schema.sti.v1_0 that return types with arguments of type TranscodingRequest
 javax.xml.bind.JAXBElement<TranscodingRequest> ObjectFactory.createTranscodingRequest(TranscodingRequest value)
          Create an instance of JAXBElement<TranscodingRequest>}
 

Methods in org.openmobilealliance.schema.sti.v1_0 with parameters of type TranscodingRequest
 javax.xml.bind.JAXBElement<TranscodingRequest> ObjectFactory.createTranscodingRequest(TranscodingRequest value)
          Create an instance of JAXBElement<TranscodingRequest>}