ffmpeg-explorer/README.md

43 lines
1.8 KiB
Markdown
Raw Normal View History

2023-08-18 17:23:56 -04:00
# Interactive FFMPEG Command Generator
2023-08-18 18:59:16 -04:00
2023-08-26 17:25:42 -04:00
A work in progress web tool to explore FFmpeg. Please log [issues/suggestions](https://github.com/antiboredom/ffmpeg-explorer/issues). Made with [svelte](https://svelte.dev/), [xyflow](https://github.com/wbkd/react-flow/tree/xyflow), and [ffmpeg.wasm](https://github.com/ffmpegwasm/ffmpeg.wasm).
2023-08-20 15:57:09 -04:00
To run in dev mode:
2023-08-20 15:58:19 -04:00
```bash
2023-08-20 15:57:09 -04:00
npm install
npm run dev
```
## Known Issues
- Combining audio and video filters can fail
- Rendering on chrome doesn't work in multi-threading mode (it seems to fail on mp4s)
## Todo
2023-08-27 17:44:27 -04:00
- [x] Rendering progress bar
2023-08-20 15:57:09 -04:00
- [ ] "Cancel Render" button
- [ ] Disable/enable filters without removing them
- [ ] Deal with duplicate parameters in filters (sometimes filters have a long and short option)
- [ ] Add more help/documentation in the filters (there is more on FFmpeg's site that I could incorporate)
- [ ] Add input options like seek and trim
2023-08-25 14:43:53 -04:00
- [x] Somehow figure out how to deal with complex filtergraphs
2023-08-20 15:57:09 -04:00
- [ ] Add more sample inputs (at least need an image and an audio file)
2023-08-25 14:43:53 -04:00
- [x] Put filter options in a separate panel
2023-08-20 15:57:09 -04:00
- [ ] Add filters that generate content
2023-08-20 16:05:01 -04:00
- [ ] Handle audio and image output.
2023-08-21 12:53:29 -04:00
- [ ] Allow command to be editable
2023-08-26 17:04:19 -04:00
- [ ] Use commas to separate filters when possible
- [ ] Include some default fonts so text works. Example -> [here](https://github.com/ffmpegwasm/ffmpeg.wasm-core/blob/n4.3.1-wasm/wasm/examples/browser/freetype2.html)
- [ ] Allow gif as output
2023-08-25 14:43:53 -04:00
- [ ] MAYBE allow users to upload their own videos
- [ ] MAYBE make each part of the output command clickable, to highlight the corresponding nodes
2023-08-20 15:57:09 -04:00
- [ ] MAYBE add previews in the filter list itself
2023-08-26 17:25:42 -04:00
## Inspiration / Alternatives
- [ffmpeg.guide](https://ffmpeg.guide)
- [ffmpeg.app](https://ffmpeg.app)
- [this nice screenshot](https://fosstodon.org/@wader/110855089546846001)