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/codec-parser/src/codecs/opus/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /* Copyright 2020-2023 Ethan Halsall
This file is part of codec-parser.
codec-parser is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
codec-parser is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
*/
import { frameStore } from "../../globals.js";
import {
codecFrames,
data,
pageSequenceNumber,
codec,
segments,
logError,
parseOggPage,
enable,
getHeaderFromUint8Array,
} from "../../constants.js";
import Parser from "../Parser.js";
import OpusFrame from "./OpusFrame.js";
import OpusHeader from "./OpusHeader.js";
export default class OpusParser extends Parser {
constructor(codecParser, headerCache, onCodec) {
super(codecParser, headerCache);
this.Frame = OpusFrame;
this.Header = OpusHeader;
onCodec(this[codec]);
this._identificationHeader = null;
}
get [codec]() {
return "opus";
}
/**
* @todo implement continued page support
*/
[parseOggPage](oggPage) {
if (oggPage[pageSequenceNumber] === 0) {
// Identification header
this._headerCache[enable]();
this._identificationHeader = oggPage[data];
} else if (oggPage[pageSequenceNumber] === 1) {
// OpusTags
} else {
oggPage[codecFrames] = frameStore
.get(oggPage)
[segments].map((segment) => {
const header = OpusHeader[getHeaderFromUint8Array](
this._identificationHeader,
segment,
this._headerCache,
);
if (header) return new OpusFrame(segment, header);
this._codecParser[logError](
"Failed to parse Ogg Opus Header",
"Not a valid Ogg Opus file",
);
});
}
return oggPage;
}
}
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0078 ]-- |