Skip to content

Commit 686d671

Browse files
updated documentation
1 parent a5a861a commit 686d671

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

docs/install.md

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

55
````
66
cd your-workspace-folder
7-
git clone https://github.com/qencode-dev/qencode-api-python-client
7+
git clone https://github.com/qencode-dev/qencode-api-python3-client
88
cd qencode-api-python-client
99
pip install -r requirements.txt
1010
python setup.py install
@@ -13,5 +13,5 @@ python setup.py install
1313
**install from pip**
1414

1515
````
16-
sudo pip install qencode
16+
sudo pip install qencode3
1717
````

docs/usage.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,26 +81,22 @@ VIDEO_CODEC = qencode.x264_video_codec()
8181
DESTINATION.url = "..."
8282
DESTINATION.key = "..."
8383
DESTINATION.secret = "..."
84-
DESTINATION.remove_null_params()
8584
8685
VIDEO_CODEC.vprofile = "baseline"
8786
VIDEO_CODEC.level = 31
8887
VIDEO_CODEC.coder = 0
8988
VIDEO_CODEC.flags2 = "-bpyramid+fastpskip-dct8x8"
9089
VIDEO_CODEC.partitions = "+parti8x8+parti4x4+partp8x8+partb8x8"
9190
VIDEO_CODEC.directpred = 2
92-
VIDEO_CODEC.remove_null_params()
9391
9492
STREAM.profile = "baseline"
9593
STREAM.size = "1920x1080"
9694
STREAM.audio_bitrate = 128
9795
STREAM.video_codec_parameters = VIDEO_CODEC
98-
STREAM.remove_null_params()
9996
10097
FORMAT.stream = [STREAM]
10198
FORMAT.output = "advanced_hls"
10299
FORMAT.destination = DESTINATION
103-
FORMAT.remove_null_params()
104100
105101
params.source = 'your source url'
106102
params.format = [FORMAT]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='qencode',
11-
version='0.0.1',
11+
version='0.9',
1212
description='Qencode Python SDK',
1313
url='https://github.com/qencode-dev/qencode-api-python3-client',
1414
# url=here,

0 commit comments

Comments
 (0)