Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Ffmpeg process manager (cli and graphql)
$ sudo npm install remuxme -g
$ remux
remote remux node config change
graphql
Commands:
help [command...] Provides help for a given command.
exit Exits application.
list [options] List remux processes.
start <id> Start ffmpeg service.
stop <id> Stop ffmpeg service.
restart <id> Restart ffmpeg service.
info <id> Get full information about ffmpeg service.
taskset <id> <cpus> Change CPU affinity for working process.
process set <id> [variable] [value] Set or view ffmpeg-service valiables.
server start Start/Restart Remux server.
server restart Restart Remux server.
server stop Stop Remux server.
server set [variable] [value] Set or view Remux valiables.
connect local Connect to local server.
connect host <id> Connect to remote server.
connect info Info for current Remux host connection.
host list List of configured remote hosts.
host settings <id> Get host settings by id.
host add <name> <ssl> <host> <port> <user> <pass> Add new host.
host remove <id> Remove host configuration.
host set <id> <variable> <value> Set host valiable.
log start <id> Attach to log stream for process.
log stop <id> Disconnect from log stream for process.
on first start remux make ~/.remux.io/
folder and put all configuration files there.
to edit demo ffmped process or add new please look ~/.remux.io/processes.json
(also the feature to change ffmpeg params and add new process from cli is in road map )
host
: ip address.
port
: port number of remux server.
debugGraphQL
: If true
, presents GraphiQL when the GraphQL endpoint is loaded in a browser.
admin
: user name of server access.
pass
: password for user.
ffmpegDefaultPath
: path to default ffmpeg binary.
{
"ssl": "false",
"host": "0.0.0.0",
"port": 4000,
"debugGraphQL": true,
"admin": "remux",
"pass": "remuxme",
"ffmpegDefaultPath": "/usr/bin/ffmpeg"
}
name
: Name of ffmpeg process.
description
: Description for ffmpeg process.
program
: Path to ffmpeg bin. If null
then remux will use default ffmpeg from remux.json.
args
: Array of ffmpeg arguments.
cpus
: Taskset settings.
{processes:[
{
"name": "NullTV",
"description": "Ffmpeg testsrc to udp://127.0.0.1:30000",
"program": null,
"args": [
"-re",
"-f","lavfi",
"-i","testsrc=duration=-1:size=640x360:rate=25",
"-c:v","libx264",
"-g","50",
"-r","25",
"-f","mpegts",
"-y","udp://127.0.0.1:30000"
],
"cpus": "0-1"
}
]}
FAQs
ffmpeg process manager
We found that remuxme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.