UNPKG

@snwfdhmp/soundcloud-downloader

Version:

Download Soundcloud audio with Node.js, this is a forked version, the original script was written by @zackradisic and forked by @nasheedstation

8 lines (7 loc) 359 B
/** @internal @packageDocumentation */ /// <reference types="node" /> import m3u8stream from 'm3u8stream'; import { Transcoding } from './info'; import { AxiosInstance } from 'axios'; declare const fromMedia: (media: Transcoding, clientID: string, axiosInstance: AxiosInstance) => Promise<NodeJS.ReadableStream | m3u8stream.Stream>; export default fromMedia;