项目作者: Sweets

项目描述 :
SoundCloud downloader.
高级语言: JavaScript
项目地址: git://github.com/Sweets/sndcld-dl.git
创建时间: 2017-04-13T00:04:45Z
项目社区:https://github.com/Sweets/sndcld-dl

开源协议:MIT License

下载


sndcld-dl

SoundCloud downloader.

Usage

sndcld-dl works both as a module and standalone program. There is only one dependency required that is not packaged with node.js by default, and that is request.

To use sndcld-dl from the command line, simply execute $ node /path/to/sndcld-dl.js https://soundcloud.com/iameden/r-r /tmp/eden.mp3.

If you would like to use it as a node module, refer to the code snippet below.

  1. let sndcld_dl = require("./sndcld-dl");
  2. sndcld_dl("https://soundcloud.com/iameden/r-r", "/tmp/eden.mp3");