From 3f311bf7134502301b27a36ec5b414deeec81132 Mon Sep 17 00:00:00 2001 From: Sam Lavigne Date: Sun, 20 Aug 2023 15:57:09 -0400 Subject: [PATCH] Update readme --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index f626da0..9d8f819 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,30 @@ # Interactive FFMPEG Command Generator A work in progress web tool to explore FFmpeg. + +To run in dev mode: + +``` +bash +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 + +- [ ] Rendering progress bar +- [ ] "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 +- [ ] Somehow figure out how to deal with complex filtergraphs +- [ ] Add more sample inputs (at least need an image and an audio file) +- [ ] Put filter options in a separate panel +- [ ] Add filters that generate content +- [ ] MAYBE add previews in the filter list itself