Skip to content

Commit

Permalink
feat: added start and stop restreamer hls
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Jun 3, 2024
1 parent 3d22fd8 commit 8ba06c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ The Compress python library provides access to the Compress API for encoding vid
- [Installation](#installation)
- [Usage](#usage)



## Installation

You can install Compress-Python using pip:
Expand Down
4 changes: 2 additions & 2 deletions src/compress/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
TNGRM_BASE_URL = "https://api-compress.hiway.media/api/v4.0"
GET_CATEGORIES = "/external/upload/categories"
CREATE_CATEGORY = GET_CATEGORIES + "/create"
#
# restreamer
GET_RESTREAMERS = "/external/restreamers"
GET_RUNNING_INSTANCES = GET_RESTREAMERS + "/running_instances"
GET_RUNNING_SINGLE_INSTANCE = GET_RESTREAMERS + "/single_instance"
Expand All @@ -36,7 +36,7 @@
RESTREAMER_PUSH_STOP = GET_RESTREAMERS + "/push/stop"
RESTREAMER_PULL_START = GET_RESTREAMERS + "/pull/start"
RESTREAMER_PULL_STOP = GET_RESTREAMERS + "/pull/stop"
#
# uploads
GET_UPLOADS = "/external/upload"
GET_SINGLE_UPLOAD = GET_UPLOADS + "/jobid"
SET_PUBLISHED_UPLOAD = GET_UPLOADS + "/set_published"
Expand Down

0 comments on commit 8ba06c8

Please sign in to comment.