addedOutput schema / $defs
Added value: +{
+ "MediaResponse": {
+ "additionalProperties": false,
+ "properties": {
+ "duration_seconds": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Playable video duration measured from presentation timestamps; never provider-requested duration.",
+ "title": "Duration Seconds",
+ "x-description-zh": "根据呈现时间戳测得的可播放视频时长,不使用供应商请求时长。"
+ },
+ "fps": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Measured average source frame rate; use presentation timestamps for VFR selection.",
+ "title": "Fps",
+ "x-description-zh": "实测源平均帧率;可变帧率选帧仍依据呈现时间戳。"
+ },
+ "frame_count": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Decoded source frame count, or null when unknown.",
+ "title": "Frame Count",
+ "x-description-zh": "解码源帧数,未知为 null。"
+ },
+ "height": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Displayed video height in pixels, accounting for rotation.",
+ "title": "Height",
+ "x-description-zh": "考虑旋转后的显示高度,单位像素。"
+ },
+ "width": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Displayed video width in pixels, accounting for rotation.",
+ "title": "Width",
+ "x-description-zh": "考虑旋转后的显示宽度,单位像素。"
+ }
+ },
+ "title": "MediaResponse",
+ "type": "object"
+ }
+}