Skip to content

Commit 6708a4e

Browse files
committed
updated description
1 parent 7bd6778 commit 6708a4e

File tree

4 files changed

+57
-9
lines changed

4 files changed

+57
-9
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77

88
.cache/
99
.vscode/
10-
.idea/
10+
.idea/
11+
LONG_DESCRIPTION.md

README.md

Lines changed: 46 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
## qencode-api-python-client
22

3-
####Installation
43

54
**install sdk libraries from github**
65

@@ -17,7 +16,7 @@ python setup.py install
1716
sudo pip install qencode
1817
````
1918

20-
##Usage
19+
**Usage**
2120

2221
````
2322
import qencode
@@ -30,6 +29,49 @@ task.start(TRANSCODING_PROFILEID, VIDO_URL)
3029
3130
````
3231

33-
####Documentation
32+
**Documentation**
3433

35-
Documentation is available at <https://docs.qencode.com>
34+
Documentation is available at <https://docs.qencode.com>
35+
36+
**Description**
37+
38+
Inside this library, you will find sample code for creating [video transcoding](https://cloud.qencode.com/) tasks, launching transcoding jobs, video clipping and receiving callbacks. Updates are posted on a regular basis and we are open to any improvements or suggestions you may have.
39+
40+
Some of the options Qencode offers for transcoding your videos at scale:
41+
42+
Resolution
43+
* 8K
44+
* 4K
45+
* 1140p
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
68+
69+
Transfer & Storage Options
70+
* S3 Qencode
71+
* AWS
72+
* Google Cloud
73+
* Backblaze
74+
* Azure
75+
* FTP
76+
* HTTP(S)
77+
* VPN

qencode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def x265_video_codec():
2929

3030
from exeptions import QencodeClientException, QencodeTaskException
3131

32-
__version__ = "0.9.17"
32+
__version__ = "0.9.23"
3333
__status__ = "Beta"
3434
__author__ = "Qencode"
3535

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@
66

77
here = path.abspath(path.dirname(__file__))
88

9+
with open('LONG_DESCRIPTION.md') as f:
10+
long_description = f.read()
11+
912
setup(
1013
name='qencode',
11-
version='0.9.17',
12-
description='Qencode Python SDK',
14+
version='0.9.23',
15+
description="Client library for main features and functionality of Qencode for Python v2.x.",
16+
long_description=long_description,
17+
long_description_content_type='text/markdown',
1318
url='https://github.com/qencode-dev/qencode-api-python-client',
1419
# url=here,
1520
author='Qencode Developer',
@@ -25,4 +30,4 @@
2530
],
2631
keywords='qencode, qencode.com, cloud.qencode.com',
2732
packages=['qencode']
28-
)
33+
)

0 commit comments

Comments
 (0)