Skip to content

Commit 62609be

Browse files
committed
docs: Format with prettier
1 parent 1081545 commit 62609be

File tree

4 files changed

+63
-60
lines changed

4 files changed

+63
-60
lines changed

README.md

Lines changed: 43 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
## qencode-api-python-client
22

3-
43
**install sdk libraries from github**
54

6-
````
5+
```
76
cd your-workspace-folder
87
git clone https://github.com/qencode-dev/qencode-api-python-client
98
cd qencode-api-python-client
109
pip install -r requirements.txt
1110
python setup.py install
12-
````
11+
```
12+
1313
**install from pip**
1414

15-
````
15+
```
1616
sudo pip install qencode
17-
````
17+
```
1818

1919
**Usage**
2020

21-
````
21+
```
2222
import qencode
2323
2424
client = qencode.client(API_KEY)
@@ -27,7 +27,7 @@ client.create()
2727
task = client.create_task()
2828
task.start(TRANSCODING_PROFILEID, VIDO_URL)
2929
30-
````
30+
```
3131

3232
**Documentation**
3333

@@ -40,38 +40,41 @@ Inside this library, you will find sample code for creating [video transcoding](
4040
Some of the options Qencode offers for transcoding your videos at scale:
4141

4242
Resolution
43-
* 8K
44-
* 4K
45-
* 1440p
46-
* 1080p
47-
* 720p
48-
* 480p
49-
* 360p
50-
* 240
51-
52-
Features
53-
* Thumbnails
54-
* Watermarking
55-
* VR / 360 Encoding
56-
* Subtitles & Captions
57-
* Create Clips
58-
* Video Stitching
59-
* S3 Storage
60-
* Preview Images
61-
* Custom Resolution
62-
* Callback URLs
63-
* Custom Presets
64-
* Rotate
65-
* Aspect Ratio
66-
* Notifications
67-
* Crop Videos
43+
44+
- 8K
45+
- 4K
46+
- 1440p
47+
- 1080p
48+
- 720p
49+
- 480p
50+
- 360p
51+
- 240
52+
53+
Features
54+
55+
- Thumbnails
56+
- Watermarking
57+
- VR / 360 Encoding
58+
- Subtitles & Captions
59+
- Create Clips
60+
- Video Stitching
61+
- S3 Storage
62+
- Preview Images
63+
- Custom Resolution
64+
- Callback URLs
65+
- Custom Presets
66+
- Rotate
67+
- Aspect Ratio
68+
- Notifications
69+
- Crop Videos
6870

6971
Transfer & Storage Options
70-
* S3 Qencode
71-
* AWS
72-
* Google Cloud
73-
* Backblaze
74-
* Azure
75-
* FTP
76-
* HTTP(S)
77-
* VPN
72+
73+
- S3 Qencode
74+
- AWS
75+
- Google Cloud
76+
- Backblaze
77+
- Azure
78+
- FTP
79+
- HTTP(S)
80+
- VPN

docs/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
**install sdk libraries from github**
44

5-
````
5+
```
66
cd your-workspace-folder
77
git clone https://github.com/qencode-dev/qencode-api-python-client
88
cd qencode-api-python-client
99
pip install -r requirements.txt
1010
python setup.py install
11-
````
11+
```
1212

1313
**install from pip**
1414

15-
````
15+
```
1616
sudo pip install qencode
17-
````
17+
```

docs/quickstart.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22

33
**install sdk libraries from github**
44

5-
````
5+
```
66
cd your-workspace-folder
77
git clone https://github.com/qencode-dev/qencode-api-python-client
88
cd qencode-api-python-client
99
pip install -r requirements.txt
1010
python setup.py install
11-
````
11+
```
1212

1313
**install from pip**
1414

15-
````
15+
```
1616
sudo pip install qencode
17-
````
17+
```
1818

1919
**Usage**
2020

21-
````
21+
```
2222
import qencode
2323
2424
client = qencode.client(API_KEY)
@@ -27,9 +27,8 @@ client.create()
2727
task = client.create_task()
2828
task.start(TRANSCODING_PROFILEID, VIDO_URL)
2929
30-
````
31-
30+
```
3231

3332
**Documentation**
3433

35-
Documentation is available at <https://docs.qencode.com>
34+
Documentation is available at <https://docs.qencode.com>

docs/usage.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Usage by transcoding profile ID**
44

5-
````
5+
```
66
import sys
77
import os.path
88
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir)))
@@ -57,11 +57,11 @@ def start_encode():
5757
5858
if __name__ == '__main__':
5959
start_encode()
60-
````
60+
```
6161

6262
**Usage by custom parameters**
6363

64-
````
64+
```
6565
import sys
6666
import os.path
6767
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir)))
@@ -144,25 +144,26 @@ def start_encode():
144144
145145
if __name__ == '__main__':
146146
start_encode()
147-
````
147+
```
148+
148149
**Usage with callback methods**
149150

150-
````
151+
```
151152
def my_callback(e):
152153
print e
153154
154155
def my_callback2(e):
155156
print e
156-
157+
157158
...
158159
159160
task.start(TRANSCODING_PROFILEID, VIDO_URL)
160-
if task.error:
161+
if task.error:
161162
raise SystemExit
162163
163164
task.progress_changed(my_callback)
164165
task.task_completed(my_callback2)
165-
````
166+
```
166167

167168
**Documentation**
168169

0 commit comments

Comments
 (0)