Buckets:
dieumercimvemba/mediastore / scripts /whatsapp-bridge /node_modules /music-metadata /lib /mpeg /ExtendedLameHeader.js
| /** | |
| * Extended Lame Header | |
| */ | |
| import * as Token from 'token-types'; | |
| import * as common from '../common/Util.js'; | |
| import { ReplayGain } from './ReplayGainDataFormat.js'; | |
| /** | |
| * Info Tag | |
| * @link http://gabriel.mp3-tech.org/mp3infotag.html | |
| * @link https://github.com/quodlibet/mutagen/blob/abd58ee58772224334a18817c3fb31103572f70e/mutagen/mp3/_util.py#L112 | |
| */ | |
| export const ExtendedLameHeader = { | |
| len: 27, | |
| get: (buf, off) => { | |
| const track_peak = Token.UINT32_BE.get(buf, off + 2); | |
| return { | |
| revision: common.getBitAllignedNumber(buf, off, 0, 4), | |
| vbr_method: common.getBitAllignedNumber(buf, off, 4, 4), | |
| lowpass_filter: 100 * Token.UINT8.get(buf, off + 1), | |
| track_peak: track_peak === 0 ? null : track_peak / 2 ** 23, | |
| track_gain: ReplayGain.get(buf, 6), | |
| album_gain: ReplayGain.get(buf, 8), | |
| music_length: Token.UINT32_BE.get(buf, off + 20), | |
| music_crc: Token.UINT8.get(buf, off + 24), | |
| header_crc: Token.UINT16_BE.get(buf, off + 24) | |
| }; | |
| } | |
| }; | |
Xet Storage Details
- Size:
- 1.08 kB
- Xet hash:
- e38f3c1c7e4b46e13f658678cdba141a7b125816774d4fe6028d254c2c7cc001
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.