Uses of Class
org.opencastproject.composer.api.EncoderException

Packages that use EncoderException
Package
Description
 
  • Uses of EncoderException in org.opencastproject.composer.api

    Modifier and Type
    Method
    Description
    org.opencastproject.job.api.Job
    ComposerService.composite(Dimension outputDimension, Optional<LaidOutElement<org.opencastproject.mediapackage.Track>> option, LaidOutElement<org.opencastproject.mediapackage.Track> lowerLaidOutElement, Optional<LaidOutElement<org.opencastproject.mediapackage.Attachment>> watermarkOption, String identifier, String outputBackground, String sourceAudioName)
    Compose two videos into one with an optional watermark.
    org.opencastproject.job.api.Job
    ComposerService.concat(String profileId, Dimension outputDimension, boolean sameCodec, org.opencastproject.mediapackage.Track... tracks)
    Concat multiple tracks to a single track.
    org.opencastproject.job.api.Job
    ComposerService.concat(String profileId, Dimension outputDimension, float outputFrameRate, boolean sameCodec, org.opencastproject.mediapackage.Track... tracks)
    Concat multiple tracks to a single track.
    org.opencastproject.job.api.Job
    ComposerService.convertImage(org.opencastproject.mediapackage.Attachment image, String... profileIds)
    Converts the given image to a different image format using the specified image profiles.
    List<org.opencastproject.mediapackage.Attachment>
    ComposerService.convertImageSync(org.opencastproject.mediapackage.Attachment image, String... profileIds)
    Synchronously converts the given image to different image formats using the specified encoding profiles.
    org.opencastproject.job.api.Job
    ComposerService.demux(org.opencastproject.mediapackage.Track sourceTrack, String profileId)
    Demux a multi-track source into 2 media as defined by the encoding profile, the results are flavored and tagged positionally. eg: One ffmpeg operation to produce presenter/work and presentation/work
    org.opencastproject.job.api.Job
    ComposerService.encode(org.opencastproject.mediapackage.Track sourceTrack, String profileId)
    Encode one track, using that track's audio and video streams.
    org.opencastproject.job.api.Job
    ComposerService.image(org.opencastproject.mediapackage.Track sourceTrack, String profileId, double... time)
    Extracts an image from the media package element identified by sourceVideoTrackId.
    org.opencastproject.job.api.Job
    ComposerService.image(org.opencastproject.mediapackage.Track sourceTrack, String profileId, Map<String,String> properties)
    Extracts an image from the media package element identified by sourceTrack.
    List<org.opencastproject.mediapackage.Attachment>
    ComposerService.imageSync(org.opencastproject.mediapackage.Track sourceTrack, String profileId, double... time)
    Synchronously extracts images from the source track.
    org.opencastproject.job.api.Job
    ComposerService.imageToVideo(org.opencastproject.mediapackage.Attachment sourceImageAttachment, String profileId, double duration)
    Transforms an image attachment to a video track
    org.opencastproject.job.api.Job
    ComposerService.multiEncode(org.opencastproject.mediapackage.Track track, List<String> profileIds)
    Encodes a track to set of media targets as defined by a list of encoding profiles
    org.opencastproject.job.api.Job
    ComposerService.mux(Map<String,org.opencastproject.mediapackage.Track> sourceTracks, String profileId)
    Mux multiple tracks into a new Track.
    org.opencastproject.job.api.Job
    ComposerService.mux(org.opencastproject.mediapackage.Track sourceVideoTrack, org.opencastproject.mediapackage.Track sourceAudioTrack, String profileId)
    Encode the video stream from one track and the audio stream from another, into a new Track.
    org.opencastproject.job.api.Job
    ComposerService.parallelEncode(org.opencastproject.mediapackage.Track sourceTrack, String profileId)
    Encode one track to multiple other tracks in one encoding operation, using that track's audio and video streams.
    org.opencastproject.job.api.Job
    ComposerService.processSmil(org.opencastproject.smil.entity.api.Smil smil, String trackParamGroupId, String mediaType, List<String> profileIds)
    Reads a smil definition and create one media track in multiple delivery formats.
    org.opencastproject.job.api.Job
    ComposerService.trim(org.opencastproject.mediapackage.Track sourceTrack, String profileId, long start, long duration)
    Trims the given track to the given start time and duration.