Class VideoCreationProperties


  • public final class VideoCreationProperties
    extends Object
    Optional video properties to be used in case a new video resource needs to be created on the service. These will not take effect if the video already exists.
    • Constructor Detail

      • VideoCreationProperties

        public VideoCreationProperties()
    • Method Detail

      • getTitle

        public String getTitle()
        Get the title property: Optional video title provided by the user. Value can be up to 256 characters long.
        Returns:
        the title value.
      • setTitle

        public VideoCreationProperties setTitle​(String title)
        Set the title property: Optional video title provided by the user. Value can be up to 256 characters long.
        Parameters:
        title - the title value to set.
        Returns:
        the VideoCreationProperties object itself.
      • getDescription

        public String getDescription()
        Get the description property: Optional video description provided by the user. Value can be up to 2048 characters long.
        Returns:
        the description value.
      • setDescription

        public VideoCreationProperties setDescription​(String description)
        Set the description property: Optional video description provided by the user. Value can be up to 2048 characters long.
        Parameters:
        description - the description value to set.
        Returns:
        the VideoCreationProperties object itself.
      • getSegmentLength

        public String getSegmentLength()
        Get the segmentLength property: Video segment length indicates the length of individual video files (segments) which are persisted to storage. Smaller segments provide lower archive playback latency but generate larger volume of storage transactions. Larger segments reduce the amount of storage transactions while increasing the archive playback latency. Value must be specified in ISO8601 duration format (i.e. "PT30S" equals 30 seconds) and can vary between 30 seconds to 5 minutes, in 30 seconds increments. Changing this value after the video is initially created can lead to errors when uploading media to the archive. Default value is 30 seconds.
        Returns:
        the segmentLength value.
      • setSegmentLength

        public VideoCreationProperties setSegmentLength​(String segmentLength)
        Set the segmentLength property: Video segment length indicates the length of individual video files (segments) which are persisted to storage. Smaller segments provide lower archive playback latency but generate larger volume of storage transactions. Larger segments reduce the amount of storage transactions while increasing the archive playback latency. Value must be specified in ISO8601 duration format (i.e. "PT30S" equals 30 seconds) and can vary between 30 seconds to 5 minutes, in 30 seconds increments. Changing this value after the video is initially created can lead to errors when uploading media to the archive. Default value is 30 seconds.
        Parameters:
        segmentLength - the segmentLength value to set.
        Returns:
        the VideoCreationProperties object itself.
      • getRetentionPeriod

        public String getRetentionPeriod()
        Get the retentionPeriod property: Video retention period indicates how long the video is kept in storage, and must be a multiple of 1 day. For example, if this is set to 30 days, then content older than 30 days will be deleted.
        Returns:
        the retentionPeriod value.
      • setRetentionPeriod

        public VideoCreationProperties setRetentionPeriod​(String retentionPeriod)
        Set the retentionPeriod property: Video retention period indicates how long the video is kept in storage, and must be a multiple of 1 day. For example, if this is set to 30 days, then content older than 30 days will be deleted.
        Parameters:
        retentionPeriod - the retentionPeriod value to set.
        Returns:
        the VideoCreationProperties object itself.