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

com.azure.resourcemanager.mediaservices.models.H265Video Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.

There is a newer version: 2.4.0-beta.2
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.mediaservices.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.time.Duration;
import java.util.List;

/** Describes all the properties for encoding a video with the H.265 codec. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "@odata.type")
@JsonTypeName("#Microsoft.Media.H265Video")
@Fluent
public final class H265Video extends Video {
    /*
     * Specifies whether or not the encoder should insert key frames at scene
     * changes. If not specified, the default is false. This flag should be set
     * to true only when the encoder is being configured to produce a single
     * output video.
     */
    @JsonProperty(value = "sceneChangeDetection")
    private Boolean sceneChangeDetection;

    /*
     * Tells the encoder how to choose its encoding settings.  Quality will
     * provide for a higher compression ratio but at a higher cost and longer
     * compute time.  Speed will produce a relatively larger file but is faster
     * and more economical. The default value is Balanced.
     */
    @JsonProperty(value = "complexity")
    private H265Complexity complexity;

    /*
     * The collection of output H.265 layers to be produced by the encoder.
     */
    @JsonProperty(value = "layers")
    private List layers;

    /**
     * Get the sceneChangeDetection property: Specifies whether or not the encoder should insert key frames at scene
     * changes. If not specified, the default is false. This flag should be set to true only when the encoder is being
     * configured to produce a single output video.
     *
     * @return the sceneChangeDetection value.
     */
    public Boolean sceneChangeDetection() {
        return this.sceneChangeDetection;
    }

    /**
     * Set the sceneChangeDetection property: Specifies whether or not the encoder should insert key frames at scene
     * changes. If not specified, the default is false. This flag should be set to true only when the encoder is being
     * configured to produce a single output video.
     *
     * @param sceneChangeDetection the sceneChangeDetection value to set.
     * @return the H265Video object itself.
     */
    public H265Video withSceneChangeDetection(Boolean sceneChangeDetection) {
        this.sceneChangeDetection = sceneChangeDetection;
        return this;
    }

    /**
     * Get the complexity property: Tells the encoder how to choose its encoding settings. Quality will provide for a
     * higher compression ratio but at a higher cost and longer compute time. Speed will produce a relatively larger
     * file but is faster and more economical. The default value is Balanced.
     *
     * @return the complexity value.
     */
    public H265Complexity complexity() {
        return this.complexity;
    }

    /**
     * Set the complexity property: Tells the encoder how to choose its encoding settings. Quality will provide for a
     * higher compression ratio but at a higher cost and longer compute time. Speed will produce a relatively larger
     * file but is faster and more economical. The default value is Balanced.
     *
     * @param complexity the complexity value to set.
     * @return the H265Video object itself.
     */
    public H265Video withComplexity(H265Complexity complexity) {
        this.complexity = complexity;
        return this;
    }

    /**
     * Get the layers property: The collection of output H.265 layers to be produced by the encoder.
     *
     * @return the layers value.
     */
    public List layers() {
        return this.layers;
    }

    /**
     * Set the layers property: The collection of output H.265 layers to be produced by the encoder.
     *
     * @param layers the layers value to set.
     * @return the H265Video object itself.
     */
    public H265Video withLayers(List layers) {
        this.layers = layers;
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public H265Video withKeyFrameInterval(Duration keyFrameInterval) {
        super.withKeyFrameInterval(keyFrameInterval);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public H265Video withStretchMode(StretchMode stretchMode) {
        super.withStretchMode(stretchMode);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public H265Video withSyncMode(VideoSyncMode syncMode) {
        super.withSyncMode(syncMode);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public H265Video withLabel(String label) {
        super.withLabel(label);
        return this;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void validate() {
        super.validate();
        if (layers() != null) {
            layers().forEach(e -> e.validate());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy