REST Resource: videoFormats
Stay organized with collections
Save and categorize content based on your preferences.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-16 UTC.
[null,null,["Last updated 2024-10-16 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eVideoFormat\u003c/code\u003e resource provides details about supported video formats, including file type, target bit rate, and resolution.\u003c/p\u003e\n"],["\u003cp\u003eVideo formats can be accessed and managed using methods such as \u003ccode\u003eget\u003c/code\u003e to retrieve a specific format by ID and \u003ccode\u003elist\u003c/code\u003e to retrieve all available formats.\u003c/p\u003e\n"],["\u003cp\u003eSupported file types for video formats include FLV, 3GPP, MP4, WEBM, and M3U8.\u003c/p\u003e\n"],["\u003cp\u003eEach video format is identified by a unique ID and has a specific target bit rate and resolution, defined by the \u003ccode\u003eSize\u003c/code\u003e object.\u003c/p\u003e\n"]]],[],null,["# REST Resource: videoFormats\n\n- [Resource: VideoFormat](#VideoFormat)\n - [JSON representation](#VideoFormat.SCHEMA_REPRESENTATION)\n- [FileType](#FileType)\n- [Methods](#METHODS_SUMMARY)\n\nResource: VideoFormat\n---------------------\n\nContains information about supported video formats.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"id\": integer, \"fileType\": enum (/doubleclick-advertisers/rest/v4/videoFormats#FileType), \"targetBitRate\": integer, \"resolution\": { object (/doubleclick-advertisers/rest/v4/sizes#Size) }, \"kind\": string } ``` |\n\n| Fields ||\n|---------------------|--------------------------------------------------------------------------------------------------------------|\n| `id` | `integer` ID of the video format. |\n| `file``Type` | `enum (`[FileType](/doubleclick-advertisers/rest/v4/videoFormats#FileType)`)` File type of the video format. |\n| `target``Bit``Rate` | `integer` The target bit rate of this video format. |\n| `resolution` | `object (`[Size](/doubleclick-advertisers/rest/v4/sizes#Size)`)` The resolution of this video format. |\n| `kind` | `string` Identifies what kind of resource this is. Value: the fixed string `\"dfareporting#videoFormat\"` . |\n\nFileType\n--------\n\n| Enums ||\n|------------|---|\n| `FLV` | |\n| `THREEGPP` | |\n| `MP4` | |\n| `WEBM` | |\n| `M3U8` | |\n\n| Methods ------- ||\n|----------------------------------------------------------------|--------------------------------|\n| ### [get](/doubleclick-advertisers/rest/v4/videoFormats/get) | Gets one video format by ID. |\n| ### [list](/doubleclick-advertisers/rest/v4/videoFormats/list) | Lists available video formats. |"]]