Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alfg/ffprobe-wasm
A Web-based FFProbe. Powered by FFmpeg, Vue and Web Assembly!
https://github.com/alfg/ffprobe-wasm
emscripten ffmpeg ffprobe multimedia vue wasm webassembly
Last synced: 4 days ago
JSON representation
A Web-based FFProbe. Powered by FFmpeg, Vue and Web Assembly!
- Host: GitHub
- URL: https://github.com/alfg/ffprobe-wasm
- Owner: alfg
- License: mit
- Created: 2020-09-24T02:02:42.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-13T15:03:56.000Z (11 months ago)
- Last Synced: 2024-08-01T17:41:32.714Z (3 months ago)
- Topics: emscripten, ffmpeg, ffprobe, multimedia, vue, wasm, webassembly
- Language: Vue
- Homepage: https://ffprobe-wasm.netlify.app/
- Size: 6.12 MB
- Stars: 141
- Watchers: 6
- Forks: 34
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `FFProbe Wasm`
> A Web-based FFProbe. Powered by FFmpeg, Vue and Web Assembly!https://ffprobe-wasm.netlify.app/
## Development
`ffprobe-wasm` uses [emscripten](https://emscripten.org/) to compile [FFmpeg](https://ffmpeg.org)'s [libav](https://ffmpeg.org/doxygen/4.1/index.html) to [Web Assembly](https://webassembly.org/) via [Docker](https://www.docker.com/).Emscripten is also used to create and compile the Wasm bindings to be imported by the browser.
### Requirements
* `nodejs` - https://nodejs.org/en/download/
* `docker` - https://docs.docker.com/desktop/### Setup
* Clone project and build the Wasm module via Docker:
```
docker-compose run ffprobe-wasm make
```This will build the Wasm module and place it into the `/dist` directory.
* Copy the JS and Wasm modules into `www/public/`:
```
cp -a dist/. www/public/
```* Install and run the web application:
```
cd www
npm install
npm run serve
```* Load `http://localhost:8080/` in the web browser.
### Compiles and minifies for production
```
npm run build
```### Deploy
Builds and deploys to `gh-pages` branch.However, I am hosting on [Netlify](https://netlify.com) to enable [SharedArrayBuffer](https://caniuse.com/sharedarraybuffer) support via the [required CORS headers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer).
```
npm run deploy
```### Resources
* https://ffmpeg.org/doxygen/4.1/index.html
* https://emscripten.org/
* https://vuejs.org
* https://bootstrap-vue.org## License
MIT