Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9d762e3

Browse filesBrowse files
authored
Change docs URLs to new site
1 parent a91b3e4 commit 9d762e3
Copy full SHA for 9d762e3

File tree

1 file changed

+22
-22
lines changed
Filter options

1 file changed

+22
-22
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+22-22Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ client = Zencoder('API_KEY')
2828
client = Zencoder()
2929
```
3030

31-
## [Jobs](https://app.zencoder.com/docs/api/jobs)
31+
## [Jobs](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs)
3232

33-
Create a [new job](https://app.zencoder.com/docs/api/jobs/create).
33+
Create a [new job](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Create_a_Job).
3434

3535
```python
3636
client.job.create('s3://bucket/key.mp4')
@@ -47,7 +47,7 @@ response.code # 201
4747
response.body['id'] # 12345
4848
```
4949

50-
[List jobs](https://app.zencoder.com/docs/api/jobs/list).
50+
[List jobs](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-List_Jobs).
5151

5252
By default the jobs listing is paginated with 50 jobs per page and sorted by ID in descending order. You can pass two parameters to control the paging: `page` and `per_page`.
5353

@@ -56,78 +56,78 @@ client.job.list(per_page=10)
5656
client.job.list(per_page=10, page=2)
5757
```
5858

59-
Get [details](https://app.zencoder.com/docs/api/jobs/show) about a job.
59+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Get_Job_Details) about a job.
6060

6161
The number passed to `details` is the ID of a Zencoder job.
6262

6363
```python
6464
client.job.details(1)
6565
```
6666

67-
Get [progress](https://app.zencoder.com/docs/api/jobs/progress) on a job.
67+
Get [progress](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Job_Progress) on a job.
6868

6969
The number passed to `progress` is the ID of a Zencoder job.
7070

7171
```python
7272
client.job.progress(1)
7373
```
7474

75-
[Resubmit](https://app.zencoder.com/docs/api/jobs/resubmit) a job
75+
[Resubmit](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Resubmit_a_Job) a job
7676

7777
The number passed to `resubmit` is the ID of a Zencoder job.
7878

7979
```python
8080
client.job.resubmit(1)
8181
```
8282

83-
[Cancel](https://app.zencoder.com/docs/api/jobs/cancel) a job
83+
[Cancel](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Cancel_a_Job) a job
8484

8585
The number passed to `cancel` is the ID of a Zencoder job.
8686

8787
```python
8888
client.job.cancel(1)
8989
```
9090

91-
## [Inputs](https://app.zencoder.com/docs/api/inputs)
91+
## [Inputs](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Inputs)
9292

93-
Get [details](https://app.zencoder.com/docs/api/inputs/show) about an input.
93+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Inputs-Get_Input_Details) about an input.
9494

9595
The number passed to `details` is the ID of a Zencoder input.
9696

9797
```python
9898
client.input.details(1)
9999
```
100100

101-
Get [progress](https://app.zencoder.com/docs/api/inputs/progress) for an input.
101+
Get [progress](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Inputs-Update_Input_Progress) for an input.
102102

103103
The number passed to `progress` is the ID of a Zencoder input.
104104

105105
```python
106106
client.input.progress(1)
107107
```
108-
## [Outputs](https://app.zencoder.com/docs/api/outputs)
108+
## [Outputs](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Outputs)
109109

110-
Get [details](https://app.zencoder.com/docs/api/outputs/show) about an output.
110+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Outputs-Get_Output_Details) about an output.
111111

112112
The number passed to `details` is the ID of a Zencoder output.
113113

114114
```python
115115
client.output.details(1)
116116
```
117117

118-
Get [progress](https://app.zencoder.com/docs/api/outputs/progress) for an output.
118+
Get [progress](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Outputs-Update_Output_Progress) for an output.
119119

120120
The number passed to `progress` is the ID of a Zencoder output.
121121

122122
```python
123123
client.output.progress(1)
124124
```
125125

126-
## [Reports](https://app.zencoder.com/docs/api/reports)
126+
## [Reports](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Reports)
127127

128-
Reports are great for getting usage data for your account. All default to 30 days from yesterday with no [grouping](https://app.zencoder.com/docs/api/encoding/job/grouping), but this can be altered. These will return `422 Unprocessable Entity` if the date format is incorrect or the range is greater than 2 months.
128+
Reports are great for getting usage data for your account. All default to 30 days from yesterday with no [grouping](https://support.brightcove.com/zencoder-encoding-settings-job#grouping), but this can be altered. These will return `422 Unprocessable Entity` if the date format is incorrect or the range is greater than 2 months.
129129

130-
Get [all usage](https://app.zencoder.com/docs/api/reports/all) (Live + VOD).
130+
Get [all usage](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Reports-Get_Usage_for_VOD___Live) (Live + VOD).
131131

132132
```python
133133
import datetime
@@ -140,7 +140,7 @@ client.report.all(start_date=datetime.date(2011, 10, 30),
140140
grouping="foo")
141141
```
142142

143-
Get [VOD usage](https://app.zencoder.com/docs/api/reports/vod).
143+
Get [VOD usage](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Reports-Get_Usage_for_VOD).
144144

145145
```python
146146
import datetime
@@ -153,7 +153,7 @@ client.report.vod(start_date=datetime.date(2011, 10, 30),
153153
grouping="foo")
154154
```
155155

156-
Get [Live usage](https://app.zencoder.com/docs/api/reports/live).
156+
Get [Live usage](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Reports-Get_Usage_for_Live).
157157

158158
```python
159159
import datetime
@@ -166,9 +166,9 @@ client.report.live(start_date=datetime.date(2011, 10, 30),
166166
grouping="foo")
167167
```
168168

169-
## [Accounts](https://app.zencoder.com/docs/api/accounts)
169+
## [Accounts](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Accounts)
170170

171-
Create a [new account](https://app.zencoder.com/docs/api/accounts/create). A unique email address and terms of service are required, but you can also specify a password (and confirmation) along with whether or not you want to subscribe to the Zencoder newsletter. New accounts will be created under the Test (Free) plan.
171+
Create a [new account](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Accounts-Create_an_Account). A unique email address and terms of service are required, but you can also specify a password (and confirmation) along with whether or not you want to subscribe to the Zencoder newsletter. New accounts will be created under the Test (Free) plan.
172172

173173
No API Key is required.
174174

@@ -180,13 +180,13 @@ client.account.create('foo@example.com', tos=1,
180180
'affiliate_code': 'foo'})
181181
```
182182

183-
Get [details](https://app.zencoder.com/docs/api/accounts/show) about the current account.
183+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Accounts-Get_Account_Details) about the current account.
184184

185185
```python
186186
client.account.details()
187187
```
188188

189-
Turn [integration mode](https://app.zencoder.com/docs/api/accounts/integration) on (all jobs are test jobs).
189+
Turn [integration mode](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Accounts-Turn_On_Integration_Mode) on (all jobs are test jobs).
190190

191191
```python
192192
client.account.integration()

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.