Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 5f808ee

Browse files
committed
Update API QueryMediaInfoJobList: add response parameters Body.MediaInfoJobList.$.Properties.FileMd5.
1 parent b5826a3 commit 5f808ee

File tree

7 files changed

+52
-6
lines changed

7 files changed

+52
-6
lines changed

‎mts-20140618/ChangeLog.md‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2025年10月24日 Version: 4.0.1
2+
- Update API QueryMediaInfoJobList: add response parameters Body.MediaInfoJobList.$.Properties.FileMd5.
3+
- Update API QueryMediaInfoJobList: add response parameters Body.MediaInfoJobList.$.Properties.Streams.AudioStreamList.$.DurationInaccurate.
4+
- Update API QueryMediaInfoJobList: add response parameters Body.MediaInfoJobList.$.Properties.Streams.VideoStreamList.$.DurationInaccurate.
5+
- Update API SubmitMediaInfoJob: add request parameters Config.
6+
- Update API SubmitMediaInfoJob: add response parameters Body.MediaInfoJob.Properties.MD5.
7+
- Update API SubmitMediaInfoJob: add response parameters Body.MediaInfoJob.Properties.Streams.AudioStreamList.$.DurationInaccurate.
8+
- Update API SubmitMediaInfoJob: add response parameters Body.MediaInfoJob.Properties.Streams.VideoStreamList.$.DurationInaccurate.
9+
10+
111
2025年05月14日 Version: 4.0.0
212
- Update API SubmitCopyrightJob: update request parameters StartTime' type has changed.
313
- Update API SubmitCopyrightJob: update request parameters StartTime' format has changed.

