@aws-sdk/client-mediaconvert 3.321.1 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AssociateCertificateCommand.d.ts +4 -0
- package/dist-types/commands/CancelJobCommand.d.ts +4 -0
- package/dist-types/commands/CreateJobCommand.d.ts +1439 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +781 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +25 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +11 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +4 -0
- package/dist-types/commands/GetJobCommand.d.ts +1439 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +10 -0
- package/dist-types/commands/GetPresetCommand.d.ts +781 -0
- package/dist-types/commands/GetQueueCommand.d.ts +25 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1379 -0
- package/dist-types/commands/ListJobsCommand.d.ts +1442 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +784 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +28 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +781 -0
- package/dist-types/commands/UpdateQueueCommand.d.ts +25 -0
- package/package.json +16 -16
|
@@ -1398,6 +1398,1380 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
1398
1398
|
* };
|
|
1399
1399
|
* const command = new CreateJobTemplateCommand(input);
|
|
1400
1400
|
* const response = await client.send(command);
|
|
1401
|
+
* // { // CreateJobTemplateResponse
|
|
1402
|
+
* // JobTemplate: { // JobTemplate
|
|
1403
|
+
* // AccelerationSettings: { // AccelerationSettings
|
|
1404
|
+
* // Mode: "DISABLED" || "ENABLED" || "PREFERRED", // required
|
|
1405
|
+
* // },
|
|
1406
|
+
* // Arn: "STRING_VALUE",
|
|
1407
|
+
* // Category: "STRING_VALUE",
|
|
1408
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
1409
|
+
* // Description: "STRING_VALUE",
|
|
1410
|
+
* // HopDestinations: [ // __listOfHopDestination
|
|
1411
|
+
* // { // HopDestination
|
|
1412
|
+
* // Priority: Number("int"),
|
|
1413
|
+
* // Queue: "STRING_VALUE",
|
|
1414
|
+
* // WaitMinutes: Number("int"),
|
|
1415
|
+
* // },
|
|
1416
|
+
* // ],
|
|
1417
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
1418
|
+
* // Name: "STRING_VALUE", // required
|
|
1419
|
+
* // Priority: Number("int"),
|
|
1420
|
+
* // Queue: "STRING_VALUE",
|
|
1421
|
+
* // Settings: { // JobTemplateSettings
|
|
1422
|
+
* // AdAvailOffset: Number("int"),
|
|
1423
|
+
* // AvailBlanking: { // AvailBlanking
|
|
1424
|
+
* // AvailBlankingImage: "STRING_VALUE",
|
|
1425
|
+
* // },
|
|
1426
|
+
* // Esam: { // EsamSettings
|
|
1427
|
+
* // ManifestConfirmConditionNotification: { // EsamManifestConfirmConditionNotification
|
|
1428
|
+
* // MccXml: "STRING_VALUE",
|
|
1429
|
+
* // },
|
|
1430
|
+
* // ResponseSignalPreroll: Number("int"),
|
|
1431
|
+
* // SignalProcessingNotification: { // EsamSignalProcessingNotification
|
|
1432
|
+
* // SccXml: "STRING_VALUE",
|
|
1433
|
+
* // },
|
|
1434
|
+
* // },
|
|
1435
|
+
* // ExtendedDataServices: { // ExtendedDataServices
|
|
1436
|
+
* // CopyProtectionAction: "PASSTHROUGH" || "STRIP",
|
|
1437
|
+
* // VchipAction: "PASSTHROUGH" || "STRIP",
|
|
1438
|
+
* // },
|
|
1439
|
+
* // Inputs: [ // __listOfInputTemplate
|
|
1440
|
+
* // { // InputTemplate
|
|
1441
|
+
* // AdvancedInputFilter: "ENABLED" || "DISABLED",
|
|
1442
|
+
* // AdvancedInputFilterSettings: { // AdvancedInputFilterSettings
|
|
1443
|
+
* // AddTexture: "ENABLED" || "DISABLED",
|
|
1444
|
+
* // Sharpening: "OFF" || "LOW" || "HIGH",
|
|
1445
|
+
* // },
|
|
1446
|
+
* // AudioSelectorGroups: { // __mapOfAudioSelectorGroup
|
|
1447
|
+
* // "<keys>": { // AudioSelectorGroup
|
|
1448
|
+
* // AudioSelectorNames: [ // __listOf__stringMin1
|
|
1449
|
+
* // "STRING_VALUE",
|
|
1450
|
+
* // ],
|
|
1451
|
+
* // },
|
|
1452
|
+
* // },
|
|
1453
|
+
* // AudioSelectors: { // __mapOfAudioSelector
|
|
1454
|
+
* // "<keys>": { // AudioSelector
|
|
1455
|
+
* // AudioDurationCorrection: "DISABLED" || "AUTO" || "TRACK" || "FRAME",
|
|
1456
|
+
* // CustomLanguageCode: "STRING_VALUE",
|
|
1457
|
+
* // DefaultSelection: "DEFAULT" || "NOT_DEFAULT",
|
|
1458
|
+
* // ExternalAudioFileInput: "STRING_VALUE",
|
|
1459
|
+
* // HlsRenditionGroupSettings: { // HlsRenditionGroupSettings
|
|
1460
|
+
* // RenditionGroupId: "STRING_VALUE",
|
|
1461
|
+
* // RenditionLanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
1462
|
+
* // RenditionName: "STRING_VALUE",
|
|
1463
|
+
* // },
|
|
1464
|
+
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
1465
|
+
* // Offset: Number("int"),
|
|
1466
|
+
* // Pids: [ // __listOf__integerMin1Max2147483647
|
|
1467
|
+
* // Number("int"),
|
|
1468
|
+
* // ],
|
|
1469
|
+
* // ProgramSelection: Number("int"),
|
|
1470
|
+
* // RemixSettings: { // RemixSettings
|
|
1471
|
+
* // ChannelMapping: { // ChannelMapping
|
|
1472
|
+
* // OutputChannels: [ // __listOfOutputChannelMapping
|
|
1473
|
+
* // { // OutputChannelMapping
|
|
1474
|
+
* // InputChannels: [ // __listOf__integerMinNegative60Max6
|
|
1475
|
+
* // Number("int"),
|
|
1476
|
+
* // ],
|
|
1477
|
+
* // InputChannelsFineTune: [ // __listOf__doubleMinNegative60Max6
|
|
1478
|
+
* // Number("double"),
|
|
1479
|
+
* // ],
|
|
1480
|
+
* // },
|
|
1481
|
+
* // ],
|
|
1482
|
+
* // },
|
|
1483
|
+
* // ChannelsIn: Number("int"),
|
|
1484
|
+
* // ChannelsOut: Number("int"),
|
|
1485
|
+
* // },
|
|
1486
|
+
* // SelectorType: "PID" || "TRACK" || "LANGUAGE_CODE" || "HLS_RENDITION_GROUP",
|
|
1487
|
+
* // Tracks: [
|
|
1488
|
+
* // Number("int"),
|
|
1489
|
+
* // ],
|
|
1490
|
+
* // },
|
|
1491
|
+
* // },
|
|
1492
|
+
* // CaptionSelectors: { // __mapOfCaptionSelector
|
|
1493
|
+
* // "<keys>": { // CaptionSelector
|
|
1494
|
+
* // CustomLanguageCode: "STRING_VALUE",
|
|
1495
|
+
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
1496
|
+
* // SourceSettings: { // CaptionSourceSettings
|
|
1497
|
+
* // AncillarySourceSettings: { // AncillarySourceSettings
|
|
1498
|
+
* // Convert608To708: "UPCONVERT" || "DISABLED",
|
|
1499
|
+
* // SourceAncillaryChannelNumber: Number("int"),
|
|
1500
|
+
* // TerminateCaptions: "END_OF_INPUT" || "DISABLED",
|
|
1501
|
+
* // },
|
|
1502
|
+
* // DvbSubSourceSettings: { // DvbSubSourceSettings
|
|
1503
|
+
* // Pid: Number("int"),
|
|
1504
|
+
* // },
|
|
1505
|
+
* // EmbeddedSourceSettings: { // EmbeddedSourceSettings
|
|
1506
|
+
* // Convert608To708: "UPCONVERT" || "DISABLED",
|
|
1507
|
+
* // Source608ChannelNumber: Number("int"),
|
|
1508
|
+
* // Source608TrackNumber: Number("int"),
|
|
1509
|
+
* // TerminateCaptions: "END_OF_INPUT" || "DISABLED",
|
|
1510
|
+
* // },
|
|
1511
|
+
* // FileSourceSettings: { // FileSourceSettings
|
|
1512
|
+
* // Convert608To708: "UPCONVERT" || "DISABLED",
|
|
1513
|
+
* // ConvertPaintToPop: "ENABLED" || "DISABLED",
|
|
1514
|
+
* // Framerate: { // CaptionSourceFramerate
|
|
1515
|
+
* // FramerateDenominator: Number("int"),
|
|
1516
|
+
* // FramerateNumerator: Number("int"),
|
|
1517
|
+
* // },
|
|
1518
|
+
* // SourceFile: "STRING_VALUE",
|
|
1519
|
+
* // TimeDelta: Number("int"),
|
|
1520
|
+
* // TimeDeltaUnits: "SECONDS" || "MILLISECONDS",
|
|
1521
|
+
* // },
|
|
1522
|
+
* // SourceType: "ANCILLARY" || "DVB_SUB" || "EMBEDDED" || "SCTE20" || "SCC" || "TTML" || "STL" || "SRT" || "SMI" || "SMPTE_TT" || "TELETEXT" || "NULL_SOURCE" || "IMSC" || "WEBVTT",
|
|
1523
|
+
* // TeletextSourceSettings: { // TeletextSourceSettings
|
|
1524
|
+
* // PageNumber: "STRING_VALUE",
|
|
1525
|
+
* // },
|
|
1526
|
+
* // TrackSourceSettings: { // TrackSourceSettings
|
|
1527
|
+
* // TrackNumber: Number("int"),
|
|
1528
|
+
* // },
|
|
1529
|
+
* // WebvttHlsSourceSettings: { // WebvttHlsSourceSettings
|
|
1530
|
+
* // RenditionGroupId: "STRING_VALUE",
|
|
1531
|
+
* // RenditionLanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
1532
|
+
* // RenditionName: "STRING_VALUE",
|
|
1533
|
+
* // },
|
|
1534
|
+
* // },
|
|
1535
|
+
* // },
|
|
1536
|
+
* // },
|
|
1537
|
+
* // Crop: { // Rectangle
|
|
1538
|
+
* // Height: Number("int"),
|
|
1539
|
+
* // Width: Number("int"),
|
|
1540
|
+
* // X: Number("int"),
|
|
1541
|
+
* // Y: Number("int"),
|
|
1542
|
+
* // },
|
|
1543
|
+
* // DeblockFilter: "ENABLED" || "DISABLED",
|
|
1544
|
+
* // DenoiseFilter: "ENABLED" || "DISABLED",
|
|
1545
|
+
* // DolbyVisionMetadataXml: "STRING_VALUE",
|
|
1546
|
+
* // FilterEnable: "AUTO" || "DISABLE" || "FORCE",
|
|
1547
|
+
* // FilterStrength: Number("int"),
|
|
1548
|
+
* // ImageInserter: { // ImageInserter
|
|
1549
|
+
* // InsertableImages: [ // __listOfInsertableImage
|
|
1550
|
+
* // { // InsertableImage
|
|
1551
|
+
* // Duration: Number("int"),
|
|
1552
|
+
* // FadeIn: Number("int"),
|
|
1553
|
+
* // FadeOut: Number("int"),
|
|
1554
|
+
* // Height: Number("int"),
|
|
1555
|
+
* // ImageInserterInput: "STRING_VALUE",
|
|
1556
|
+
* // ImageX: Number("int"),
|
|
1557
|
+
* // ImageY: Number("int"),
|
|
1558
|
+
* // Layer: Number("int"),
|
|
1559
|
+
* // Opacity: Number("int"),
|
|
1560
|
+
* // StartTime: "STRING_VALUE",
|
|
1561
|
+
* // Width: Number("int"),
|
|
1562
|
+
* // },
|
|
1563
|
+
* // ],
|
|
1564
|
+
* // SdrReferenceWhiteLevel: Number("int"),
|
|
1565
|
+
* // },
|
|
1566
|
+
* // InputClippings: [ // __listOfInputClipping
|
|
1567
|
+
* // { // InputClipping
|
|
1568
|
+
* // EndTimecode: "STRING_VALUE",
|
|
1569
|
+
* // StartTimecode: "STRING_VALUE",
|
|
1570
|
+
* // },
|
|
1571
|
+
* // ],
|
|
1572
|
+
* // InputScanType: "AUTO" || "PSF",
|
|
1573
|
+
* // Position: {
|
|
1574
|
+
* // Height: Number("int"),
|
|
1575
|
+
* // Width: Number("int"),
|
|
1576
|
+
* // X: Number("int"),
|
|
1577
|
+
* // Y: Number("int"),
|
|
1578
|
+
* // },
|
|
1579
|
+
* // ProgramNumber: Number("int"),
|
|
1580
|
+
* // PsiControl: "IGNORE_PSI" || "USE_PSI",
|
|
1581
|
+
* // TimecodeSource: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
|
|
1582
|
+
* // TimecodeStart: "STRING_VALUE",
|
|
1583
|
+
* // VideoSelector: { // VideoSelector
|
|
1584
|
+
* // AlphaBehavior: "DISCARD" || "REMAP_TO_LUMA",
|
|
1585
|
+
* // ColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
1586
|
+
* // ColorSpaceUsage: "FORCE" || "FALLBACK",
|
|
1587
|
+
* // EmbeddedTimecodeOverride: "NONE" || "USE_MDPM",
|
|
1588
|
+
* // Hdr10Metadata: { // Hdr10Metadata
|
|
1589
|
+
* // BluePrimaryX: Number("int"),
|
|
1590
|
+
* // BluePrimaryY: Number("int"),
|
|
1591
|
+
* // GreenPrimaryX: Number("int"),
|
|
1592
|
+
* // GreenPrimaryY: Number("int"),
|
|
1593
|
+
* // MaxContentLightLevel: Number("int"),
|
|
1594
|
+
* // MaxFrameAverageLightLevel: Number("int"),
|
|
1595
|
+
* // MaxLuminance: Number("int"),
|
|
1596
|
+
* // MinLuminance: Number("int"),
|
|
1597
|
+
* // RedPrimaryX: Number("int"),
|
|
1598
|
+
* // RedPrimaryY: Number("int"),
|
|
1599
|
+
* // WhitePointX: Number("int"),
|
|
1600
|
+
* // WhitePointY: Number("int"),
|
|
1601
|
+
* // },
|
|
1602
|
+
* // PadVideo: "DISABLED" || "BLACK",
|
|
1603
|
+
* // Pid: Number("int"),
|
|
1604
|
+
* // ProgramNumber: Number("int"),
|
|
1605
|
+
* // Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
|
|
1606
|
+
* // SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
|
|
1607
|
+
* // },
|
|
1608
|
+
* // },
|
|
1609
|
+
* // ],
|
|
1610
|
+
* // KantarWatermark: { // KantarWatermarkSettings
|
|
1611
|
+
* // ChannelName: "STRING_VALUE",
|
|
1612
|
+
* // ContentReference: "STRING_VALUE",
|
|
1613
|
+
* // CredentialsSecretName: "STRING_VALUE",
|
|
1614
|
+
* // FileOffset: Number("double"),
|
|
1615
|
+
* // KantarLicenseId: Number("int"),
|
|
1616
|
+
* // KantarServerUrl: "STRING_VALUE",
|
|
1617
|
+
* // LogDestination: "STRING_VALUE",
|
|
1618
|
+
* // Metadata3: "STRING_VALUE",
|
|
1619
|
+
* // Metadata4: "STRING_VALUE",
|
|
1620
|
+
* // Metadata5: "STRING_VALUE",
|
|
1621
|
+
* // Metadata6: "STRING_VALUE",
|
|
1622
|
+
* // Metadata7: "STRING_VALUE",
|
|
1623
|
+
* // Metadata8: "STRING_VALUE",
|
|
1624
|
+
* // },
|
|
1625
|
+
* // MotionImageInserter: { // MotionImageInserter
|
|
1626
|
+
* // Framerate: { // MotionImageInsertionFramerate
|
|
1627
|
+
* // FramerateDenominator: Number("int"),
|
|
1628
|
+
* // FramerateNumerator: Number("int"),
|
|
1629
|
+
* // },
|
|
1630
|
+
* // Input: "STRING_VALUE",
|
|
1631
|
+
* // InsertionMode: "MOV" || "PNG",
|
|
1632
|
+
* // Offset: { // MotionImageInsertionOffset
|
|
1633
|
+
* // ImageX: Number("int"),
|
|
1634
|
+
* // ImageY: Number("int"),
|
|
1635
|
+
* // },
|
|
1636
|
+
* // Playback: "ONCE" || "REPEAT",
|
|
1637
|
+
* // StartTime: "STRING_VALUE",
|
|
1638
|
+
* // },
|
|
1639
|
+
* // NielsenConfiguration: { // NielsenConfiguration
|
|
1640
|
+
* // BreakoutCode: Number("int"),
|
|
1641
|
+
* // DistributorId: "STRING_VALUE",
|
|
1642
|
+
* // },
|
|
1643
|
+
* // NielsenNonLinearWatermark: { // NielsenNonLinearWatermarkSettings
|
|
1644
|
+
* // ActiveWatermarkProcess: "NAES2_AND_NW" || "CBET" || "NAES2_AND_NW_AND_CBET",
|
|
1645
|
+
* // AdiFilename: "STRING_VALUE",
|
|
1646
|
+
* // AssetId: "STRING_VALUE",
|
|
1647
|
+
* // AssetName: "STRING_VALUE",
|
|
1648
|
+
* // CbetSourceId: "STRING_VALUE",
|
|
1649
|
+
* // EpisodeId: "STRING_VALUE",
|
|
1650
|
+
* // MetadataDestination: "STRING_VALUE",
|
|
1651
|
+
* // SourceId: Number("int"),
|
|
1652
|
+
* // SourceWatermarkStatus: "CLEAN" || "WATERMARKED",
|
|
1653
|
+
* // TicServerUrl: "STRING_VALUE",
|
|
1654
|
+
* // UniqueTicPerAudioTrack: "RESERVE_UNIQUE_TICS_PER_TRACK" || "SAME_TICS_PER_TRACK",
|
|
1655
|
+
* // },
|
|
1656
|
+
* // OutputGroups: [ // __listOfOutputGroup
|
|
1657
|
+
* // { // OutputGroup
|
|
1658
|
+
* // AutomatedEncodingSettings: { // AutomatedEncodingSettings
|
|
1659
|
+
* // AbrSettings: { // AutomatedAbrSettings
|
|
1660
|
+
* // MaxAbrBitrate: Number("int"),
|
|
1661
|
+
* // MaxRenditions: Number("int"),
|
|
1662
|
+
* // MinAbrBitrate: Number("int"),
|
|
1663
|
+
* // Rules: [ // __listOfAutomatedAbrRule
|
|
1664
|
+
* // { // AutomatedAbrRule
|
|
1665
|
+
* // AllowedRenditions: [ // __listOfAllowedRenditionSize
|
|
1666
|
+
* // { // AllowedRenditionSize
|
|
1667
|
+
* // Height: Number("int"),
|
|
1668
|
+
* // Required: "ENABLED" || "DISABLED",
|
|
1669
|
+
* // Width: Number("int"),
|
|
1670
|
+
* // },
|
|
1671
|
+
* // ],
|
|
1672
|
+
* // ForceIncludeRenditions: [ // __listOfForceIncludeRenditionSize
|
|
1673
|
+
* // { // ForceIncludeRenditionSize
|
|
1674
|
+
* // Height: Number("int"),
|
|
1675
|
+
* // Width: Number("int"),
|
|
1676
|
+
* // },
|
|
1677
|
+
* // ],
|
|
1678
|
+
* // MinBottomRenditionSize: { // MinBottomRenditionSize
|
|
1679
|
+
* // Height: Number("int"),
|
|
1680
|
+
* // Width: Number("int"),
|
|
1681
|
+
* // },
|
|
1682
|
+
* // MinTopRenditionSize: { // MinTopRenditionSize
|
|
1683
|
+
* // Height: Number("int"),
|
|
1684
|
+
* // Width: Number("int"),
|
|
1685
|
+
* // },
|
|
1686
|
+
* // Type: "MIN_TOP_RENDITION_SIZE" || "MIN_BOTTOM_RENDITION_SIZE" || "FORCE_INCLUDE_RENDITIONS" || "ALLOWED_RENDITIONS",
|
|
1687
|
+
* // },
|
|
1688
|
+
* // ],
|
|
1689
|
+
* // },
|
|
1690
|
+
* // },
|
|
1691
|
+
* // CustomName: "STRING_VALUE",
|
|
1692
|
+
* // Name: "STRING_VALUE",
|
|
1693
|
+
* // OutputGroupSettings: { // OutputGroupSettings
|
|
1694
|
+
* // CmafGroupSettings: { // CmafGroupSettings
|
|
1695
|
+
* // AdditionalManifests: [ // __listOfCmafAdditionalManifest
|
|
1696
|
+
* // { // CmafAdditionalManifest
|
|
1697
|
+
* // ManifestNameModifier: "STRING_VALUE",
|
|
1698
|
+
* // SelectedOutputs: [
|
|
1699
|
+
* // "STRING_VALUE",
|
|
1700
|
+
* // ],
|
|
1701
|
+
* // },
|
|
1702
|
+
* // ],
|
|
1703
|
+
* // BaseUrl: "STRING_VALUE",
|
|
1704
|
+
* // ClientCache: "DISABLED" || "ENABLED",
|
|
1705
|
+
* // CodecSpecification: "RFC_6381" || "RFC_4281",
|
|
1706
|
+
* // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
|
|
1707
|
+
* // Destination: "STRING_VALUE",
|
|
1708
|
+
* // DestinationSettings: { // DestinationSettings
|
|
1709
|
+
* // S3Settings: { // S3DestinationSettings
|
|
1710
|
+
* // AccessControl: { // S3DestinationAccessControl
|
|
1711
|
+
* // CannedAcl: "PUBLIC_READ" || "AUTHENTICATED_READ" || "BUCKET_OWNER_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
1712
|
+
* // },
|
|
1713
|
+
* // Encryption: { // S3EncryptionSettings
|
|
1714
|
+
* // EncryptionType: "SERVER_SIDE_ENCRYPTION_S3" || "SERVER_SIDE_ENCRYPTION_KMS",
|
|
1715
|
+
* // KmsEncryptionContext: "STRING_VALUE",
|
|
1716
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
1717
|
+
* // },
|
|
1718
|
+
* // },
|
|
1719
|
+
* // },
|
|
1720
|
+
* // Encryption: { // CmafEncryptionSettings
|
|
1721
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
1722
|
+
* // EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
1723
|
+
* // InitializationVectorInManifest: "INCLUDE" || "EXCLUDE",
|
|
1724
|
+
* // SpekeKeyProvider: { // SpekeKeyProviderCmaf
|
|
1725
|
+
* // CertificateArn: "STRING_VALUE",
|
|
1726
|
+
* // DashSignaledSystemIds: [ // __listOf__stringMin36Max36Pattern09aFAF809aFAF409aFAF409aFAF409aFAF12
|
|
1727
|
+
* // "STRING_VALUE",
|
|
1728
|
+
* // ],
|
|
1729
|
+
* // HlsSignaledSystemIds: [
|
|
1730
|
+
* // "STRING_VALUE",
|
|
1731
|
+
* // ],
|
|
1732
|
+
* // ResourceId: "STRING_VALUE",
|
|
1733
|
+
* // Url: "STRING_VALUE",
|
|
1734
|
+
* // },
|
|
1735
|
+
* // StaticKeyProvider: { // StaticKeyProvider
|
|
1736
|
+
* // KeyFormat: "STRING_VALUE",
|
|
1737
|
+
* // KeyFormatVersions: "STRING_VALUE",
|
|
1738
|
+
* // StaticKeyValue: "STRING_VALUE",
|
|
1739
|
+
* // Url: "STRING_VALUE",
|
|
1740
|
+
* // },
|
|
1741
|
+
* // Type: "SPEKE" || "STATIC_KEY",
|
|
1742
|
+
* // },
|
|
1743
|
+
* // FragmentLength: Number("int"),
|
|
1744
|
+
* // ImageBasedTrickPlay: "NONE" || "THUMBNAIL" || "THUMBNAIL_AND_FULLFRAME" || "ADVANCED",
|
|
1745
|
+
* // ImageBasedTrickPlaySettings: { // CmafImageBasedTrickPlaySettings
|
|
1746
|
+
* // IntervalCadence: "FOLLOW_IFRAME" || "FOLLOW_CUSTOM",
|
|
1747
|
+
* // ThumbnailHeight: Number("int"),
|
|
1748
|
+
* // ThumbnailInterval: Number("double"),
|
|
1749
|
+
* // ThumbnailWidth: Number("int"),
|
|
1750
|
+
* // TileHeight: Number("int"),
|
|
1751
|
+
* // TileWidth: Number("int"),
|
|
1752
|
+
* // },
|
|
1753
|
+
* // ManifestCompression: "GZIP" || "NONE",
|
|
1754
|
+
* // ManifestDurationFormat: "FLOATING_POINT" || "INTEGER",
|
|
1755
|
+
* // MinBufferTime: Number("int"),
|
|
1756
|
+
* // MinFinalSegmentLength: Number("double"),
|
|
1757
|
+
* // MpdManifestBandwidthType: "AVERAGE" || "MAX",
|
|
1758
|
+
* // MpdProfile: "MAIN_PROFILE" || "ON_DEMAND_PROFILE",
|
|
1759
|
+
* // PtsOffsetHandlingForBFrames: "ZERO_BASED" || "MATCH_INITIAL_PTS",
|
|
1760
|
+
* // SegmentControl: "SINGLE_FILE" || "SEGMENTED_FILES",
|
|
1761
|
+
* // SegmentLength: Number("int"),
|
|
1762
|
+
* // SegmentLengthControl: "EXACT" || "GOP_MULTIPLE",
|
|
1763
|
+
* // StreamInfResolution: "INCLUDE" || "EXCLUDE",
|
|
1764
|
+
* // TargetDurationCompatibilityMode: "LEGACY" || "SPEC_COMPLIANT",
|
|
1765
|
+
* // VideoCompositionOffsets: "SIGNED" || "UNSIGNED",
|
|
1766
|
+
* // WriteDashManifest: "DISABLED" || "ENABLED",
|
|
1767
|
+
* // WriteHlsManifest: "DISABLED" || "ENABLED",
|
|
1768
|
+
* // WriteSegmentTimelineInRepresentation: "ENABLED" || "DISABLED",
|
|
1769
|
+
* // },
|
|
1770
|
+
* // DashIsoGroupSettings: { // DashIsoGroupSettings
|
|
1771
|
+
* // AdditionalManifests: [ // __listOfDashAdditionalManifest
|
|
1772
|
+
* // { // DashAdditionalManifest
|
|
1773
|
+
* // ManifestNameModifier: "STRING_VALUE",
|
|
1774
|
+
* // SelectedOutputs: [
|
|
1775
|
+
* // "STRING_VALUE",
|
|
1776
|
+
* // ],
|
|
1777
|
+
* // },
|
|
1778
|
+
* // ],
|
|
1779
|
+
* // AudioChannelConfigSchemeIdUri: "MPEG_CHANNEL_CONFIGURATION" || "DOLBY_CHANNEL_CONFIGURATION",
|
|
1780
|
+
* // BaseUrl: "STRING_VALUE",
|
|
1781
|
+
* // DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
|
|
1782
|
+
* // Destination: "STRING_VALUE",
|
|
1783
|
+
* // DestinationSettings: {
|
|
1784
|
+
* // S3Settings: {
|
|
1785
|
+
* // AccessControl: {
|
|
1786
|
+
* // CannedAcl: "PUBLIC_READ" || "AUTHENTICATED_READ" || "BUCKET_OWNER_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
1787
|
+
* // },
|
|
1788
|
+
* // Encryption: {
|
|
1789
|
+
* // EncryptionType: "SERVER_SIDE_ENCRYPTION_S3" || "SERVER_SIDE_ENCRYPTION_KMS",
|
|
1790
|
+
* // KmsEncryptionContext: "STRING_VALUE",
|
|
1791
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
1792
|
+
* // },
|
|
1793
|
+
* // },
|
|
1794
|
+
* // },
|
|
1795
|
+
* // Encryption: { // DashIsoEncryptionSettings
|
|
1796
|
+
* // PlaybackDeviceCompatibility: "CENC_V1" || "UNENCRYPTED_SEI",
|
|
1797
|
+
* // SpekeKeyProvider: { // SpekeKeyProvider
|
|
1798
|
+
* // CertificateArn: "STRING_VALUE",
|
|
1799
|
+
* // ResourceId: "STRING_VALUE",
|
|
1800
|
+
* // SystemIds: [ // __listOf__stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12
|
|
1801
|
+
* // "STRING_VALUE",
|
|
1802
|
+
* // ],
|
|
1803
|
+
* // Url: "STRING_VALUE",
|
|
1804
|
+
* // },
|
|
1805
|
+
* // },
|
|
1806
|
+
* // FragmentLength: Number("int"),
|
|
1807
|
+
* // HbbtvCompliance: "HBBTV_1_5" || "NONE",
|
|
1808
|
+
* // ImageBasedTrickPlay: "NONE" || "THUMBNAIL" || "THUMBNAIL_AND_FULLFRAME" || "ADVANCED",
|
|
1809
|
+
* // ImageBasedTrickPlaySettings: { // DashIsoImageBasedTrickPlaySettings
|
|
1810
|
+
* // IntervalCadence: "FOLLOW_IFRAME" || "FOLLOW_CUSTOM",
|
|
1811
|
+
* // ThumbnailHeight: Number("int"),
|
|
1812
|
+
* // ThumbnailInterval: Number("double"),
|
|
1813
|
+
* // ThumbnailWidth: Number("int"),
|
|
1814
|
+
* // TileHeight: Number("int"),
|
|
1815
|
+
* // TileWidth: Number("int"),
|
|
1816
|
+
* // },
|
|
1817
|
+
* // MinBufferTime: Number("int"),
|
|
1818
|
+
* // MinFinalSegmentLength: Number("double"),
|
|
1819
|
+
* // MpdManifestBandwidthType: "AVERAGE" || "MAX",
|
|
1820
|
+
* // MpdProfile: "MAIN_PROFILE" || "ON_DEMAND_PROFILE",
|
|
1821
|
+
* // PtsOffsetHandlingForBFrames: "ZERO_BASED" || "MATCH_INITIAL_PTS",
|
|
1822
|
+
* // SegmentControl: "SINGLE_FILE" || "SEGMENTED_FILES",
|
|
1823
|
+
* // SegmentLength: Number("int"),
|
|
1824
|
+
* // SegmentLengthControl: "EXACT" || "GOP_MULTIPLE",
|
|
1825
|
+
* // VideoCompositionOffsets: "SIGNED" || "UNSIGNED",
|
|
1826
|
+
* // WriteSegmentTimelineInRepresentation: "ENABLED" || "DISABLED",
|
|
1827
|
+
* // },
|
|
1828
|
+
* // FileGroupSettings: { // FileGroupSettings
|
|
1829
|
+
* // Destination: "STRING_VALUE",
|
|
1830
|
+
* // DestinationSettings: {
|
|
1831
|
+
* // S3Settings: {
|
|
1832
|
+
* // AccessControl: {
|
|
1833
|
+
* // CannedAcl: "PUBLIC_READ" || "AUTHENTICATED_READ" || "BUCKET_OWNER_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
1834
|
+
* // },
|
|
1835
|
+
* // Encryption: {
|
|
1836
|
+
* // EncryptionType: "SERVER_SIDE_ENCRYPTION_S3" || "SERVER_SIDE_ENCRYPTION_KMS",
|
|
1837
|
+
* // KmsEncryptionContext: "STRING_VALUE",
|
|
1838
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
1839
|
+
* // },
|
|
1840
|
+
* // },
|
|
1841
|
+
* // },
|
|
1842
|
+
* // },
|
|
1843
|
+
* // HlsGroupSettings: { // HlsGroupSettings
|
|
1844
|
+
* // AdMarkers: [ // __listOfHlsAdMarkers
|
|
1845
|
+
* // "ELEMENTAL" || "ELEMENTAL_SCTE35",
|
|
1846
|
+
* // ],
|
|
1847
|
+
* // AdditionalManifests: [ // __listOfHlsAdditionalManifest
|
|
1848
|
+
* // { // HlsAdditionalManifest
|
|
1849
|
+
* // ManifestNameModifier: "STRING_VALUE",
|
|
1850
|
+
* // SelectedOutputs: [
|
|
1851
|
+
* // "STRING_VALUE",
|
|
1852
|
+
* // ],
|
|
1853
|
+
* // },
|
|
1854
|
+
* // ],
|
|
1855
|
+
* // AudioOnlyHeader: "INCLUDE" || "EXCLUDE",
|
|
1856
|
+
* // BaseUrl: "STRING_VALUE",
|
|
1857
|
+
* // CaptionLanguageMappings: [ // __listOfHlsCaptionLanguageMapping
|
|
1858
|
+
* // { // HlsCaptionLanguageMapping
|
|
1859
|
+
* // CaptionChannel: Number("int"),
|
|
1860
|
+
* // CustomLanguageCode: "STRING_VALUE",
|
|
1861
|
+
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
1862
|
+
* // LanguageDescription: "STRING_VALUE",
|
|
1863
|
+
* // },
|
|
1864
|
+
* // ],
|
|
1865
|
+
* // CaptionLanguageSetting: "INSERT" || "OMIT" || "NONE",
|
|
1866
|
+
* // CaptionSegmentLengthControl: "LARGE_SEGMENTS" || "MATCH_VIDEO",
|
|
1867
|
+
* // ClientCache: "DISABLED" || "ENABLED",
|
|
1868
|
+
* // CodecSpecification: "RFC_6381" || "RFC_4281",
|
|
1869
|
+
* // Destination: "STRING_VALUE",
|
|
1870
|
+
* // DestinationSettings: {
|
|
1871
|
+
* // S3Settings: {
|
|
1872
|
+
* // AccessControl: {
|
|
1873
|
+
* // CannedAcl: "PUBLIC_READ" || "AUTHENTICATED_READ" || "BUCKET_OWNER_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
1874
|
+
* // },
|
|
1875
|
+
* // Encryption: {
|
|
1876
|
+
* // EncryptionType: "SERVER_SIDE_ENCRYPTION_S3" || "SERVER_SIDE_ENCRYPTION_KMS",
|
|
1877
|
+
* // KmsEncryptionContext: "STRING_VALUE",
|
|
1878
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
1879
|
+
* // },
|
|
1880
|
+
* // },
|
|
1881
|
+
* // },
|
|
1882
|
+
* // DirectoryStructure: "SINGLE_DIRECTORY" || "SUBDIRECTORY_PER_STREAM",
|
|
1883
|
+
* // Encryption: { // HlsEncryptionSettings
|
|
1884
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
1885
|
+
* // EncryptionMethod: "AES128" || "SAMPLE_AES",
|
|
1886
|
+
* // InitializationVectorInManifest: "INCLUDE" || "EXCLUDE",
|
|
1887
|
+
* // OfflineEncrypted: "ENABLED" || "DISABLED",
|
|
1888
|
+
* // SpekeKeyProvider: {
|
|
1889
|
+
* // CertificateArn: "STRING_VALUE",
|
|
1890
|
+
* // ResourceId: "STRING_VALUE",
|
|
1891
|
+
* // SystemIds: [
|
|
1892
|
+
* // "STRING_VALUE",
|
|
1893
|
+
* // ],
|
|
1894
|
+
* // Url: "STRING_VALUE",
|
|
1895
|
+
* // },
|
|
1896
|
+
* // StaticKeyProvider: {
|
|
1897
|
+
* // KeyFormat: "STRING_VALUE",
|
|
1898
|
+
* // KeyFormatVersions: "STRING_VALUE",
|
|
1899
|
+
* // StaticKeyValue: "STRING_VALUE",
|
|
1900
|
+
* // Url: "STRING_VALUE",
|
|
1901
|
+
* // },
|
|
1902
|
+
* // Type: "SPEKE" || "STATIC_KEY",
|
|
1903
|
+
* // },
|
|
1904
|
+
* // ImageBasedTrickPlay: "NONE" || "THUMBNAIL" || "THUMBNAIL_AND_FULLFRAME" || "ADVANCED",
|
|
1905
|
+
* // ImageBasedTrickPlaySettings: { // HlsImageBasedTrickPlaySettings
|
|
1906
|
+
* // IntervalCadence: "FOLLOW_IFRAME" || "FOLLOW_CUSTOM",
|
|
1907
|
+
* // ThumbnailHeight: Number("int"),
|
|
1908
|
+
* // ThumbnailInterval: Number("double"),
|
|
1909
|
+
* // ThumbnailWidth: Number("int"),
|
|
1910
|
+
* // TileHeight: Number("int"),
|
|
1911
|
+
* // TileWidth: Number("int"),
|
|
1912
|
+
* // },
|
|
1913
|
+
* // ManifestCompression: "GZIP" || "NONE",
|
|
1914
|
+
* // ManifestDurationFormat: "FLOATING_POINT" || "INTEGER",
|
|
1915
|
+
* // MinFinalSegmentLength: Number("double"),
|
|
1916
|
+
* // MinSegmentLength: Number("int"),
|
|
1917
|
+
* // OutputSelection: "MANIFESTS_AND_SEGMENTS" || "SEGMENTS_ONLY",
|
|
1918
|
+
* // ProgramDateTime: "INCLUDE" || "EXCLUDE",
|
|
1919
|
+
* // ProgramDateTimePeriod: Number("int"),
|
|
1920
|
+
* // SegmentControl: "SINGLE_FILE" || "SEGMENTED_FILES",
|
|
1921
|
+
* // SegmentLength: Number("int"),
|
|
1922
|
+
* // SegmentLengthControl: "EXACT" || "GOP_MULTIPLE",
|
|
1923
|
+
* // SegmentsPerSubdirectory: Number("int"),
|
|
1924
|
+
* // StreamInfResolution: "INCLUDE" || "EXCLUDE",
|
|
1925
|
+
* // TargetDurationCompatibilityMode: "LEGACY" || "SPEC_COMPLIANT",
|
|
1926
|
+
* // TimedMetadataId3Frame: "NONE" || "PRIV" || "TDRL",
|
|
1927
|
+
* // TimedMetadataId3Period: Number("int"),
|
|
1928
|
+
* // TimestampDeltaMilliseconds: Number("int"),
|
|
1929
|
+
* // },
|
|
1930
|
+
* // MsSmoothGroupSettings: { // MsSmoothGroupSettings
|
|
1931
|
+
* // AdditionalManifests: [ // __listOfMsSmoothAdditionalManifest
|
|
1932
|
+
* // { // MsSmoothAdditionalManifest
|
|
1933
|
+
* // ManifestNameModifier: "STRING_VALUE",
|
|
1934
|
+
* // SelectedOutputs: [
|
|
1935
|
+
* // "STRING_VALUE",
|
|
1936
|
+
* // ],
|
|
1937
|
+
* // },
|
|
1938
|
+
* // ],
|
|
1939
|
+
* // AudioDeduplication: "COMBINE_DUPLICATE_STREAMS" || "NONE",
|
|
1940
|
+
* // Destination: "STRING_VALUE",
|
|
1941
|
+
* // DestinationSettings: {
|
|
1942
|
+
* // S3Settings: {
|
|
1943
|
+
* // AccessControl: {
|
|
1944
|
+
* // CannedAcl: "PUBLIC_READ" || "AUTHENTICATED_READ" || "BUCKET_OWNER_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
1945
|
+
* // },
|
|
1946
|
+
* // Encryption: {
|
|
1947
|
+
* // EncryptionType: "SERVER_SIDE_ENCRYPTION_S3" || "SERVER_SIDE_ENCRYPTION_KMS",
|
|
1948
|
+
* // KmsEncryptionContext: "STRING_VALUE",
|
|
1949
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
1950
|
+
* // },
|
|
1951
|
+
* // },
|
|
1952
|
+
* // },
|
|
1953
|
+
* // Encryption: { // MsSmoothEncryptionSettings
|
|
1954
|
+
* // SpekeKeyProvider: {
|
|
1955
|
+
* // CertificateArn: "STRING_VALUE",
|
|
1956
|
+
* // ResourceId: "STRING_VALUE",
|
|
1957
|
+
* // SystemIds: [
|
|
1958
|
+
* // "STRING_VALUE",
|
|
1959
|
+
* // ],
|
|
1960
|
+
* // Url: "STRING_VALUE",
|
|
1961
|
+
* // },
|
|
1962
|
+
* // },
|
|
1963
|
+
* // FragmentLength: Number("int"),
|
|
1964
|
+
* // FragmentLengthControl: "EXACT" || "GOP_MULTIPLE",
|
|
1965
|
+
* // ManifestEncoding: "UTF8" || "UTF16",
|
|
1966
|
+
* // },
|
|
1967
|
+
* // Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
|
|
1968
|
+
* // },
|
|
1969
|
+
* // Outputs: [ // __listOfOutput
|
|
1970
|
+
* // { // Output
|
|
1971
|
+
* // AudioDescriptions: [ // __listOfAudioDescription
|
|
1972
|
+
* // { // AudioDescription
|
|
1973
|
+
* // AudioChannelTaggingSettings: { // AudioChannelTaggingSettings
|
|
1974
|
+
* // ChannelTag: "L" || "R" || "C" || "LFE" || "LS" || "RS" || "LC" || "RC" || "CS" || "LSD" || "RSD" || "TCS" || "VHL" || "VHC" || "VHR",
|
|
1975
|
+
* // },
|
|
1976
|
+
* // AudioNormalizationSettings: { // AudioNormalizationSettings
|
|
1977
|
+
* // Algorithm: "ITU_BS_1770_1" || "ITU_BS_1770_2" || "ITU_BS_1770_3" || "ITU_BS_1770_4",
|
|
1978
|
+
* // AlgorithmControl: "CORRECT_AUDIO" || "MEASURE_ONLY",
|
|
1979
|
+
* // CorrectionGateLevel: Number("int"),
|
|
1980
|
+
* // LoudnessLogging: "LOG" || "DONT_LOG",
|
|
1981
|
+
* // PeakCalculation: "TRUE_PEAK" || "NONE",
|
|
1982
|
+
* // TargetLkfs: Number("double"),
|
|
1983
|
+
* // TruePeakLimiterThreshold: Number("double"),
|
|
1984
|
+
* // },
|
|
1985
|
+
* // AudioSourceName: "STRING_VALUE",
|
|
1986
|
+
* // AudioType: Number("int"),
|
|
1987
|
+
* // AudioTypeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
1988
|
+
* // CodecSettings: { // AudioCodecSettings
|
|
1989
|
+
* // AacSettings: { // AacSettings
|
|
1990
|
+
* // AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
1991
|
+
* // Bitrate: Number("int"),
|
|
1992
|
+
* // CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
1993
|
+
* // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
1994
|
+
* // RateControlMode: "CBR" || "VBR",
|
|
1995
|
+
* // RawFormat: "LATM_LOAS" || "NONE",
|
|
1996
|
+
* // SampleRate: Number("int"),
|
|
1997
|
+
* // Specification: "MPEG2" || "MPEG4",
|
|
1998
|
+
* // VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
1999
|
+
* // },
|
|
2000
|
+
* // Ac3Settings: { // Ac3Settings
|
|
2001
|
+
* // Bitrate: Number("int"),
|
|
2002
|
+
* // BitstreamMode: "COMPLETE_MAIN" || "COMMENTARY" || "DIALOGUE" || "EMERGENCY" || "HEARING_IMPAIRED" || "MUSIC_AND_EFFECTS" || "VISUALLY_IMPAIRED" || "VOICE_OVER",
|
|
2003
|
+
* // CodingMode: "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_3_2_LFE",
|
|
2004
|
+
* // Dialnorm: Number("int"),
|
|
2005
|
+
* // DynamicRangeCompressionLine: "FILM_STANDARD" || "FILM_LIGHT" || "MUSIC_STANDARD" || "MUSIC_LIGHT" || "SPEECH" || "NONE",
|
|
2006
|
+
* // DynamicRangeCompressionProfile: "FILM_STANDARD" || "NONE",
|
|
2007
|
+
* // DynamicRangeCompressionRf: "FILM_STANDARD" || "FILM_LIGHT" || "MUSIC_STANDARD" || "MUSIC_LIGHT" || "SPEECH" || "NONE",
|
|
2008
|
+
* // LfeFilter: "ENABLED" || "DISABLED",
|
|
2009
|
+
* // MetadataControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
2010
|
+
* // SampleRate: Number("int"),
|
|
2011
|
+
* // },
|
|
2012
|
+
* // AiffSettings: { // AiffSettings
|
|
2013
|
+
* // BitDepth: Number("int"),
|
|
2014
|
+
* // Channels: Number("int"),
|
|
2015
|
+
* // SampleRate: Number("int"),
|
|
2016
|
+
* // },
|
|
2017
|
+
* // Codec: "AAC" || "MP2" || "MP3" || "WAV" || "AIFF" || "AC3" || "EAC3" || "EAC3_ATMOS" || "VORBIS" || "OPUS" || "PASSTHROUGH",
|
|
2018
|
+
* // Eac3AtmosSettings: { // Eac3AtmosSettings
|
|
2019
|
+
* // Bitrate: Number("int"),
|
|
2020
|
+
* // BitstreamMode: "COMPLETE_MAIN",
|
|
2021
|
+
* // CodingMode: "CODING_MODE_AUTO" || "CODING_MODE_5_1_4" || "CODING_MODE_7_1_4" || "CODING_MODE_9_1_6",
|
|
2022
|
+
* // DialogueIntelligence: "ENABLED" || "DISABLED",
|
|
2023
|
+
* // DownmixControl: "SPECIFIED" || "INITIALIZE_FROM_SOURCE",
|
|
2024
|
+
* // DynamicRangeCompressionLine: "NONE" || "FILM_STANDARD" || "FILM_LIGHT" || "MUSIC_STANDARD" || "MUSIC_LIGHT" || "SPEECH",
|
|
2025
|
+
* // DynamicRangeCompressionRf: "NONE" || "FILM_STANDARD" || "FILM_LIGHT" || "MUSIC_STANDARD" || "MUSIC_LIGHT" || "SPEECH",
|
|
2026
|
+
* // DynamicRangeControl: "SPECIFIED" || "INITIALIZE_FROM_SOURCE",
|
|
2027
|
+
* // LoRoCenterMixLevel: Number("double"),
|
|
2028
|
+
* // LoRoSurroundMixLevel: Number("double"),
|
|
2029
|
+
* // LtRtCenterMixLevel: Number("double"),
|
|
2030
|
+
* // LtRtSurroundMixLevel: Number("double"),
|
|
2031
|
+
* // MeteringMode: "LEQ_A" || "ITU_BS_1770_1" || "ITU_BS_1770_2" || "ITU_BS_1770_3" || "ITU_BS_1770_4",
|
|
2032
|
+
* // SampleRate: Number("int"),
|
|
2033
|
+
* // SpeechThreshold: Number("int"),
|
|
2034
|
+
* // StereoDownmix: "NOT_INDICATED" || "STEREO" || "SURROUND" || "DPL2",
|
|
2035
|
+
* // SurroundExMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
2036
|
+
* // },
|
|
2037
|
+
* // Eac3Settings: { // Eac3Settings
|
|
2038
|
+
* // AttenuationControl: "ATTENUATE_3_DB" || "NONE",
|
|
2039
|
+
* // Bitrate: Number("int"),
|
|
2040
|
+
* // BitstreamMode: "COMPLETE_MAIN" || "COMMENTARY" || "EMERGENCY" || "HEARING_IMPAIRED" || "VISUALLY_IMPAIRED",
|
|
2041
|
+
* // CodingMode: "CODING_MODE_1_0" || "CODING_MODE_2_0" || "CODING_MODE_3_2",
|
|
2042
|
+
* // DcFilter: "ENABLED" || "DISABLED",
|
|
2043
|
+
* // Dialnorm: Number("int"),
|
|
2044
|
+
* // DynamicRangeCompressionLine: "NONE" || "FILM_STANDARD" || "FILM_LIGHT" || "MUSIC_STANDARD" || "MUSIC_LIGHT" || "SPEECH",
|
|
2045
|
+
* // DynamicRangeCompressionRf: "NONE" || "FILM_STANDARD" || "FILM_LIGHT" || "MUSIC_STANDARD" || "MUSIC_LIGHT" || "SPEECH",
|
|
2046
|
+
* // LfeControl: "LFE" || "NO_LFE",
|
|
2047
|
+
* // LfeFilter: "ENABLED" || "DISABLED",
|
|
2048
|
+
* // LoRoCenterMixLevel: Number("double"),
|
|
2049
|
+
* // LoRoSurroundMixLevel: Number("double"),
|
|
2050
|
+
* // LtRtCenterMixLevel: Number("double"),
|
|
2051
|
+
* // LtRtSurroundMixLevel: Number("double"),
|
|
2052
|
+
* // MetadataControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
2053
|
+
* // PassthroughControl: "WHEN_POSSIBLE" || "NO_PASSTHROUGH",
|
|
2054
|
+
* // PhaseControl: "SHIFT_90_DEGREES" || "NO_SHIFT",
|
|
2055
|
+
* // SampleRate: Number("int"),
|
|
2056
|
+
* // StereoDownmix: "NOT_INDICATED" || "LO_RO" || "LT_RT" || "DPL2",
|
|
2057
|
+
* // SurroundExMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
2058
|
+
* // SurroundMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
2059
|
+
* // },
|
|
2060
|
+
* // Mp2Settings: { // Mp2Settings
|
|
2061
|
+
* // Bitrate: Number("int"),
|
|
2062
|
+
* // Channels: Number("int"),
|
|
2063
|
+
* // SampleRate: Number("int"),
|
|
2064
|
+
* // },
|
|
2065
|
+
* // Mp3Settings: { // Mp3Settings
|
|
2066
|
+
* // Bitrate: Number("int"),
|
|
2067
|
+
* // Channels: Number("int"),
|
|
2068
|
+
* // RateControlMode: "CBR" || "VBR",
|
|
2069
|
+
* // SampleRate: Number("int"),
|
|
2070
|
+
* // VbrQuality: Number("int"),
|
|
2071
|
+
* // },
|
|
2072
|
+
* // OpusSettings: { // OpusSettings
|
|
2073
|
+
* // Bitrate: Number("int"),
|
|
2074
|
+
* // Channels: Number("int"),
|
|
2075
|
+
* // SampleRate: Number("int"),
|
|
2076
|
+
* // },
|
|
2077
|
+
* // VorbisSettings: { // VorbisSettings
|
|
2078
|
+
* // Channels: Number("int"),
|
|
2079
|
+
* // SampleRate: Number("int"),
|
|
2080
|
+
* // VbrQuality: Number("int"),
|
|
2081
|
+
* // },
|
|
2082
|
+
* // WavSettings: { // WavSettings
|
|
2083
|
+
* // BitDepth: Number("int"),
|
|
2084
|
+
* // Channels: Number("int"),
|
|
2085
|
+
* // Format: "RIFF" || "RF64",
|
|
2086
|
+
* // SampleRate: Number("int"),
|
|
2087
|
+
* // },
|
|
2088
|
+
* // },
|
|
2089
|
+
* // CustomLanguageCode: "STRING_VALUE",
|
|
2090
|
+
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
2091
|
+
* // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
2092
|
+
* // RemixSettings: {
|
|
2093
|
+
* // ChannelMapping: {
|
|
2094
|
+
* // OutputChannels: [
|
|
2095
|
+
* // {
|
|
2096
|
+
* // InputChannels: [
|
|
2097
|
+
* // Number("int"),
|
|
2098
|
+
* // ],
|
|
2099
|
+
* // InputChannelsFineTune: [
|
|
2100
|
+
* // Number("double"),
|
|
2101
|
+
* // ],
|
|
2102
|
+
* // },
|
|
2103
|
+
* // ],
|
|
2104
|
+
* // },
|
|
2105
|
+
* // ChannelsIn: Number("int"),
|
|
2106
|
+
* // ChannelsOut: Number("int"),
|
|
2107
|
+
* // },
|
|
2108
|
+
* // StreamName: "STRING_VALUE",
|
|
2109
|
+
* // },
|
|
2110
|
+
* // ],
|
|
2111
|
+
* // CaptionDescriptions: [ // __listOfCaptionDescription
|
|
2112
|
+
* // { // CaptionDescription
|
|
2113
|
+
* // CaptionSelectorName: "STRING_VALUE",
|
|
2114
|
+
* // CustomLanguageCode: "STRING_VALUE",
|
|
2115
|
+
* // DestinationSettings: { // CaptionDestinationSettings
|
|
2116
|
+
* // BurninDestinationSettings: { // BurninDestinationSettings
|
|
2117
|
+
* // Alignment: "CENTERED" || "LEFT" || "AUTO",
|
|
2118
|
+
* // ApplyFontColor: "WHITE_TEXT_ONLY" || "ALL_TEXT",
|
|
2119
|
+
* // BackgroundColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
2120
|
+
* // BackgroundOpacity: Number("int"),
|
|
2121
|
+
* // FallbackFont: "BEST_MATCH" || "MONOSPACED_SANSSERIF" || "MONOSPACED_SERIF" || "PROPORTIONAL_SANSSERIF" || "PROPORTIONAL_SERIF",
|
|
2122
|
+
* // FontColor: "WHITE" || "BLACK" || "YELLOW" || "RED" || "GREEN" || "BLUE" || "HEX" || "AUTO",
|
|
2123
|
+
* // FontOpacity: Number("int"),
|
|
2124
|
+
* // FontResolution: Number("int"),
|
|
2125
|
+
* // FontScript: "AUTOMATIC" || "HANS" || "HANT",
|
|
2126
|
+
* // FontSize: Number("int"),
|
|
2127
|
+
* // HexFontColor: "STRING_VALUE",
|
|
2128
|
+
* // OutlineColor: "BLACK" || "WHITE" || "YELLOW" || "RED" || "GREEN" || "BLUE" || "AUTO",
|
|
2129
|
+
* // OutlineSize: Number("int"),
|
|
2130
|
+
* // ShadowColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
2131
|
+
* // ShadowOpacity: Number("int"),
|
|
2132
|
+
* // ShadowXOffset: Number("int"),
|
|
2133
|
+
* // ShadowYOffset: Number("int"),
|
|
2134
|
+
* // StylePassthrough: "ENABLED" || "DISABLED",
|
|
2135
|
+
* // TeletextSpacing: "FIXED_GRID" || "PROPORTIONAL" || "AUTO",
|
|
2136
|
+
* // XPosition: Number("int"),
|
|
2137
|
+
* // YPosition: Number("int"),
|
|
2138
|
+
* // },
|
|
2139
|
+
* // DestinationType: "BURN_IN" || "DVB_SUB" || "EMBEDDED" || "EMBEDDED_PLUS_SCTE20" || "IMSC" || "SCTE20_PLUS_EMBEDDED" || "SCC" || "SRT" || "SMI" || "TELETEXT" || "TTML" || "WEBVTT",
|
|
2140
|
+
* // DvbSubDestinationSettings: { // DvbSubDestinationSettings
|
|
2141
|
+
* // Alignment: "CENTERED" || "LEFT" || "AUTO",
|
|
2142
|
+
* // ApplyFontColor: "WHITE_TEXT_ONLY" || "ALL_TEXT",
|
|
2143
|
+
* // BackgroundColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
2144
|
+
* // BackgroundOpacity: Number("int"),
|
|
2145
|
+
* // DdsHandling: "NONE" || "SPECIFIED" || "NO_DISPLAY_WINDOW",
|
|
2146
|
+
* // DdsXCoordinate: Number("int"),
|
|
2147
|
+
* // DdsYCoordinate: Number("int"),
|
|
2148
|
+
* // FallbackFont: "BEST_MATCH" || "MONOSPACED_SANSSERIF" || "MONOSPACED_SERIF" || "PROPORTIONAL_SANSSERIF" || "PROPORTIONAL_SERIF",
|
|
2149
|
+
* // FontColor: "WHITE" || "BLACK" || "YELLOW" || "RED" || "GREEN" || "BLUE" || "HEX" || "AUTO",
|
|
2150
|
+
* // FontOpacity: Number("int"),
|
|
2151
|
+
* // FontResolution: Number("int"),
|
|
2152
|
+
* // FontScript: "AUTOMATIC" || "HANS" || "HANT",
|
|
2153
|
+
* // FontSize: Number("int"),
|
|
2154
|
+
* // Height: Number("int"),
|
|
2155
|
+
* // HexFontColor: "STRING_VALUE",
|
|
2156
|
+
* // OutlineColor: "BLACK" || "WHITE" || "YELLOW" || "RED" || "GREEN" || "BLUE" || "AUTO",
|
|
2157
|
+
* // OutlineSize: Number("int"),
|
|
2158
|
+
* // ShadowColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
2159
|
+
* // ShadowOpacity: Number("int"),
|
|
2160
|
+
* // ShadowXOffset: Number("int"),
|
|
2161
|
+
* // ShadowYOffset: Number("int"),
|
|
2162
|
+
* // StylePassthrough: "ENABLED" || "DISABLED",
|
|
2163
|
+
* // SubtitlingType: "HEARING_IMPAIRED" || "STANDARD",
|
|
2164
|
+
* // TeletextSpacing: "FIXED_GRID" || "PROPORTIONAL" || "AUTO",
|
|
2165
|
+
* // Width: Number("int"),
|
|
2166
|
+
* // XPosition: Number("int"),
|
|
2167
|
+
* // YPosition: Number("int"),
|
|
2168
|
+
* // },
|
|
2169
|
+
* // EmbeddedDestinationSettings: { // EmbeddedDestinationSettings
|
|
2170
|
+
* // Destination608ChannelNumber: Number("int"),
|
|
2171
|
+
* // Destination708ServiceNumber: Number("int"),
|
|
2172
|
+
* // },
|
|
2173
|
+
* // ImscDestinationSettings: { // ImscDestinationSettings
|
|
2174
|
+
* // Accessibility: "DISABLED" || "ENABLED",
|
|
2175
|
+
* // StylePassthrough: "ENABLED" || "DISABLED",
|
|
2176
|
+
* // },
|
|
2177
|
+
* // SccDestinationSettings: { // SccDestinationSettings
|
|
2178
|
+
* // Framerate: "FRAMERATE_23_97" || "FRAMERATE_24" || "FRAMERATE_25" || "FRAMERATE_29_97_DROPFRAME" || "FRAMERATE_29_97_NON_DROPFRAME",
|
|
2179
|
+
* // },
|
|
2180
|
+
* // SrtDestinationSettings: { // SrtDestinationSettings
|
|
2181
|
+
* // StylePassthrough: "ENABLED" || "DISABLED",
|
|
2182
|
+
* // },
|
|
2183
|
+
* // TeletextDestinationSettings: { // TeletextDestinationSettings
|
|
2184
|
+
* // PageNumber: "STRING_VALUE",
|
|
2185
|
+
* // PageTypes: [ // __listOfTeletextPageType
|
|
2186
|
+
* // "PAGE_TYPE_INITIAL" || "PAGE_TYPE_SUBTITLE" || "PAGE_TYPE_ADDL_INFO" || "PAGE_TYPE_PROGRAM_SCHEDULE" || "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE",
|
|
2187
|
+
* // ],
|
|
2188
|
+
* // },
|
|
2189
|
+
* // TtmlDestinationSettings: { // TtmlDestinationSettings
|
|
2190
|
+
* // StylePassthrough: "ENABLED" || "DISABLED",
|
|
2191
|
+
* // },
|
|
2192
|
+
* // WebvttDestinationSettings: { // WebvttDestinationSettings
|
|
2193
|
+
* // Accessibility: "DISABLED" || "ENABLED",
|
|
2194
|
+
* // StylePassthrough: "ENABLED" || "DISABLED" || "STRICT",
|
|
2195
|
+
* // },
|
|
2196
|
+
* // },
|
|
2197
|
+
* // LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
2198
|
+
* // LanguageDescription: "STRING_VALUE",
|
|
2199
|
+
* // },
|
|
2200
|
+
* // ],
|
|
2201
|
+
* // ContainerSettings: { // ContainerSettings
|
|
2202
|
+
* // CmfcSettings: { // CmfcSettings
|
|
2203
|
+
* // AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
2204
|
+
* // AudioGroupId: "STRING_VALUE",
|
|
2205
|
+
* // AudioRenditionSets: "STRING_VALUE",
|
|
2206
|
+
* // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT",
|
|
2207
|
+
* // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
|
|
2208
|
+
* // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
|
|
2209
|
+
* // KlvMetadata: "PASSTHROUGH" || "NONE",
|
|
2210
|
+
* // ManifestMetadataSignaling: "ENABLED" || "DISABLED",
|
|
2211
|
+
* // Scte35Esam: "INSERT" || "NONE",
|
|
2212
|
+
* // Scte35Source: "PASSTHROUGH" || "NONE",
|
|
2213
|
+
* // TimedMetadata: "PASSTHROUGH" || "NONE",
|
|
2214
|
+
* // TimedMetadataBoxVersion: "VERSION_0" || "VERSION_1",
|
|
2215
|
+
* // TimedMetadataSchemeIdUri: "STRING_VALUE",
|
|
2216
|
+
* // TimedMetadataValue: "STRING_VALUE",
|
|
2217
|
+
* // },
|
|
2218
|
+
* // Container: "F4V" || "ISMV" || "M2TS" || "M3U8" || "CMFC" || "MOV" || "MP4" || "MPD" || "MXF" || "WEBM" || "RAW",
|
|
2219
|
+
* // F4vSettings: { // F4vSettings
|
|
2220
|
+
* // MoovPlacement: "PROGRESSIVE_DOWNLOAD" || "NORMAL",
|
|
2221
|
+
* // },
|
|
2222
|
+
* // M2tsSettings: { // M2tsSettings
|
|
2223
|
+
* // AudioBufferModel: "DVB" || "ATSC",
|
|
2224
|
+
* // AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
2225
|
+
* // AudioFramesPerPes: Number("int"),
|
|
2226
|
+
* // AudioPids: [ // __listOf__integerMin32Max8182
|
|
2227
|
+
* // Number("int"),
|
|
2228
|
+
* // ],
|
|
2229
|
+
* // Bitrate: Number("int"),
|
|
2230
|
+
* // BufferModel: "MULTIPLEX" || "NONE",
|
|
2231
|
+
* // DataPTSControl: "AUTO" || "ALIGN_TO_VIDEO",
|
|
2232
|
+
* // DvbNitSettings: { // DvbNitSettings
|
|
2233
|
+
* // NetworkId: Number("int"),
|
|
2234
|
+
* // NetworkName: "STRING_VALUE",
|
|
2235
|
+
* // NitInterval: Number("int"),
|
|
2236
|
+
* // },
|
|
2237
|
+
* // DvbSdtSettings: { // DvbSdtSettings
|
|
2238
|
+
* // OutputSdt: "SDT_FOLLOW" || "SDT_FOLLOW_IF_PRESENT" || "SDT_MANUAL" || "SDT_NONE",
|
|
2239
|
+
* // SdtInterval: Number("int"),
|
|
2240
|
+
* // ServiceName: "STRING_VALUE",
|
|
2241
|
+
* // ServiceProviderName: "STRING_VALUE",
|
|
2242
|
+
* // },
|
|
2243
|
+
* // DvbSubPids: [
|
|
2244
|
+
* // Number("int"),
|
|
2245
|
+
* // ],
|
|
2246
|
+
* // DvbTdtSettings: { // DvbTdtSettings
|
|
2247
|
+
* // TdtInterval: Number("int"),
|
|
2248
|
+
* // },
|
|
2249
|
+
* // DvbTeletextPid: Number("int"),
|
|
2250
|
+
* // EbpAudioInterval: "VIDEO_AND_FIXED_INTERVALS" || "VIDEO_INTERVAL",
|
|
2251
|
+
* // EbpPlacement: "VIDEO_AND_AUDIO_PIDS" || "VIDEO_PID",
|
|
2252
|
+
* // EsRateInPes: "INCLUDE" || "EXCLUDE",
|
|
2253
|
+
* // ForceTsVideoEbpOrder: "FORCE" || "DEFAULT",
|
|
2254
|
+
* // FragmentTime: Number("double"),
|
|
2255
|
+
* // KlvMetadata: "PASSTHROUGH" || "NONE",
|
|
2256
|
+
* // MaxPcrInterval: Number("int"),
|
|
2257
|
+
* // MinEbpInterval: Number("int"),
|
|
2258
|
+
* // NielsenId3: "INSERT" || "NONE",
|
|
2259
|
+
* // NullPacketBitrate: Number("double"),
|
|
2260
|
+
* // PatInterval: Number("int"),
|
|
2261
|
+
* // PcrControl: "PCR_EVERY_PES_PACKET" || "CONFIGURED_PCR_PERIOD",
|
|
2262
|
+
* // PcrPid: Number("int"),
|
|
2263
|
+
* // PmtInterval: Number("int"),
|
|
2264
|
+
* // PmtPid: Number("int"),
|
|
2265
|
+
* // PrivateMetadataPid: Number("int"),
|
|
2266
|
+
* // ProgramNumber: Number("int"),
|
|
2267
|
+
* // RateMode: "VBR" || "CBR",
|
|
2268
|
+
* // Scte35Esam: { // M2tsScte35Esam
|
|
2269
|
+
* // Scte35EsamPid: Number("int"),
|
|
2270
|
+
* // },
|
|
2271
|
+
* // Scte35Pid: Number("int"),
|
|
2272
|
+
* // Scte35Source: "PASSTHROUGH" || "NONE",
|
|
2273
|
+
* // SegmentationMarkers: "NONE" || "RAI_SEGSTART" || "RAI_ADAPT" || "PSI_SEGSTART" || "EBP" || "EBP_LEGACY",
|
|
2274
|
+
* // SegmentationStyle: "MAINTAIN_CADENCE" || "RESET_CADENCE",
|
|
2275
|
+
* // SegmentationTime: Number("double"),
|
|
2276
|
+
* // TimedMetadataPid: Number("int"),
|
|
2277
|
+
* // TransportStreamId: Number("int"),
|
|
2278
|
+
* // VideoPid: Number("int"),
|
|
2279
|
+
* // },
|
|
2280
|
+
* // M3u8Settings: { // M3u8Settings
|
|
2281
|
+
* // AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
2282
|
+
* // AudioFramesPerPes: Number("int"),
|
|
2283
|
+
* // AudioPids: [
|
|
2284
|
+
* // Number("int"),
|
|
2285
|
+
* // ],
|
|
2286
|
+
* // DataPTSControl: "AUTO" || "ALIGN_TO_VIDEO",
|
|
2287
|
+
* // MaxPcrInterval: Number("int"),
|
|
2288
|
+
* // NielsenId3: "INSERT" || "NONE",
|
|
2289
|
+
* // PatInterval: Number("int"),
|
|
2290
|
+
* // PcrControl: "PCR_EVERY_PES_PACKET" || "CONFIGURED_PCR_PERIOD",
|
|
2291
|
+
* // PcrPid: Number("int"),
|
|
2292
|
+
* // PmtInterval: Number("int"),
|
|
2293
|
+
* // PmtPid: Number("int"),
|
|
2294
|
+
* // PrivateMetadataPid: Number("int"),
|
|
2295
|
+
* // ProgramNumber: Number("int"),
|
|
2296
|
+
* // Scte35Pid: Number("int"),
|
|
2297
|
+
* // Scte35Source: "PASSTHROUGH" || "NONE",
|
|
2298
|
+
* // TimedMetadata: "PASSTHROUGH" || "NONE",
|
|
2299
|
+
* // TimedMetadataPid: Number("int"),
|
|
2300
|
+
* // TransportStreamId: Number("int"),
|
|
2301
|
+
* // VideoPid: Number("int"),
|
|
2302
|
+
* // },
|
|
2303
|
+
* // MovSettings: { // MovSettings
|
|
2304
|
+
* // ClapAtom: "INCLUDE" || "EXCLUDE",
|
|
2305
|
+
* // CslgAtom: "INCLUDE" || "EXCLUDE",
|
|
2306
|
+
* // Mpeg2FourCCControl: "XDCAM" || "MPEG",
|
|
2307
|
+
* // PaddingControl: "OMNEON" || "NONE",
|
|
2308
|
+
* // Reference: "SELF_CONTAINED" || "EXTERNAL",
|
|
2309
|
+
* // },
|
|
2310
|
+
* // Mp4Settings: { // Mp4Settings
|
|
2311
|
+
* // AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
2312
|
+
* // CslgAtom: "INCLUDE" || "EXCLUDE",
|
|
2313
|
+
* // CttsVersion: Number("int"),
|
|
2314
|
+
* // FreeSpaceBox: "INCLUDE" || "EXCLUDE",
|
|
2315
|
+
* // MoovPlacement: "PROGRESSIVE_DOWNLOAD" || "NORMAL",
|
|
2316
|
+
* // Mp4MajorBrand: "STRING_VALUE",
|
|
2317
|
+
* // },
|
|
2318
|
+
* // MpdSettings: { // MpdSettings
|
|
2319
|
+
* // AccessibilityCaptionHints: "INCLUDE" || "EXCLUDE",
|
|
2320
|
+
* // AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
2321
|
+
* // CaptionContainerType: "RAW" || "FRAGMENTED_MP4",
|
|
2322
|
+
* // KlvMetadata: "NONE" || "PASSTHROUGH",
|
|
2323
|
+
* // ManifestMetadataSignaling: "ENABLED" || "DISABLED",
|
|
2324
|
+
* // Scte35Esam: "INSERT" || "NONE",
|
|
2325
|
+
* // Scte35Source: "PASSTHROUGH" || "NONE",
|
|
2326
|
+
* // TimedMetadata: "PASSTHROUGH" || "NONE",
|
|
2327
|
+
* // TimedMetadataBoxVersion: "VERSION_0" || "VERSION_1",
|
|
2328
|
+
* // TimedMetadataSchemeIdUri: "STRING_VALUE",
|
|
2329
|
+
* // TimedMetadataValue: "STRING_VALUE",
|
|
2330
|
+
* // },
|
|
2331
|
+
* // MxfSettings: { // MxfSettings
|
|
2332
|
+
* // AfdSignaling: "NO_COPY" || "COPY_FROM_VIDEO",
|
|
2333
|
+
* // Profile: "D_10" || "XDCAM" || "OP1A" || "XAVC",
|
|
2334
|
+
* // XavcProfileSettings: { // MxfXavcProfileSettings
|
|
2335
|
+
* // DurationMode: "ALLOW_ANY_DURATION" || "DROP_FRAMES_FOR_COMPLIANCE",
|
|
2336
|
+
* // MaxAncDataSize: Number("int"),
|
|
2337
|
+
* // },
|
|
2338
|
+
* // },
|
|
2339
|
+
* // },
|
|
2340
|
+
* // Extension: "STRING_VALUE",
|
|
2341
|
+
* // NameModifier: "STRING_VALUE",
|
|
2342
|
+
* // OutputSettings: { // OutputSettings
|
|
2343
|
+
* // HlsSettings: { // HlsSettings
|
|
2344
|
+
* // AudioGroupId: "STRING_VALUE",
|
|
2345
|
+
* // AudioOnlyContainer: "AUTOMATIC" || "M2TS",
|
|
2346
|
+
* // AudioRenditionSets: "STRING_VALUE",
|
|
2347
|
+
* // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
|
|
2348
|
+
* // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
|
|
2349
|
+
* // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
|
|
2350
|
+
* // SegmentModifier: "STRING_VALUE",
|
|
2351
|
+
* // },
|
|
2352
|
+
* // },
|
|
2353
|
+
* // Preset: "STRING_VALUE",
|
|
2354
|
+
* // VideoDescription: { // VideoDescription
|
|
2355
|
+
* // AfdSignaling: "NONE" || "AUTO" || "FIXED",
|
|
2356
|
+
* // AntiAlias: "DISABLED" || "ENABLED",
|
|
2357
|
+
* // CodecSettings: { // VideoCodecSettings
|
|
2358
|
+
* // Av1Settings: { // Av1Settings
|
|
2359
|
+
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
2360
|
+
* // BitDepth: "BIT_8" || "BIT_10",
|
|
2361
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2362
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2363
|
+
* // FramerateDenominator: Number("int"),
|
|
2364
|
+
* // FramerateNumerator: Number("int"),
|
|
2365
|
+
* // GopSize: Number("double"),
|
|
2366
|
+
* // MaxBitrate: Number("int"),
|
|
2367
|
+
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
2368
|
+
* // QvbrSettings: { // Av1QvbrSettings
|
|
2369
|
+
* // QvbrQualityLevel: Number("int"),
|
|
2370
|
+
* // QvbrQualityLevelFineTune: Number("double"),
|
|
2371
|
+
* // },
|
|
2372
|
+
* // RateControlMode: "QVBR",
|
|
2373
|
+
* // Slices: Number("int"),
|
|
2374
|
+
* // SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2375
|
+
* // },
|
|
2376
|
+
* // AvcIntraSettings: { // AvcIntraSettings
|
|
2377
|
+
* // AvcIntraClass: "CLASS_50" || "CLASS_100" || "CLASS_200" || "CLASS_4K_2K",
|
|
2378
|
+
* // AvcIntraUhdSettings: { // AvcIntraUhdSettings
|
|
2379
|
+
* // QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
|
|
2380
|
+
* // },
|
|
2381
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2382
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2383
|
+
* // FramerateDenominator: Number("int"),
|
|
2384
|
+
* // FramerateNumerator: Number("int"),
|
|
2385
|
+
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
2386
|
+
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
2387
|
+
* // SlowPal: "DISABLED" || "ENABLED",
|
|
2388
|
+
* // Telecine: "NONE" || "HARD",
|
|
2389
|
+
* // },
|
|
2390
|
+
* // Codec: "AV1" || "AVC_INTRA" || "FRAME_CAPTURE" || "H_264" || "H_265" || "MPEG2" || "PASSTHROUGH" || "PRORES" || "VC3" || "VP8" || "VP9" || "XAVC",
|
|
2391
|
+
* // FrameCaptureSettings: { // FrameCaptureSettings
|
|
2392
|
+
* // FramerateDenominator: Number("int"),
|
|
2393
|
+
* // FramerateNumerator: Number("int"),
|
|
2394
|
+
* // MaxCaptures: Number("int"),
|
|
2395
|
+
* // Quality: Number("int"),
|
|
2396
|
+
* // },
|
|
2397
|
+
* // H264Settings: { // H264Settings
|
|
2398
|
+
* // AdaptiveQuantization: "OFF" || "AUTO" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
2399
|
+
* // BandwidthReductionFilter: { // BandwidthReductionFilter
|
|
2400
|
+
* // Sharpening: "LOW" || "MEDIUM" || "HIGH" || "OFF",
|
|
2401
|
+
* // Strength: "LOW" || "MEDIUM" || "HIGH" || "AUTO" || "OFF",
|
|
2402
|
+
* // },
|
|
2403
|
+
* // Bitrate: Number("int"),
|
|
2404
|
+
* // CodecLevel: "AUTO" || "LEVEL_1" || "LEVEL_1_1" || "LEVEL_1_2" || "LEVEL_1_3" || "LEVEL_2" || "LEVEL_2_1" || "LEVEL_2_2" || "LEVEL_3" || "LEVEL_3_1" || "LEVEL_3_2" || "LEVEL_4" || "LEVEL_4_1" || "LEVEL_4_2" || "LEVEL_5" || "LEVEL_5_1" || "LEVEL_5_2",
|
|
2405
|
+
* // CodecProfile: "BASELINE" || "HIGH" || "HIGH_10BIT" || "HIGH_422" || "HIGH_422_10BIT" || "MAIN",
|
|
2406
|
+
* // DynamicSubGop: "ADAPTIVE" || "STATIC",
|
|
2407
|
+
* // EntropyEncoding: "CABAC" || "CAVLC",
|
|
2408
|
+
* // FieldEncoding: "PAFF" || "FORCE_FIELD" || "MBAFF",
|
|
2409
|
+
* // FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2410
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2411
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2412
|
+
* // FramerateDenominator: Number("int"),
|
|
2413
|
+
* // FramerateNumerator: Number("int"),
|
|
2414
|
+
* // GopBReference: "DISABLED" || "ENABLED",
|
|
2415
|
+
* // GopClosedCadence: Number("int"),
|
|
2416
|
+
* // GopSize: Number("double"),
|
|
2417
|
+
* // GopSizeUnits: "FRAMES" || "SECONDS" || "AUTO",
|
|
2418
|
+
* // HrdBufferFinalFillPercentage: Number("int"),
|
|
2419
|
+
* // HrdBufferInitialFillPercentage: Number("int"),
|
|
2420
|
+
* // HrdBufferSize: Number("int"),
|
|
2421
|
+
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
2422
|
+
* // MaxBitrate: Number("int"),
|
|
2423
|
+
* // MinIInterval: Number("int"),
|
|
2424
|
+
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
2425
|
+
* // NumberReferenceFrames: Number("int"),
|
|
2426
|
+
* // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2427
|
+
* // ParDenominator: Number("int"),
|
|
2428
|
+
* // ParNumerator: Number("int"),
|
|
2429
|
+
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
2430
|
+
* // QvbrSettings: { // H264QvbrSettings
|
|
2431
|
+
* // MaxAverageBitrate: Number("int"),
|
|
2432
|
+
* // QvbrQualityLevel: Number("int"),
|
|
2433
|
+
* // QvbrQualityLevelFineTune: Number("double"),
|
|
2434
|
+
* // },
|
|
2435
|
+
* // RateControlMode: "VBR" || "CBR" || "QVBR",
|
|
2436
|
+
* // RepeatPps: "DISABLED" || "ENABLED",
|
|
2437
|
+
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
2438
|
+
* // SceneChangeDetect: "DISABLED" || "ENABLED" || "TRANSITION_DETECTION",
|
|
2439
|
+
* // Slices: Number("int"),
|
|
2440
|
+
* // SlowPal: "DISABLED" || "ENABLED",
|
|
2441
|
+
* // Softness: Number("int"),
|
|
2442
|
+
* // SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2443
|
+
* // Syntax: "DEFAULT" || "RP2027",
|
|
2444
|
+
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
2445
|
+
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2446
|
+
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
2447
|
+
* // },
|
|
2448
|
+
* // H265Settings: { // H265Settings
|
|
2449
|
+
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
2450
|
+
* // AlternateTransferFunctionSei: "DISABLED" || "ENABLED",
|
|
2451
|
+
* // Bitrate: Number("int"),
|
|
2452
|
+
* // CodecLevel: "AUTO" || "LEVEL_1" || "LEVEL_2" || "LEVEL_2_1" || "LEVEL_3" || "LEVEL_3_1" || "LEVEL_4" || "LEVEL_4_1" || "LEVEL_5" || "LEVEL_5_1" || "LEVEL_5_2" || "LEVEL_6" || "LEVEL_6_1" || "LEVEL_6_2",
|
|
2453
|
+
* // CodecProfile: "MAIN_MAIN" || "MAIN_HIGH" || "MAIN10_MAIN" || "MAIN10_HIGH" || "MAIN_422_8BIT_MAIN" || "MAIN_422_8BIT_HIGH" || "MAIN_422_10BIT_MAIN" || "MAIN_422_10BIT_HIGH",
|
|
2454
|
+
* // DynamicSubGop: "ADAPTIVE" || "STATIC",
|
|
2455
|
+
* // FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2456
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2457
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2458
|
+
* // FramerateDenominator: Number("int"),
|
|
2459
|
+
* // FramerateNumerator: Number("int"),
|
|
2460
|
+
* // GopBReference: "DISABLED" || "ENABLED",
|
|
2461
|
+
* // GopClosedCadence: Number("int"),
|
|
2462
|
+
* // GopSize: Number("double"),
|
|
2463
|
+
* // GopSizeUnits: "FRAMES" || "SECONDS" || "AUTO",
|
|
2464
|
+
* // HrdBufferFinalFillPercentage: Number("int"),
|
|
2465
|
+
* // HrdBufferInitialFillPercentage: Number("int"),
|
|
2466
|
+
* // HrdBufferSize: Number("int"),
|
|
2467
|
+
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
2468
|
+
* // MaxBitrate: Number("int"),
|
|
2469
|
+
* // MinIInterval: Number("int"),
|
|
2470
|
+
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
2471
|
+
* // NumberReferenceFrames: Number("int"),
|
|
2472
|
+
* // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2473
|
+
* // ParDenominator: Number("int"),
|
|
2474
|
+
* // ParNumerator: Number("int"),
|
|
2475
|
+
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
2476
|
+
* // QvbrSettings: { // H265QvbrSettings
|
|
2477
|
+
* // MaxAverageBitrate: Number("int"),
|
|
2478
|
+
* // QvbrQualityLevel: Number("int"),
|
|
2479
|
+
* // QvbrQualityLevelFineTune: Number("double"),
|
|
2480
|
+
* // },
|
|
2481
|
+
* // RateControlMode: "VBR" || "CBR" || "QVBR",
|
|
2482
|
+
* // SampleAdaptiveOffsetFilterMode: "DEFAULT" || "ADAPTIVE" || "OFF",
|
|
2483
|
+
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
2484
|
+
* // SceneChangeDetect: "DISABLED" || "ENABLED" || "TRANSITION_DETECTION",
|
|
2485
|
+
* // Slices: Number("int"),
|
|
2486
|
+
* // SlowPal: "DISABLED" || "ENABLED",
|
|
2487
|
+
* // SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2488
|
+
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
2489
|
+
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2490
|
+
* // TemporalIds: "DISABLED" || "ENABLED",
|
|
2491
|
+
* // Tiles: "DISABLED" || "ENABLED",
|
|
2492
|
+
* // UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
2493
|
+
* // WriteMp4PackagingType: "HVC1" || "HEV1",
|
|
2494
|
+
* // },
|
|
2495
|
+
* // Mpeg2Settings: { // Mpeg2Settings
|
|
2496
|
+
* // AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH",
|
|
2497
|
+
* // Bitrate: Number("int"),
|
|
2498
|
+
* // CodecLevel: "AUTO" || "LOW" || "MAIN" || "HIGH1440" || "HIGH",
|
|
2499
|
+
* // CodecProfile: "MAIN" || "PROFILE_422",
|
|
2500
|
+
* // DynamicSubGop: "ADAPTIVE" || "STATIC",
|
|
2501
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2502
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2503
|
+
* // FramerateDenominator: Number("int"),
|
|
2504
|
+
* // FramerateNumerator: Number("int"),
|
|
2505
|
+
* // GopClosedCadence: Number("int"),
|
|
2506
|
+
* // GopSize: Number("double"),
|
|
2507
|
+
* // GopSizeUnits: "FRAMES" || "SECONDS",
|
|
2508
|
+
* // HrdBufferFinalFillPercentage: Number("int"),
|
|
2509
|
+
* // HrdBufferInitialFillPercentage: Number("int"),
|
|
2510
|
+
* // HrdBufferSize: Number("int"),
|
|
2511
|
+
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
2512
|
+
* // IntraDcPrecision: "AUTO" || "INTRA_DC_PRECISION_8" || "INTRA_DC_PRECISION_9" || "INTRA_DC_PRECISION_10" || "INTRA_DC_PRECISION_11",
|
|
2513
|
+
* // MaxBitrate: Number("int"),
|
|
2514
|
+
* // MinIInterval: Number("int"),
|
|
2515
|
+
* // NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
2516
|
+
* // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2517
|
+
* // ParDenominator: Number("int"),
|
|
2518
|
+
* // ParNumerator: Number("int"),
|
|
2519
|
+
* // QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
|
|
2520
|
+
* // RateControlMode: "VBR" || "CBR",
|
|
2521
|
+
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
2522
|
+
* // SceneChangeDetect: "DISABLED" || "ENABLED",
|
|
2523
|
+
* // SlowPal: "DISABLED" || "ENABLED",
|
|
2524
|
+
* // Softness: Number("int"),
|
|
2525
|
+
* // SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2526
|
+
* // Syntax: "DEFAULT" || "D_10",
|
|
2527
|
+
* // Telecine: "NONE" || "SOFT" || "HARD",
|
|
2528
|
+
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2529
|
+
* // },
|
|
2530
|
+
* // ProresSettings: { // ProresSettings
|
|
2531
|
+
* // ChromaSampling: "PRESERVE_444_SAMPLING" || "SUBSAMPLE_TO_422",
|
|
2532
|
+
* // CodecProfile: "APPLE_PRORES_422" || "APPLE_PRORES_422_HQ" || "APPLE_PRORES_422_LT" || "APPLE_PRORES_422_PROXY" || "APPLE_PRORES_4444" || "APPLE_PRORES_4444_XQ",
|
|
2533
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2534
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2535
|
+
* // FramerateDenominator: Number("int"),
|
|
2536
|
+
* // FramerateNumerator: Number("int"),
|
|
2537
|
+
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
2538
|
+
* // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2539
|
+
* // ParDenominator: Number("int"),
|
|
2540
|
+
* // ParNumerator: Number("int"),
|
|
2541
|
+
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
2542
|
+
* // SlowPal: "DISABLED" || "ENABLED",
|
|
2543
|
+
* // Telecine: "NONE" || "HARD",
|
|
2544
|
+
* // },
|
|
2545
|
+
* // Vc3Settings: { // Vc3Settings
|
|
2546
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2547
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2548
|
+
* // FramerateDenominator: Number("int"),
|
|
2549
|
+
* // FramerateNumerator: Number("int"),
|
|
2550
|
+
* // InterlaceMode: "INTERLACED" || "PROGRESSIVE",
|
|
2551
|
+
* // ScanTypeConversionMode: "INTERLACED" || "INTERLACED_OPTIMIZE",
|
|
2552
|
+
* // SlowPal: "DISABLED" || "ENABLED",
|
|
2553
|
+
* // Telecine: "NONE" || "HARD",
|
|
2554
|
+
* // Vc3Class: "CLASS_145_8BIT" || "CLASS_220_8BIT" || "CLASS_220_10BIT",
|
|
2555
|
+
* // },
|
|
2556
|
+
* // Vp8Settings: { // Vp8Settings
|
|
2557
|
+
* // Bitrate: Number("int"),
|
|
2558
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2559
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2560
|
+
* // FramerateDenominator: Number("int"),
|
|
2561
|
+
* // FramerateNumerator: Number("int"),
|
|
2562
|
+
* // GopSize: Number("double"),
|
|
2563
|
+
* // HrdBufferSize: Number("int"),
|
|
2564
|
+
* // MaxBitrate: Number("int"),
|
|
2565
|
+
* // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2566
|
+
* // ParDenominator: Number("int"),
|
|
2567
|
+
* // ParNumerator: Number("int"),
|
|
2568
|
+
* // QualityTuningLevel: "MULTI_PASS" || "MULTI_PASS_HQ",
|
|
2569
|
+
* // RateControlMode: "VBR",
|
|
2570
|
+
* // },
|
|
2571
|
+
* // Vp9Settings: { // Vp9Settings
|
|
2572
|
+
* // Bitrate: Number("int"),
|
|
2573
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2574
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2575
|
+
* // FramerateDenominator: Number("int"),
|
|
2576
|
+
* // FramerateNumerator: Number("int"),
|
|
2577
|
+
* // GopSize: Number("double"),
|
|
2578
|
+
* // HrdBufferSize: Number("int"),
|
|
2579
|
+
* // MaxBitrate: Number("int"),
|
|
2580
|
+
* // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2581
|
+
* // ParDenominator: Number("int"),
|
|
2582
|
+
* // ParNumerator: Number("int"),
|
|
2583
|
+
* // QualityTuningLevel: "MULTI_PASS" || "MULTI_PASS_HQ",
|
|
2584
|
+
* // RateControlMode: "VBR",
|
|
2585
|
+
* // },
|
|
2586
|
+
* // XavcSettings: { // XavcSettings
|
|
2587
|
+
* // AdaptiveQuantization: "OFF" || "AUTO" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
2588
|
+
* // EntropyEncoding: "AUTO" || "CABAC" || "CAVLC",
|
|
2589
|
+
* // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
2590
|
+
* // FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
2591
|
+
* // FramerateDenominator: Number("int"),
|
|
2592
|
+
* // FramerateNumerator: Number("int"),
|
|
2593
|
+
* // Profile: "XAVC_HD_INTRA_CBG" || "XAVC_4K_INTRA_CBG" || "XAVC_4K_INTRA_VBR" || "XAVC_HD" || "XAVC_4K",
|
|
2594
|
+
* // SlowPal: "DISABLED" || "ENABLED",
|
|
2595
|
+
* // Softness: Number("int"),
|
|
2596
|
+
* // SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2597
|
+
* // TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2598
|
+
* // Xavc4kIntraCbgProfileSettings: { // Xavc4kIntraCbgProfileSettings
|
|
2599
|
+
* // XavcClass: "CLASS_100" || "CLASS_300" || "CLASS_480",
|
|
2600
|
+
* // },
|
|
2601
|
+
* // Xavc4kIntraVbrProfileSettings: { // Xavc4kIntraVbrProfileSettings
|
|
2602
|
+
* // XavcClass: "CLASS_100" || "CLASS_300" || "CLASS_480",
|
|
2603
|
+
* // },
|
|
2604
|
+
* // Xavc4kProfileSettings: { // Xavc4kProfileSettings
|
|
2605
|
+
* // BitrateClass: "BITRATE_CLASS_100" || "BITRATE_CLASS_140" || "BITRATE_CLASS_200",
|
|
2606
|
+
* // CodecProfile: "HIGH" || "HIGH_422",
|
|
2607
|
+
* // FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2608
|
+
* // GopBReference: "DISABLED" || "ENABLED",
|
|
2609
|
+
* // GopClosedCadence: Number("int"),
|
|
2610
|
+
* // HrdBufferSize: Number("int"),
|
|
2611
|
+
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
2612
|
+
* // Slices: Number("int"),
|
|
2613
|
+
* // },
|
|
2614
|
+
* // XavcHdIntraCbgProfileSettings: { // XavcHdIntraCbgProfileSettings
|
|
2615
|
+
* // XavcClass: "CLASS_50" || "CLASS_100" || "CLASS_200",
|
|
2616
|
+
* // },
|
|
2617
|
+
* // XavcHdProfileSettings: { // XavcHdProfileSettings
|
|
2618
|
+
* // BitrateClass: "BITRATE_CLASS_25" || "BITRATE_CLASS_35" || "BITRATE_CLASS_50",
|
|
2619
|
+
* // FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
2620
|
+
* // GopBReference: "DISABLED" || "ENABLED",
|
|
2621
|
+
* // GopClosedCadence: Number("int"),
|
|
2622
|
+
* // HrdBufferSize: Number("int"),
|
|
2623
|
+
* // InterlaceMode: "PROGRESSIVE" || "TOP_FIELD" || "BOTTOM_FIELD" || "FOLLOW_TOP_FIELD" || "FOLLOW_BOTTOM_FIELD",
|
|
2624
|
+
* // QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
2625
|
+
* // Slices: Number("int"),
|
|
2626
|
+
* // Telecine: "NONE" || "HARD",
|
|
2627
|
+
* // },
|
|
2628
|
+
* // },
|
|
2629
|
+
* // },
|
|
2630
|
+
* // ColorMetadata: "IGNORE" || "INSERT",
|
|
2631
|
+
* // Crop: {
|
|
2632
|
+
* // Height: Number("int"),
|
|
2633
|
+
* // Width: Number("int"),
|
|
2634
|
+
* // X: Number("int"),
|
|
2635
|
+
* // Y: Number("int"),
|
|
2636
|
+
* // },
|
|
2637
|
+
* // DropFrameTimecode: "DISABLED" || "ENABLED",
|
|
2638
|
+
* // FixedAfd: Number("int"),
|
|
2639
|
+
* // Height: Number("int"),
|
|
2640
|
+
* // Position: {
|
|
2641
|
+
* // Height: Number("int"),
|
|
2642
|
+
* // Width: Number("int"),
|
|
2643
|
+
* // X: Number("int"),
|
|
2644
|
+
* // Y: Number("int"),
|
|
2645
|
+
* // },
|
|
2646
|
+
* // RespondToAfd: "NONE" || "RESPOND" || "PASSTHROUGH",
|
|
2647
|
+
* // ScalingBehavior: "DEFAULT" || "STRETCH_TO_OUTPUT",
|
|
2648
|
+
* // Sharpness: Number("int"),
|
|
2649
|
+
* // TimecodeInsertion: "DISABLED" || "PIC_TIMING_SEI",
|
|
2650
|
+
* // VideoPreprocessors: { // VideoPreprocessor
|
|
2651
|
+
* // ColorCorrector: { // ColorCorrector
|
|
2652
|
+
* // Brightness: Number("int"),
|
|
2653
|
+
* // ClipLimits: { // ClipLimits
|
|
2654
|
+
* // MaximumRGBTolerance: Number("int"),
|
|
2655
|
+
* // MaximumYUV: Number("int"),
|
|
2656
|
+
* // MinimumRGBTolerance: Number("int"),
|
|
2657
|
+
* // MinimumYUV: Number("int"),
|
|
2658
|
+
* // },
|
|
2659
|
+
* // ColorSpaceConversion: "NONE" || "FORCE_601" || "FORCE_709" || "FORCE_HDR10" || "FORCE_HLG_2020" || "FORCE_P3DCI" || "FORCE_P3D65_SDR" || "FORCE_P3D65_HDR",
|
|
2660
|
+
* // Contrast: Number("int"),
|
|
2661
|
+
* // Hdr10Metadata: {
|
|
2662
|
+
* // BluePrimaryX: Number("int"),
|
|
2663
|
+
* // BluePrimaryY: Number("int"),
|
|
2664
|
+
* // GreenPrimaryX: Number("int"),
|
|
2665
|
+
* // GreenPrimaryY: Number("int"),
|
|
2666
|
+
* // MaxContentLightLevel: Number("int"),
|
|
2667
|
+
* // MaxFrameAverageLightLevel: Number("int"),
|
|
2668
|
+
* // MaxLuminance: Number("int"),
|
|
2669
|
+
* // MinLuminance: Number("int"),
|
|
2670
|
+
* // RedPrimaryX: Number("int"),
|
|
2671
|
+
* // RedPrimaryY: Number("int"),
|
|
2672
|
+
* // WhitePointX: Number("int"),
|
|
2673
|
+
* // WhitePointY: Number("int"),
|
|
2674
|
+
* // },
|
|
2675
|
+
* // HdrToSdrToneMapper: "PRESERVE_DETAILS" || "VIBRANT",
|
|
2676
|
+
* // Hue: Number("int"),
|
|
2677
|
+
* // SampleRangeConversion: "LIMITED_RANGE_SQUEEZE" || "NONE" || "LIMITED_RANGE_CLIP",
|
|
2678
|
+
* // Saturation: Number("int"),
|
|
2679
|
+
* // SdrReferenceWhiteLevel: Number("int"),
|
|
2680
|
+
* // },
|
|
2681
|
+
* // Deinterlacer: { // Deinterlacer
|
|
2682
|
+
* // Algorithm: "INTERPOLATE" || "INTERPOLATE_TICKER" || "BLEND" || "BLEND_TICKER" || "LINEAR_INTERPOLATION",
|
|
2683
|
+
* // Control: "FORCE_ALL_FRAMES" || "NORMAL",
|
|
2684
|
+
* // Mode: "DEINTERLACE" || "INVERSE_TELECINE" || "ADAPTIVE",
|
|
2685
|
+
* // },
|
|
2686
|
+
* // DolbyVision: { // DolbyVision
|
|
2687
|
+
* // L6Metadata: { // DolbyVisionLevel6Metadata
|
|
2688
|
+
* // MaxCll: Number("int"),
|
|
2689
|
+
* // MaxFall: Number("int"),
|
|
2690
|
+
* // },
|
|
2691
|
+
* // L6Mode: "PASSTHROUGH" || "RECALCULATE" || "SPECIFY",
|
|
2692
|
+
* // Mapping: "HDR10_NOMAP" || "HDR10_1000",
|
|
2693
|
+
* // Profile: "PROFILE_5" || "PROFILE_8_1",
|
|
2694
|
+
* // },
|
|
2695
|
+
* // Hdr10Plus: { // Hdr10Plus
|
|
2696
|
+
* // MasteringMonitorNits: Number("int"),
|
|
2697
|
+
* // TargetMonitorNits: Number("int"),
|
|
2698
|
+
* // },
|
|
2699
|
+
* // ImageInserter: {
|
|
2700
|
+
* // InsertableImages: [
|
|
2701
|
+
* // {
|
|
2702
|
+
* // Duration: Number("int"),
|
|
2703
|
+
* // FadeIn: Number("int"),
|
|
2704
|
+
* // FadeOut: Number("int"),
|
|
2705
|
+
* // Height: Number("int"),
|
|
2706
|
+
* // ImageInserterInput: "STRING_VALUE",
|
|
2707
|
+
* // ImageX: Number("int"),
|
|
2708
|
+
* // ImageY: Number("int"),
|
|
2709
|
+
* // Layer: Number("int"),
|
|
2710
|
+
* // Opacity: Number("int"),
|
|
2711
|
+
* // StartTime: "STRING_VALUE",
|
|
2712
|
+
* // Width: Number("int"),
|
|
2713
|
+
* // },
|
|
2714
|
+
* // ],
|
|
2715
|
+
* // SdrReferenceWhiteLevel: Number("int"),
|
|
2716
|
+
* // },
|
|
2717
|
+
* // NoiseReducer: { // NoiseReducer
|
|
2718
|
+
* // Filter: "BILATERAL" || "MEAN" || "GAUSSIAN" || "LANCZOS" || "SHARPEN" || "CONSERVE" || "SPATIAL" || "TEMPORAL",
|
|
2719
|
+
* // FilterSettings: { // NoiseReducerFilterSettings
|
|
2720
|
+
* // Strength: Number("int"),
|
|
2721
|
+
* // },
|
|
2722
|
+
* // SpatialFilterSettings: { // NoiseReducerSpatialFilterSettings
|
|
2723
|
+
* // PostFilterSharpenStrength: Number("int"),
|
|
2724
|
+
* // Speed: Number("int"),
|
|
2725
|
+
* // Strength: Number("int"),
|
|
2726
|
+
* // },
|
|
2727
|
+
* // TemporalFilterSettings: { // NoiseReducerTemporalFilterSettings
|
|
2728
|
+
* // AggressiveMode: Number("int"),
|
|
2729
|
+
* // PostTemporalSharpening: "DISABLED" || "ENABLED" || "AUTO",
|
|
2730
|
+
* // PostTemporalSharpeningStrength: "LOW" || "MEDIUM" || "HIGH",
|
|
2731
|
+
* // Speed: Number("int"),
|
|
2732
|
+
* // Strength: Number("int"),
|
|
2733
|
+
* // },
|
|
2734
|
+
* // },
|
|
2735
|
+
* // PartnerWatermarking: { // PartnerWatermarking
|
|
2736
|
+
* // NexguardFileMarkerSettings: { // NexGuardFileMarkerSettings
|
|
2737
|
+
* // License: "STRING_VALUE",
|
|
2738
|
+
* // Payload: Number("int"),
|
|
2739
|
+
* // Preset: "STRING_VALUE",
|
|
2740
|
+
* // Strength: "LIGHTEST" || "LIGHTER" || "DEFAULT" || "STRONGER" || "STRONGEST",
|
|
2741
|
+
* // },
|
|
2742
|
+
* // },
|
|
2743
|
+
* // TimecodeBurnin: { // TimecodeBurnin
|
|
2744
|
+
* // FontSize: Number("int"),
|
|
2745
|
+
* // Position: "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT" || "MIDDLE_LEFT" || "MIDDLE_CENTER" || "MIDDLE_RIGHT" || "BOTTOM_LEFT" || "BOTTOM_CENTER" || "BOTTOM_RIGHT",
|
|
2746
|
+
* // Prefix: "STRING_VALUE",
|
|
2747
|
+
* // },
|
|
2748
|
+
* // },
|
|
2749
|
+
* // Width: Number("int"),
|
|
2750
|
+
* // },
|
|
2751
|
+
* // },
|
|
2752
|
+
* // ],
|
|
2753
|
+
* // },
|
|
2754
|
+
* // ],
|
|
2755
|
+
* // TimecodeConfig: { // TimecodeConfig
|
|
2756
|
+
* // Anchor: "STRING_VALUE",
|
|
2757
|
+
* // Source: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
|
|
2758
|
+
* // Start: "STRING_VALUE",
|
|
2759
|
+
* // TimestampOffset: "STRING_VALUE",
|
|
2760
|
+
* // },
|
|
2761
|
+
* // TimedMetadataInsertion: { // TimedMetadataInsertion
|
|
2762
|
+
* // Id3Insertions: [ // __listOfId3Insertion
|
|
2763
|
+
* // { // Id3Insertion
|
|
2764
|
+
* // Id3: "STRING_VALUE",
|
|
2765
|
+
* // Timecode: "STRING_VALUE",
|
|
2766
|
+
* // },
|
|
2767
|
+
* // ],
|
|
2768
|
+
* // },
|
|
2769
|
+
* // },
|
|
2770
|
+
* // StatusUpdateInterval: "SECONDS_10" || "SECONDS_12" || "SECONDS_15" || "SECONDS_20" || "SECONDS_30" || "SECONDS_60" || "SECONDS_120" || "SECONDS_180" || "SECONDS_240" || "SECONDS_300" || "SECONDS_360" || "SECONDS_420" || "SECONDS_480" || "SECONDS_540" || "SECONDS_600",
|
|
2771
|
+
* // Type: "SYSTEM" || "CUSTOM",
|
|
2772
|
+
* // },
|
|
2773
|
+
* // };
|
|
2774
|
+
*
|
|
1401
2775
|
* ```
|
|
1402
2776
|
*
|
|
1403
2777
|
* @param CreateJobTemplateCommandInput - {@link CreateJobTemplateCommandInput}
|
|
@@ -1424,6 +2798,8 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
1424
2798
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
1425
2799
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
1426
2800
|
*
|
|
2801
|
+
* @throws {@link MediaConvertServiceException}
|
|
2802
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
1427
2803
|
*
|
|
1428
2804
|
*/
|
|
1429
2805
|
export declare class CreateJobTemplateCommand extends $Command<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
|