soundcloud-downloader
Version:
Download Soundcloud audio with Node.js
16 lines (13 loc) • 297 B
text/typescript
/**
* 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