Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/wa.picotech.app/public_html/node_modules/music-metadata/lib/mp4/ drwxr-xr-x | |
| Viewing file: Select action/file-type: "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Atom = void 0;
const debug_1 = require("debug");
const AtomToken = require("./AtomToken");
const debug = (0, debug_1.default)('music-metadata:parser:MP4:Atom');
class Atom {
static async readAtom(tokenizer, dataHandler, parent, remaining) {
// Parse atom header
const offset = tokenizer.position;
// debug(`Reading next token on offset=${offset}...`); // buf.toString('ascii')
const header = await tokenizer.readToken(AtomToken.Header);
const extended = header.length === BigInt(1);
if (extended) {
header.length = await tokenizer.readToken(AtomToken.ExtendedSize);
}
const atomBean = new Atom(header, header.length === BigInt(1), parent);
const payloadLength = atomBean.getPayloadLength(remaining);
debug(`parse atom name=${atomBean.atomPath}, extended=${atomBean.extended}, offset=${offset}, len=${atomBean.header.length}`); // buf.toString('ascii')
await atomBean.readData(tokenizer, dataHandler, payloadLength);
return atomBean;
}
constructor(header, extended, parent) {
this.header = header;
this.extended = extended;
this.parent = parent;
this.children = [];
this.atomPath = (this.parent ? this.parent.atomPath + '.' : '') + this.header.name;
}
getHeaderLength() {
return this.extended ? 16 : 8;
}
getPayloadLength(remaining) {
return (this.header.length === BigInt(0) ? remaining : Number(this.header.length)) - this.getHeaderLength();
}
async readAtoms(tokenizer, dataHandler, size) {
while (size > 0) {
const atomBean = await Atom.readAtom(tokenizer, dataHandler, this, size);
this.children.push(atomBean);
size -= atomBean.header.length === BigInt(0) ? size : Number(atomBean.header.length);
}
}
async readData(tokenizer, dataHandler, remaining) {
switch (this.header.name) {
// "Container" atoms, contains nested atoms
case 'moov': // The Movie Atom: contains other atoms
case 'udta': // User defined atom
case 'trak':
case 'mdia': // Media atom
case 'minf': // Media Information Atom
case 'stbl': // The Sample Table Atom
case '<id>':
case 'ilst':
case 'tref':
return this.readAtoms(tokenizer, dataHandler, this.getPayloadLength(remaining));
case 'meta': // Metadata Atom, ref: https://developer.apple.com/library/content/documentation/QuickTime/QTFF/Metadata/Metadata.html#//apple_ref/doc/uid/TP40000939-CH1-SW8
// meta has 4 bytes of padding, ignore
const peekHeader = await tokenizer.peekToken(AtomToken.Header);
const paddingLength = peekHeader.name === 'hdlr' ? 0 : 4;
await tokenizer.ignore(paddingLength);
return this.readAtoms(tokenizer, dataHandler, this.getPayloadLength(remaining) - paddingLength);
case 'mdhd': // Media header atom
case 'mvhd': // 'movie' => 'mvhd': movie header atom; child of Movie Atom
case 'tkhd':
case 'stsz':
case 'mdat':
default:
return dataHandler(this, remaining);
}
}
}
exports.Atom = Atom;
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0035 ]-- |