**收费方式**:`免费无限次调用`
**接口地址**:`/api/v1/parse-video/video-source`
**请求方式**:`GET`
**请求数据类型**:`application/x-www-form-urlencoded`
**响应数据类型**:`*/*`
**接口描述**:
**请求参数**:
**请求参数**:
暂无
**响应状态**:
| 状态码 | 说明 | schema |
| -------- | -------- | ----- |
|200|OK|Result«List«ParseVideoSourceVO»»|
|401|Unauthorized||
|403|Forbidden||
|404|Not Found||
**响应参数**:
| 参数名称 | 参数说明 | 类型 | schema |
| -------- | -------- | ----- |----- |
|data||array|ParseVideoSourceVO|
|  name|视频源名称|string||
|  source_id|视频源id|integer(int32)||
|  status|视频源状态,1:正常,2:异常|integer(int32)||
|error_code|响应码 (非0即异常)|integer(int32)|integer(int32)|
|message|响应消息|string||
|meta||array|ParseVideoSourceVO|
|  name|视频源名称|string||
|  source_id|视频源id|integer(int32)||
|  status|视频源状态,1:正常,2:异常|integer(int32)||
**响应示例**:
```javascript
{
"data": [
{
"name": "",
"source_id": 0,
"status": 0
}
],
"error_code": 0,
"message": "success",
"meta": [
{
"name": "",
"source_id": 0,
"status": 0
}
]
}
```