Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vikpe/mvdparser-js
Extract information from QuakeWorld MVD demos.
https://github.com/vikpe/mvdparser-js
demos mvd quake quakeworld
Last synced: 2 months ago
JSON representation
Extract information from QuakeWorld MVD demos.
- Host: GitHub
- URL: https://github.com/vikpe/mvdparser-js
- Owner: vikpe
- License: mit
- Created: 2024-06-18T15:46:16.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T17:54:13.000Z (6 months ago)
- Last Synced: 2024-09-19T01:29:54.448Z (3 months ago)
- Topics: demos, mvd, quake, quakeworld
- Language: TypeScript
- Homepage:
- Size: 1.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# mvdparser-js [![Test](https://github.com/vikpe/mvdparser-js/actions/workflows/test.yml/badge.svg)](https://github.com/vikpe/mvdparser-js/actions/workflows/test.yml)
> Extract information from QuakeWorld MVD demos.```ts
function getDemoDuration(data: Uint8Array) : number | null {}
function getMatchDuration(data: Uint8Array) : number | null {}
function getKtxstatsAsString(data: Uint8Array) : string | null {}
function getServerinfoAsObject(data: Uint8Array) : { [key: string]: string } | null {}
function getServerinfoAsString(data: Uint8Array) : string | null {}
function getSha256(data: Uint8Array) : string | null {}
```