We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const tracks = JSON.parse(zlib.gunzipSync(Buffer.from(trackStr, 'base64'))); console.log(`initialSize: ${trackStr.length}`); const pbf = new Pbf(); (protos.Tracks as any).write({ track: tracks }, pbf); const pbfBuffer = Buffer.from(pbf.finish()); console.log(`pbfBuffer`, pbfBuffer); const zipPbfBuffer = zlib.gzipSync(pbfBuffer, { level: 9 }); console.log(`zipPbfBuffer`, zipPbfBuffer); console.log(`zipPbfBuffer.toString().length`, zipPbfBuffer.toString().length); console.log(`zipPbfBuffer.toString('base64').length`, zipPbfBuffer.toString('base64').length);
initialSize: 6284 zipPbfBuffer.toString().length 3925 zipPbfBuffer.toString('base64').length 5576
The text was updated successfully, but these errors were encountered:
Move post-processing server side.
3aa9cca
Fixes #12, #26, #34
No branches or pull requests
The text was updated successfully, but these errors were encountered: