github.com/muxinc/mux-go@v1.1.1/docs/Asset.md (about)

     1  # Asset
     2  
     3  ## Properties
     4  Name | Type | Description | Notes
     5  ------------ | ------------- | ------------- | -------------
     6  **Id** | **string** | Unique identifier for the Asset. Max 255 characters. | [optional] 
     7  **CreatedAt** | **string** | Time the Asset was created, defined as a Unix timestamp (seconds since epoch). | [optional] 
     8  **Status** | **string** | The status of the asset. | [optional] 
     9  **Duration** | **float64** | The duration of the asset in seconds (max duration for a single asset is 12 hours). | [optional] 
    10  **MaxStoredResolution** | **string** | The maximum resolution that has been stored for the asset. The asset may be delivered at lower resolutions depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. | [optional] 
    11  **MaxStoredFrameRate** | **float64** | The maximum frame rate that has been stored for the asset. The asset may be delivered at lower frame rates depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. This field may return -1 if the frame rate of the input cannot be reliably determined. | [optional] 
    12  **AspectRatio** | **string** | The aspect ratio of the asset in the form of `width:height`, for example `16:9`. | [optional] 
    13  **PlaybackIds** | [**[]PlaybackId**](PlaybackID.md) | An array of Playback ID objects. Use these to create HLS playback URLs. See [Play your videos](https://docs.mux.com/guides/video/play-your-videos) for more details. | [optional] 
    14  **Tracks** | [**[]Track**](Track.md) | The individual media tracks that make up an asset. | [optional] 
    15  **Errors** | [**AssetErrors**](Asset_errors.md) |  | [optional] 
    16  **PerTitleEncode** | **bool** |  | [optional] 
    17  **UploadId** | **string** | Unique identifier for the Direct Upload. This is an optional parameter added when the asset is created from a direct upload. | [optional] 
    18  **IsLive** | **bool** | Whether the asset is created from a live stream and the live stream is currently `active` and not in `idle` state. | [optional] 
    19  **Passthrough** | **string** | Arbitrary metadata set for the asset. Max 255 characters. | [optional] 
    20  **LiveStreamId** | **string** | Unique identifier for the live stream. This is an optional parameter added when the asset is created from a live stream. | [optional] 
    21  **Master** | [**AssetMaster**](Asset_master.md) |  | [optional] 
    22  **MasterAccess** | **string** |  | [optional] [default to MASTER_ACCESS_NONE]
    23  **Mp4Support** | **string** |  | [optional] [default to MP4_SUPPORT_NONE]
    24  **SourceAssetId** | **string** | Asset Identifier of the video used as the source for creating the clip. | [optional] 
    25  **NormalizeAudio** | **bool** | Normalize the audio track loudness level. This parameter is only applicable to on-demand (not live) assets. | [optional] [default to false]
    26  **StaticRenditions** | [**AssetStaticRenditions**](Asset_static_renditions.md) |  | [optional] 
    27  **RecordingTimes** | [**[]AssetRecordingTimes**](Asset_recording_times.md) | An array of individual live stream recording sessions. A recording session is created on each encoder connection during the live stream | [optional] 
    28  **NonStandardInputReasons** | [**AssetNonStandardInputReasons**](Asset_non_standard_input_reasons.md) |  | [optional] 
    29  **Test** | **bool** | True means this live stream is a test asset. A test asset can help evaluate the Mux Video APIs without incurring any cost. There is no limit on number of test assets created. Test assets are watermarked with the Mux logo, limited to 10 seconds, and deleted after 24 hrs. | [optional] 
    30  
    31  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    32  
    33