POST api/Video/CompressVideo

Request Information

URI Parameters

None.

Body Parameters

CompressRequest
NameDescriptionTypeAdditional information
InputPath

string

None.

OutputPath

string

None.

TargetKB

integer

None.

VideoBitrate

integer

None.

AudioBitrate

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "inputPath": "sample string 1",
  "outputPath": "sample string 2",
  "targetKB": 1,
  "videoBitrate": 1,
  "audioBitrate": 1
}

application/xml, text/xml

Sample:
<CompressRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TextByChoiceRestApi.Controllers">
  <AudioBitrate>1</AudioBitrate>
  <InputPath>sample string 1</InputPath>
  <OutputPath>sample string 2</OutputPath>
  <TargetKB>1</TargetKB>
  <VideoBitrate>1</VideoBitrate>
</CompressRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.