UNPKG

@nasheedstation/soundcloud-downloader

Version:

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

16 lines (13 loc) 297 B
/** * Soundcloud streams tracks using these protocols. */ enum STREAMING_PROTOCOLS { HLS = 'hls', PROGRESSIVE = 'progressive' } /** @internal */ export const _PROTOCOLS = { HLS: STREAMING_PROTOCOLS.HLS, PROGRESSIVE: STREAMING_PROTOCOLS.PROGRESSIVE } export default STREAMING_PROTOCOLS