npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

volcengine-las-cli

v1.1.0

Published

LAS Command Line Interface - Unified CLI for LAS operators

Readme

LAS CLI

LAS Command Line Interface - 统一的 LAS 算子调用 CLI 工具。

安装

方式1: 使用 npm

npm install -g @las-ai/cli

方式2: 直接使用二进制文件

curl -fsSL https://lf3-static.bytednsdoc.com/obj/eden-cn/foeh7bfbvo/install-cli.sh | sudo bash

使用

鉴权配置

# 设置 LAS 算子 API Key
las-cli auth token <your-token>

# 查看当前配置
las-cli auth show

# 清除 Token
las-cli auth clear

token获取的方式

token获取方式

算子操作

# 列出所有可用算子
las-cli operators list

# 查看某个算子的帮助
las-cli operators help las_asr_pro

# 调用算子
las-cli operators call las_asr_pro \
  --audio_url "https://example.com/audio.wav" \
  --audio_format wav \
  --enable_punc true

# 从 JSON 文件读取参数
las-cli operators call las_asr_pro --params-file params.json

# 仅提交任务不等待
las-cli operators call las_asr_pro --audio_url "..." --audio_format wav --no-wait

支持的算子

  • las_asr_pro - 增强版语音转文字
  • las_audio_convert - 音频格式转换
  • las_audio_extract_and_split - 音频提取与分割
  • las_image_resample - 图片重采样
  • las_pdf_parse_doubao - PDF 文档解析
  • las_video_edit - 视频编辑
  • las_video_inpaint - 视频修复
  • las_video_resize - 视频缩放
  • las_vlm_video - 视频理解

配置文件

配置文件存储在 ~/.las-cli/config.json

构建二进制文件

npm run pkg

生成的二进制文件在 dist/bin/ 目录。

License

MIT