Show / Hide Table of Contents

Class SimpleEncodingLiveJobUrlOutput

SimpleEncodingLiveJobUrlOutput

Inheritance
System.Object
SimpleEncodingLiveJobOutput
SimpleEncodingLiveJobUrlOutput
Inherited Members
SimpleEncodingLiveJobOutput.MaxResolution
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class SimpleEncodingLiveJobUrlOutput : SimpleEncodingLiveJobOutput

Properties

Credentials

Credentials to be used for authentication and accessing the folder.

Declaration
public SimpleEncodingLiveJobCredentials Credentials { get; set; }
Property Value
Type Description
SimpleEncodingLiveJobCredentials

MakePublic

Indicates if the output should be publically available so that playback immediately works over the internet. Note that not every storage provider supports public output, in this case the flag will be ignored (e.g., Akamai NetStorage). It might forbidden by some storage configuration to make files public, for example an S3 buckets can be configured to disallow public access. In this case set it to false.

Declaration
public bool? MakePublic { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Url

Define a URL pointing to a folder which will be used to upload the encoded assets. The output folder structure used looks the following way: <br><br> http://host/my-folder <ul> <li> /video <ul> <li>/{width}x{height}_{bitrate}/ (multiple subfolders containing different output renditions)</li> </ul> </li> <li>/audio </li> <li>/index.m3u8 (HLS manifest file) </li> <li>/stream.mpd (DASH manifest file) </li> </ul> Currently the following protocols/storages systems are supported: S3, GCS, Azure Blob Storage, Akamai NetStorage. Note that most protocols will require credentials to access the asset. Check the description below which ones are applicable. See below how to construct the URLs for the individual protocals/storage systems. S3: * s3://&lt;my-bucket>/path/ Authentication can be done via accesskey/secretkey or role-based authentication. Generic S3 is currently NOT supported. GCS: * gcs://&lt;my-bucket>/path/ Authentication can be done via accesskey/secretkey or a service account Azure Blob Storage (ABS): * https://&lt;account>.blob.core.windows.net/&lt;container>/path/ It is required to provide the Azure key credentials for authentication. Akamai NetStorage: * https://&lt;host>-nsu.akamaihd.net/&lt;CP-code>/path/ It is required to provide username/password credentials for authentication. (required)

Declaration
public string Url { get; set; }
Property Value
Type Description
System.String
Back to top Generated by DocFX