Skip to content

Commit 1642666

Browse files
committed
updated documentation
1 parent 41f07cc commit 1642666

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/quickstart.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ pip install -r requirements.txt
1010
python setup.py install
1111
````
1212

13+
**install from pip**
14+
15+
````
16+
sudo pip install qencode
17+
````
18+
1319
**Usage**
1420

1521
````

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]

0 commit comments

Comments
 (0)