forked from muxinc/mux-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0.10 * Add test coverage
- Loading branch information
Showing
14 changed files
with
335 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# AssetNonStandardInputReasons | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**VideoCodec** | **string** | The video codec used on the input file | [optional] | ||
**AudioCodec** | **string** | The audio codec used on the input file | [optional] | ||
**VideoGopSize** | **string** | The video key frame Interval (also called as Group of Picture or GOP) of the input file | [optional] | ||
**VideoFrameRate** | **string** | The video frame rate of the input file | [optional] | ||
**VideoResolution** | **string** | The video resolution of the input file | [optional] | ||
**PixelAspectRatio** | **string** | The video pixel aspect ratio of the input file | [optional] | ||
**VideoEditList** | **string** | Video Edit List reason indicates that the input file's video track contains a complex Edit Decision List | [optional] | ||
**AudioEditList** | **string** | Audio Edit List reason indicates that the input file's audio track contains a complex Edit Decision List | [optional] | ||
**UnexpectedMediaFileParameters** | **string** | A catch-all reason when the input file in created with non-standard encoding parameters | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# AssetRecordingTimes | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**StartedAt** | [**time.Time**](time.Time.md) | The time at which the recording for the live stream started. The time value is Unix epoch time represented in ISO 8601 format | [optional] | ||
**Duration** | **float64** | The duration of the live stream recorded. The time value is in seconds | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# DisableLiveStreamResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Data** | [**map[string]interface{}**](.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# EnableLiveStreamResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Data** | [**map[string]interface{}**](.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Mux Go - Copyright 2019 Mux Inc. | ||
// NOTE: This file is auto generated. Do not edit this file manually. | ||
|
||
package muxgo | ||
|
||
type AssetNonStandardInputReasons struct { | ||
// The video codec used on the input file | ||
VideoCodec string `json:"video_codec,omitempty"` | ||
// The audio codec used on the input file | ||
AudioCodec string `json:"audio_codec,omitempty"` | ||
// The video key frame Interval (also called as Group of Picture or GOP) of the input file | ||
VideoGopSize string `json:"video_gop_size,omitempty"` | ||
// The video frame rate of the input file | ||
VideoFrameRate string `json:"video_frame_rate,omitempty"` | ||
// The video resolution of the input file | ||
VideoResolution string `json:"video_resolution,omitempty"` | ||
// The video pixel aspect ratio of the input file | ||
PixelAspectRatio string `json:"pixel_aspect_ratio,omitempty"` | ||
// Video Edit List reason indicates that the input file's video track contains a complex Edit Decision List | ||
VideoEditList string `json:"video_edit_list,omitempty"` | ||
// Audio Edit List reason indicates that the input file's audio track contains a complex Edit Decision List | ||
AudioEditList string `json:"audio_edit_list,omitempty"` | ||
// A catch-all reason when the input file in created with non-standard encoding parameters | ||
UnexpectedMediaFileParameters string `json:"unexpected_media_file_parameters,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Mux Go - Copyright 2019 Mux Inc. | ||
// NOTE: This file is auto generated. Do not edit this file manually. | ||
|
||
package muxgo | ||
|
||
import ( | ||
"time" | ||
) | ||
|
||
type AssetRecordingTimes struct { | ||
// The time at which the recording for the live stream started. The time value is Unix epoch time represented in ISO 8601 format | ||
StartedAt time.Time `json:"started_at,omitempty"` | ||
// The duration of the live stream recorded. The time value is in seconds | ||
Duration float64 `json:"duration,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Mux Go - Copyright 2019 Mux Inc. | ||
// NOTE: This file is auto generated. Do not edit this file manually. | ||
|
||
package muxgo | ||
|
||
type DisableLiveStreamResponse struct { | ||
Data map[string]interface{} `json:"data,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Mux Go - Copyright 2019 Mux Inc. | ||
// NOTE: This file is auto generated. Do not edit this file manually. | ||
|
||
package muxgo | ||
|
||
type EnableLiveStreamResponse struct { | ||
Data map[string]interface{} `json:"data,omitempty"` | ||
} |