Cisco D9800 Reference Manual page 263

Network transport receiver
Hide thumbs Also See for D9800:
Table of Contents

Advertisement

API Definitions
The following example assumes that the user has successfully logged onto the unit, received the session id
and set it to the variable token. In addition, it is assumed that the IP of the unit is 192.168.0.1. You must
change the IP to the specific unit IP in use. This example changes the bitratemode of transcoder 5 to CBR.
curl -X POST -i -H "Accept: application/json" -H "X-SESSION-ID: $token" -k
"https://192.168.0.1/ws/v2/service_cfg/sd/transcode?index=5&bitratemode=CBR"
If successful, the following is an example of the return body will be:
"response": {
}
Example 2: Changing multiple SD Transcoding Parameters
The following example assumes that the user has successfully logged onto the unit, received the session id
and set it to the variable token. In addition, it is assumed that the IP of the unit is 192.168.0.1. You must
change the IP to the specific unit IP in use. The following example changes several HD transcoder 5 parameters.
It will set the bitratemode to CBR, bitrate to 14 and, pulldown32 to Disabled.
curl -X POST -i -H "Accept: application/json" -H "X-SESSION-ID: $token" -k
"https://192.168.0.1/ws/v2/
service_cfg/transcode/sd?index=5&bitratemode=CBR&bitrate=14&pulldown32=Disabled"
If successful, the following is an example of the return body:
"response": {
}
GET Examples:
Example 3: GET the full SD transcoder values for a specific transcoder
The following example assumes that the user has successfully logged onto the unit, received the session id
and set it to the variable token. In addition, it is assumed that the IP of the unit is 192.168.0.1. You must
change the IP to the specific unit IP in use. The following example retrieves all of the SD transcoder settings
for transcoder 5.
The user must specify the index in the URI.
Note
curl -X GET -i -H "Accept: application/json" -H "X-SESSION-ID: $token" -k
"https://192.168.0.1/ws/v2/service_cfg/transcode/sd?index=5"
If successful, the following is an example of the return body:
"transcode": {
}
Example 4: GET a specific SD transcode value for a specific transcoder
The following example assumes that the user has successfully logged onto the unit, received the session id
and set it to the variable token. In addition, it is assumed that the IP of the unit is 192.168.0.1. You must
"code": "10",
"result": "success",
"message": ""
"code": "10",
"result": "success",
"message": ""
"sd": {
"index": "5",
"vres": "SD Output",
"hres": "720",
"bitratemode": "CBR",
"bitrate": "4.0",
"gop": "User GOP(MN)",
"usergop": "15 2",
"pulldown32": "Disabled",
"aspectratio": "16:9",
"aspectconv": "None",
"ccpkt1": "CEA 708",
"ccpkt2": "None"
}
Cisco D9800 Network Transport Receiver Version 2.75 RESTful Web Services API Reference Guide
Transcoding Configuration Commands
251

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents