{"id":22862422,"url":"https://github.com/tomi77/ems-cli","last_synced_at":"2025-07-28T12:03:09.374Z","repository":{"id":57426313,"uuid":"71251369","full_name":"tomi77/ems-cli","owner":"tomi77","description":"EvoStream Media Server Client","archived":false,"fork":false,"pushed_at":"2016-11-14T16:58:05.000Z","size":79,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-10T17:52:23.177Z","etag":null,"topics":["cli","evostream","media-server"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tomi77.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-10-18T13:31:22.000Z","updated_at":"2023-02-13T22:52:29.000Z","dependencies_parsed_at":"2022-09-11T06:16:49.201Z","dependency_job_id":null,"html_url":"https://github.com/tomi77/ems-cli","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomi77%2Fems-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomi77%2Fems-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomi77%2Fems-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomi77%2Fems-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomi77","download_url":"https://codeload.github.com/tomi77/ems-cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246443525,"owners_count":20778247,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","evostream","media-server"],"created_at":"2024-12-13T10:13:31.162Z","updated_at":"2025-03-31T08:46:14.791Z","avatar_url":"https://github.com/tomi77.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"=======\nems-cli\n=======\n\n.. image:: https://codeclimate.com/github/tomi77/ems-cli/badges/gpa.svg\n   :target: https://codeclimate.com/github/tomi77/ems-cli\n   :alt: Code Climate\n\nCLI for EVO Media Server\n\nInstallation\n============\n\n.. sourcecode:: sh\n\n pip install ems-cli\n\nCommands\n========\n\nems-add-group-name-alias\n------------------------\n\nCreates secondary name(s) for group name.\n\n.. sourcecode:: sh\n\n ems-add-group-name-alias --connection-uri=\"http://127.0.0.1:7777\" MyGroup TestGroupAlias\n\nems-add-stream-alias\n--------------------\n\nCreate secondary name(s) for internal streams.\n\n.. sourcecode:: sh\n\n ems-add-stream-alias --connection-uri=\"http://127.0.0.1:7777\" --expire-period=-300 bunny video1\n\nems-create-dash-stream\n----------------------\n\nCreate Dynamic Adaptive Streaming over HTTP (DASH) out of an existing H.264/AAC stream.\n\n.. sourcecode:: sh\n\n ems-create-dash-stream --connection-uri=\"http://127.0.0.1:7777\" --group-name=dash testpullStream \"../evo-webroot\"\n\nems-create-hds-stream\n---------------------\n\nCreate an HDS (HTTP Dynamic Streaming) stream out of an existing H.264/AAC stream.\n\n.. sourcecode:: sh\n\n ems-create-hds-stream --connection-uri=\"http://127.0.0.1:7777\" --group-name=hds --playlist-type=rolling testpullStream \"../evo-webroot\"\n\nems-create-hls-stream\n---------------------\n\nCreate an HTTP Live Stream (HLS) out of an existing H.264/AAC stream.\n\n.. sourcecode:: sh\n\n ems-create-hls-stream --connection-uri=\"http://127.0.0.1:7777\" --bandwidths=128 --group-name=hls --playlist-type=rolling --playlist-length=10 --chunk-length=5 hlstest \"/MyWebRoot/\"\n\nems-create-ingest-point\n-----------------------\n\nCreates an RTMP ingest point.\n\n.. sourcecode:: sh\n\n ems-create-ingest-point --connection-uri=\"http://127.0.0.1:7777\" theIngestPoint useMeToViewStream\n\nems-create-mss-stream\n---------------------\n\nCreate a Microsoft Smooth Stream (MSS) out of an existing H.264/AAC stream.\n\n.. sourcecode:: sh\n\n ems-create-mss-stream --connection-uri=\"http://127.0.0.1:7777\" --group-name=mss testpullStream \"../evo-webroot\"\n\nems-flush-group-name-aliases\n----------------------------\n\nInvalidates all group name aliases.\n\n.. sourcecode:: sh\n\n ems-flush-group-name-aliases --connection-uri=\"http://127.0.0.1:7777\"\n\nems-flush-stream-aliases\n------------------------\n\nInvalidates all stream aliases.\n\n.. sourcecode:: sh\n\n ems-flush-stream-aliases --connection-uri=\"http://127.0.0.1:7777\"\n\nems-get-config-info\n-------------------\n\nInformation of the stream by the configId.\n\n.. sourcecode:: sh\n\n ems-get-config-info --connection-uri=\"http://127.0.0.1:7777\" 1\n\nems-get-group-name-by-alias\n---------------------------\n\nReturns the group name given the alias name.\n\n.. sourcecode:: sh\n\n ems-get-group-name-by-alias --connection-uri=\"http://127.0.0.1:7777\" TestGroupAlias\n\nems-get-stream-info-by-id\n-------------------------\n\nDetailed set of information about a stream.\n\n.. sourcecode:: sh\n\n ems-get-stream-info-by-id --connection-uri=\"http://127.0.0.1:7777\" 1\n\nems-get-stream-info-by-name\n---------------------------\n\nDetailed set of information about a stream.\n\n.. sourcecode:: sh\n\n ems-get-stream-info-by-name --connection-uri=\"http://127.0.0.1:7777\" testpullStream\n\nems-get-streams-count\n---------------------\n\nNumber of active streams.\n\n.. sourcecode:: sh\n\n ems-get-streams-count --connection-uri=\"http://127.0.0.1:7777\"\n\nems-is-stream-running-by-id\n---------------------------\n\nChecks a specific stream if it is running or not.\n\n.. sourcecode:: sh\n\n ems-is-stream-running-by-id --connection-uri=\"http://127.0.0.1:7777\" 1\n\nems-is-stream-running-by-name\n-----------------------------\n\nChecks a specific stream if it is running or not.\n\n.. sourcecode:: sh\n\n ems-is-stream-running-by-name --connection-uri=\"http://127.0.0.1:7777\" testStream\n\nems-list-config\n---------------\n\nList with all push/pull configurations.\n\n.. sourcecode:: sh\n\n ems-list-config --connection-uri=\"http://127.0.0.1:7777\"\n\nems-list-group-name-aliases\n---------------------------\n\nA complete list of group name aliases.\n\n.. sourcecode:: sh\n\n ems-list-group-name-aliases --connection-uri=\"http://127.0.0.1:7777\"\n\nems-list-http-streaming-sessions\n--------------------------------\n\nAll currently active HTTP streaming sessions.\n\n.. sourcecode:: sh\n\n ems-list-http-streaming-sessions --connection-uri=\"http://127.0.0.1:7777\"\n\nems-list-ingest-points\n----------------------\n\nThe currently available Ingest Points.\n\n.. sourcecode:: sh\n\n ems-list-ingest-points --connection-uri=\"http://127.0.0.1:7777\"\n\nems-list-stream-aliases\n-----------------------\n\nA complete list of aliases.\n\n.. sourcecode:: sh\n\n ems-list-stream-aliases --connection-uri=\"http://127.0.0.1:7777\"\n\nems-list-streams\n----------------\n\n.. sourcecode:: sh\n\n ems-list-streams --connection-uri=\"http://127.0.0.1:7777\"\n\nems-list-streams-ids\n--------------------\n\nA list of IDs for every active stream.\n\n.. sourcecode:: sh\n\n ems-list-streams-ids --connection-uri=\"http://127.0.0.1:7777\"\n\nems-pull-stream\n---------------\n\nPull in a stream from an external source.\n\n.. sourcecode:: sh\n\n ems-pull-stream --connection-uri=\"http://127.0.0.1:7777\" --local-stream-name=testpullStream \"rtmp://s2pchzxmtymn2k.cloudfront.net/cfx/st/mp4:sintel.mp4\"\n\nems-push-stream\n---------------\n\nPush a local stream to an external destination.\n\n.. sourcecode:: sh\n\n ems-push-stream --connection-uri=\"http://127.0.0.1:7777\" --local-stream-name=testpullstream --target-stream-name=testpushStream \"rtmp://DestinationAddress/live\"\n\nems-record\n----------\n\nRecords any inbound stream.\n\n.. sourcecode:: sh\n\n ems-record --connection-uri=\"http://127.0.0.1:7777\" --type=mp4 --overwrite=1 testpullstream \"../media/testRecord\"\n\nems-remove-config-by-id\n-----------------------\n\nStop the stream and remove the corresponding configuration entry.\n\n.. sourcecode:: sh\n\n ems-remove-config-by-id --connection-uri=\"http://127.0.0.1:7777\" 55\n\nems-remove-config-by-group-name\n-------------------------------\n\nStop the stream and remove the corresponding configuration entry.\n\n.. sourcecode:: sh\n\n ems-remove-config-by-group-name --connection-uri=\"http://127.0.0.1:7777\" hls\n\nems-remove-group-name-alias\n---------------------------\n\nRemove an alias of a group.\n\n.. sourcecode:: sh\n\n ems-remove-group-name-alias --connection-uri=\"http://127.0.0.1:7777\" TestGroupAlias\n\nems-remove-ingest-point\n-----------------------\n\nRemove an RTMP ingest point.\n\n.. sourcecode:: sh\n\n ems-remove-ingest-point --connection-uri=\"http://127.0.0.1:7777\" theIngestPoint\n\nems-remove-stream-alias\n-----------------------\n\nRemove an alias of a stream.\n\n.. sourcecode:: sh\n\n ems-remove-stream-alias --connection-uri=\"http://127.0.0.1:7777\" video1\n\nems-shutdown-stream-by-id\n-------------------------\n\nTerminate a stream.\n\n.. sourcecode:: sh\n\n ems-shutdown-stream-by-id --connection-uri=\"http://127.0.0.1:7777\" 55\n\nems-shutdown-stream-by-name\n---------------------------\n\nTerminate a stream.\n\n.. sourcecode:: sh\n\n ems-shutdown-stream-by-name --connection-uri=\"http://127.0.0.1:7777\" testpullstream\n\nems-transcode\n-------------\n\nChange the compression characteristics of an audio/video stream.\n\n.. sourcecode:: sh\n\n ems-transcode --connection-uri=\"http://127.0.0.1:7777\" --group_name=group --video-bitrates=200k \"rtmp://s2pchzxmtymn2k.cloudfront.net/cfx/st/mp4:sintel.mp4\" stream1\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomi77%2Fems-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomi77%2Fems-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomi77%2Fems-cli/lists"}