A simple web interface for MediaInfo, allowing you to inspect media file metadata directly in your browser. It uses mediainfo.js (WASM) to process files locally, so no data is uploaded to a server.
- Drag and drop support
- Local processing (fast and private)
- Syntax-highlighted text output
- Clean, minimal UI
- Node.js installed on your system.
- Clone or download this repository.
- Install dependencies:
npm install
Start the local server:
node server.jsOpen your browser and navigate to http://localhost:3000.
The application uses the mediainfo.js library, which is a WASM port of the original MediaInfo C++ library. The Express server is only used to serve the static frontend files and the WASM binary. All media analysis happens on the client side.