ffmpeg-explorer/README.md

49 lines
2.1 KiB
Markdown
Raw Permalink 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-31 13:53:41 -04:00
**~~~~> [ffmpeg.lav.io](https://ffmpeg.lav.io) <~~~~**
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
2023-08-29 18:40:21 -04:00
Contributions are welcome! Take a look at the todo list below if you'd like to add a new feature, or the issues page if you want to try to fix a bug.
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
```
2023-08-31 13:53:41 -04:00
**I'm also looking for good FFmpeg examples. If you make a nice filtergraph in the tool, just hit cmd-s (or ctrl-s on windows/linux), and it will export a json file of your graph. Feel free to post those to the issues page for possible inclusion in the tool.**
2023-08-31 12:49:59 -04:00
2023-08-20 15:57:09 -04:00
## Known Issues
- 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-29 01:15:53 -04:00
- [x] Use commas to separate filters when possible
2023-08-29 16:46:59 -04:00
- [x] Include some default fonts so text works.
2023-08-29 12:10:30 -04:00
- [x] Allow gif as output
2023-08-29 18:42:48 -04:00
- [ ] Add more tests!
2023-08-31 12:49:59 -04:00
- [x] MAYBE allow users to upload their own videos
2023-08-25 14:43:53 -04:00
- [ ] 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)