
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
@scriptivox-api/cli
Advanced tools
Command-line client for the Scriptivox transcription API — transcribe audio and video from your shell or a script. 119 languages, speaker diarization, word-level timestamps, SRT/VTT/text export.
Command-line client for the Scriptivox transcription API. Transcribe recorded audio and video from your shell or a script — 119 languages, speaker diarization, word-level timestamps, and SRT / WebVTT / plain-text export.
It is a peer of @scriptivox/mcp-server:
same API, different transport.
Scriptivox is two products, billed independently:
| scriptivox.com | This API | |
|---|---|---|
| What it is | Web app you sign in to | REST API you call with a key |
| Billing | Subscription — Pro includes unlimited transcription | Pay as you go, $0.20 per hour of audio |
| Balance | n/a | Prepaid, $5 minimum |
A website subscription does not grant API credit. Even on Pro, API calls draw down a separate
prepaid balance. That is why this package is @scriptivox-api/cli and the command is
scriptivox-api rather than scriptivox.
This tool talks to https://api.scriptivox.com/v1 and nothing else. Authentication is an
sk_live_… API key — there is no session login, no cookie handling, and no access to the web app
or the developer dashboard. Every command maps one-to-one to an operation in the
OpenAPI specification.
npm install -g @scriptivox-api/cli
# or run it without installing
npx @scriptivox-api/cli --help
Requires Node 18 or newer. No runtime dependencies.
Create a key at platform.scriptivox.com/keys and add credit at /billing — $0.20 per hour of audio, $5 minimum deposit.
export SCRIPTIVOX_API_KEY=sk_live_...
Or pass --api-key per command.
# Transcribe a public URL and wait for the result
scriptivox-api transcribe https://example.com/meeting.mp3 --language en --diarize --wait
# Upload a local file, transcribe it, wait
scriptivox-api transcribe ./interview.m4a --diarize --speakers 2 --wait
# Export captions (stdout is clean — progress goes to stderr)
scriptivox-api get 4f3c... --format srt --max-words 3 > interview.srt
scriptivox-api get 4f3c... --format vtt --speakers-in-captions true > interview.vtt
# Inspect and manage jobs
scriptivox-api status 4f3c...
scriptivox-api list --status completed --limit 20 --json
scriptivox-api cancel 4f3c...
scriptivox-api delete 4f3c...
# Check your balance
scriptivox-api balance
Run scriptivox-api --help for every flag.
Structured output goes to stdout, progress and diagnostics to stderr, so redirection
produces clean files even while the command is reporting status. --json emits JSON on stdout and
silences the progress messages entirely.
Exit codes are part of the contract:
| Code | Meaning |
|---|---|
0 | Success |
1 | Usage error — bad arguments, missing API key, unreadable file |
2 | API error — the machine-readable error code is printed on stderr |
if ! scriptivox-api transcribe ./call.mp3 --wait --json > result.json; then
echo "transcription failed with exit $?" >&2
fi
transcribe returns before the work is done. Without --wait you get a job ID; input
problems (unreachable URL, unsupported media, audio too long) surface later on status, with
status: failed and an error.code. Check the poll path, not just the submit call.--language when you know it. Auto-detection works most of the time but mis-routes on
short clips, code-switched audio, and files that open with music. Passing the language is also
faster, because the model skips its detection pass.--speakers needs --diarize. It is a prior, not a hard cap: asking for 5 may yield 6.--idempotency-key makes retries safe. The same key with the same body replays the cached
response for 24 hours instead of starting a second, separately-billed job.npm install
npm run build
npm test # offline smoke tests: arg parsing, help, exit codes
test/smoke.mjs never touches the network. Keep it that way — it is the guard that stops a
refactor from silently changing an exit code that scripts depend on.
MIT
FAQs
Command-line client for the Scriptivox transcription API — transcribe audio and video from your shell or a script. 119 languages, speaker diarization, word-level timestamps, SRT/VTT/text export.
The npm package @scriptivox-api/cli receives a total of 11 weekly downloads. As such, @scriptivox-api/cli popularity was classified as not popular.
We found that @scriptivox-api/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.