‎mts-20140618/core/Client.cs‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14828,6 +14828,10 @@ public SubmitMediaInfoJobResponse SubmitMediaInfoJobWithOptions(SubmitMediaInfoJ
1482814828
{
1482914829
query["Async"] = request.Async;
1483014830
}
14831+
if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.Config))
14832+
{
14833+
query["Config"] = request.Config;
14834+
}
1483114835
if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.Input))
1483214836
{
1483314837
query["Input"] = request.Input;
@@ -14909,6 +14913,10 @@ public async Task<SubmitMediaInfoJobResponse> SubmitMediaInfoJobWithOptionsAsync
1490914913
{
1491014914
query["Async"] = request.Async;
1491114915
}
14916+
if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.Config))
14917+
{
14918+
query["Config"] = request.Config;
14919+
}
1491214920
if (!AlibabaCloud.TeaUtil.Common.IsUnset(request.Input))
1491314921
{
1491414922
query["Input"] = request.Input;

‎mts-20140618/core/Models/QueryMediaInfoJobListResponseBody.cs‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,10 @@ public class QueryMediaInfoJobListResponseBodyMediaInfoJobListMediaInfoJobProper
195195
[Validation(Required=false)]
196196
public string FileFormat { get; set; }
197197

198+
[NameInMap("FileMd5")]
199+
[Validation(Required=false)]
200+
public string FileMd5 { get; set; }
201+
198202
/// <summary>
199203
/// <para>The size of the image file.</para>
200204
///
@@ -429,6 +433,10 @@ public class QueryMediaInfoJobListResponseBodyMediaInfoJobListMediaInfoJobProper
429433
[Validation(Required=false)]
430434
public string Duration { get; set; }
431435

436+
[NameInMap("DurationInaccurate")]
437+
[Validation(Required=false)]
438+
public string DurationInaccurate { get; set; }
439+
432440
/// <summary>
433441
/// <para>The sequence number of the audio stream. The value indicates the position of the audio stream in all audio streams.</para>
434442
///
@@ -759,6 +767,10 @@ public class QueryMediaInfoJobListResponseBodyMediaInfoJobListMediaInfoJobProper
759767
[Validation(Required=false)]
760768
public string Duration { get; set; }
761769

770+
[NameInMap("DurationInaccurate")]
771+
[Validation(Required=false)]
772+
public string DurationInaccurate { get; set; }
773+
762774
/// <summary>
763775
/// <para>The frame rate of the media file.</para>
764776
///

‎mts-20140618/core/Models/SubmitMediaInfoJobRequest.cs‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ public class SubmitMediaInfoJobRequest : TeaModel {
2323
[Validation(Required=false)]
2424
public bool? Async { get; set; }
2525

26+
[NameInMap("Config")]
27+
[Validation(Required=false)]
28+
public string Config { get; set; }
29+
2630
/// <summary>
2731
/// <para>The information about the input media file. The value is a JSON string. You must perform the following operations to add the OSS bucket in which the input media file is stored as a media bucket: Log on to the <b>MPS console</b>, choose <b>Workflows</b> &gt; <b>Media Buckets</b> in the left-side navigation pane, and then click <b>Add Bucket</b>. After you add the OSS bucket as a media bucket, you must perform URL encoding for the OSS object. For example, <c>{&quot;Bucket&quot;:&quot;example-bucket&quot;,&quot;Location&quot;:&quot;example-location&quot;,&quot;Object&quot;:&quot;example%2Fexample.flv&quot;}</c> indicates the <c>example-bucket.example-location.aliyuncs.com/example/example.flv</c> file.</para>
2832
/// <remarks>

‎mts-20140618/core/Models/SubmitMediaInfoJobResponseBody.cs‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,10 @@ public class SubmitMediaInfoJobResponseBodyMediaInfoJobPropertiesFormat : TeaMod
310310
[Validation(Required=false)]
311311
public string Height { get; set; }
312312

313+
[NameInMap("MD5")]
314+
[Validation(Required=false)]
315+
public string MD5 { get; set; }
316+
313317
/// <summary>
314318
/// <para>The media streams that are contained in the input media file.</para>
315319
/// </summary>
@@ -425,6 +429,10 @@ public class SubmitMediaInfoJobResponseBodyMediaInfoJobPropertiesStreamsAudioStr
425429
[Validation(Required=false)]
426430
public string Duration { get; set; }
427431

432+
[NameInMap("DurationInaccurate")]
433+
[Validation(Required=false)]
434+
public string DurationInaccurate { get; set; }
435+
428436
/// <summary>
429437
/// <para>The sequence number of the audio stream. The value indicates the position of the audio stream in all audio streams.</para>
430438
///
@@ -755,6 +763,10 @@ public class SubmitMediaInfoJobResponseBodyMediaInfoJobPropertiesStreamsVideoStr
755763
[Validation(Required=false)]
756764
public string Duration { get; set; }
757765

766+
[NameInMap("DurationInaccurate")]
767+
[Validation(Required=false)]
768+
public string DurationInaccurate { get; set; }
769+
758770
/// <summary>
759771
/// <para>The frame rate.</para>
760772
///

‎mts-20140618/core/Properties/AssemblyInfo.cs‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("08eb9260-3092-11f0-b22c-13482c7e4c01")]
23+
[assembly: Guid("3eba2880-b0fc-11f0-86c9-931758ae8b9f")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//
@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("3.0.3.0")]
33-
[assembly: AssemblyFileVersion("3.0.3.0")]
32+
[assembly: AssemblyVersion("4.0.0.0")]
33+
[assembly: AssemblyFileVersion("4.0.1.0")]

‎mts-20140618/core/mts.csproj‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
88
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
99
<AssemblyName>AlibabaCloud.SDK.Mts20140618</AssemblyName>
10-
<Version>4.0.0</Version>
10+
<Version>4.0.1</Version>
1111
<LangVersion>5</LangVersion>
1212
<Authors>Alibaba Cloud</Authors>
1313
<Description>Alibaba Cloud ApsaraVideo for Media Processing (20140618) SDK Library for .NET</Description>
@@ -41,9 +41,9 @@
4141
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4242
</PackageReference>
4343
<PackageReference Include="AlibabaCloud.TeaUtil" Version="0.1.19"/>
44-
<PackageReference Include="AlibabaCloud.OpenApiClient" Version="0.1.14"/>
44+
<PackageReference Include="AlibabaCloud.OpenApiClient" Version="0.1.15"/>
4545
<PackageReference Include="AlibabaCloud.OpenApiUtil" Version="1.1.2"/>
46-
<PackageReference Include="AlibabaCloud.EndpointUtil" Version="0.1.1"/>
46+
<PackageReference Include="AlibabaCloud.EndpointUtil" Version="0.1.2"/>
4747
<PackageReference Include="Tea" Version="1.1.3"/>
4848
</ItemGroup>
4949
</Project>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /