Skip to content

Commit 388f41b

Browse files
updated description
1 parent 912a506 commit 388f41b

File tree

4 files changed

+51
-7
lines changed

4 files changed

+51
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@
99
.vscode/
1010
.idea/
1111

12+
LONG_DESCRIPTION.md
13+
1214

1315

README.md

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

3-
####Installation
43

54
**install sdk libraries from github**
65

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

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

2221
````
2322
import qencode
@@ -30,6 +29,42 @@ 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+
Here you will find examples of Qencode solutions using the latest version of python. Some popular examples include launching [video encoding](https://cloud.qencode.com/) jobs through the API, basic testing functionality, and code developed to exhibit a wide range of features that we offer. Please send over any ideas you have to help us improve our solution and continue to provide you with the easiest transcoding solutions on the market.
39+
40+
Key features of encoding your videos:
41+
42+
Output Formats
43+
* HLS
44+
* MPEG-DASH
45+
* MP4
46+
* MXF
47+
* WebM
48+
49+
Codecs
50+
* H.264 (AVC1)
51+
* H.265 (HEVC)
52+
* VP9
53+
* VP8
54+
* AV1
55+
* MPEG-2
56+
57+
Input Formats
58+
* MP4
59+
* AVI
60+
* MOV
61+
* MKV
62+
* HLS
63+
* MPEG‑2 (TS & PS)
64+
* MXF
65+
* ASF
66+
* ProRes
67+
* XDCAM
68+
* DNx
69+
* FLV
70+
* ...and many more

qencode3/__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.18"
32+
__version__ = "0.9.22"
3333
__status__ = "Beta"
3434
__author__ = "Qencode"
3535

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,17 @@
66

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

9+
10+
with open('LONG_DESCRIPTION.md') as f:
11+
long_description = f.read()
12+
13+
914
setup(
1015
name='qencode3',
11-
version='0.9.18',
12-
description='Qencode Python SDK',
16+
version='0.9.22',
17+
description="Qencode client library to easily setup a working solution using Python v3.x.",
18+
long_description=long_description,
19+
long_description_content_type='text/markdown',
1320
url='https://github.com/qencode-dev/qencode-api-python3-client',
1421
# url=here,
1522
author='Qencode Developer',

0 commit comments

Comments
 (0)