Joe Kaikaty
Joe Kaikaty
> An small fix I've found is adding the following styles: > > ``` > /deep/ { > /* This code is to hide the video title and sharing settings...
Added a delay for 5 seconds ``` async function delay(ms) { // return await for better async stack trace support in case of errors. return await new Promise(resolve => setTimeout(resolve,...
if you try 1 request and bump the result to a file and open it, you can see at the beginning some header information and then the audio data.
``` requestOptions.headers = Object.assign({}, requestOptions.headers, { Range: `bytes=${0}-${''}`, }); const ondata = chunk => { downloaded += chunk.length; stream.emit('progress', chunk.length, downloaded, contentLength); console.log(chunk.length); console.log(downloaded); console.log(contentLength); }; ``` results: ``` 16384...
``` const stream = createStream(); doStream(stream, url).on('end', ()=> { doStream(stream, url) }) ``` ``` function doStream(stream, url) { const requestOptions = Object.assign({}, [], { maxReconnects: 6, maxRetries: 3, backoff: {...
``` ftypdash iso6mp41 8moov lmvhd ������ �� @ (mvex trex �trak \tkhd ������ @ 8mdia mdhd ������ �� U�...
``` [ 'Last-Modified', 'Fri, 28 May 2021 12:17:52 GMT', 'Content-Type', 'audio/mp4', 'Date', 'Fri, 28 May 2021 12:18:44 GMT', 'Expires', 'Fri, 01 Jan 1990 00:00:00 GMT', 'Cache-Control', 'no-cache, must-revalidate', 'Accept-Ranges', 'bytes',...
``` [ftyp] size=8+16 major_brand = dash minor_version = 0 compatible_brand = iso6 compatible_brand = mp41 [moov] size=8+560 [mvhd] size=12+96 timescale = 48000 duration = 0 duration(ms) = 0 [mvex] size=8+32...
Fixed lint issues and deleted .idea contents
The diffrence between mix playlist and normal one is that the mix's misses the author informations like avatar and name which failed for me, otherwise it works like a normal...