Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public AbsoluteClipTime()
/// Initializes a new instance of the AbsoluteClipTime class.
/// </summary>
/// <param name="time">The time position on the timeline of the input
/// media. It is usually speicified as an ISO8601 period. e.g PT30S for
/// media. It is usually specified as an ISO8601 period. e.g PT30S for
/// 30 seconds.</param>
public AbsoluteClipTime(System.TimeSpan time)
{
Expand All @@ -48,7 +48,7 @@ public AbsoluteClipTime(System.TimeSpan time)

/// <summary>
/// Gets or sets the time position on the timeline of the input media.
/// It is usually speicified as an ISO8601 period. e.g PT30S for 30
/// It is usually specified as an ISO8601 period. e.g PT30S for 30
/// seconds.
/// </summary>
[JsonProperty(PropertyName = "time")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public FilterTrackPropertyCondition()
/// <param name="property">The track property type. Possible values
/// include: 'Unknown', 'Type', 'Name', 'Language', 'FourCC',
/// 'Bitrate'</param>
/// <param name="value">The track proprty value.</param>
/// <param name="value">The track property value.</param>
/// <param name="operation">The track property condition operation.
/// Possible values include: 'Equal', 'NotEqual'</param>
public FilterTrackPropertyCondition(FilterTrackPropertyType property, string value, FilterTrackPropertyCompareOperation operation)
Expand All @@ -59,7 +59,7 @@ public FilterTrackPropertyCondition(FilterTrackPropertyType property, string val
public FilterTrackPropertyType Property { get; set; }

/// <summary>
/// Gets or sets the track proprty value.
/// Gets or sets the track property value.
/// </summary>
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public PresentationTimeRange()
/// <param name="liveBackoffDuration">The relative to end right
/// edge.</param>
/// <param name="timescale">The time scale of time stamps.</param>
/// <param name="forceEndTimestamp">The indicator of forcing exsiting
/// <param name="forceEndTimestamp">The indicator of forcing existing
/// of end time stamp.</param>
public PresentationTimeRange(long? startTimestamp = default(long?), long? endTimestamp = default(long?), long? presentationWindowDuration = default(long?), long? liveBackoffDuration = default(long?), long? timescale = default(long?), bool? forceEndTimestamp = default(bool?))
{
Expand Down Expand Up @@ -87,7 +87,7 @@ public PresentationTimeRange()
public long? Timescale { get; set; }

/// <summary>
/// Gets or sets the indicator of forcing exsiting of end time stamp.
/// Gets or sets the indicator of forcing existing of end time stamp.
/// </summary>
[JsonProperty(PropertyName = "forceEndTimestamp")]
public bool? ForceEndTimestamp { get; set; }
Expand Down