├── .babelrc ├── .editorconfig ├── .electron-vue ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── README.md ├── appveyor.yml ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── package.json ├── screen_shots └── ffedit_crop.jpg ├── src ├── index.ejs ├── main │ ├── index.dev.js │ ├── index.js │ └── ui │ │ └── menu.js └── renderer │ ├── App.vue │ ├── assets │ ├── .gitkeep │ └── fonts │ │ └── icomoon │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ └── index.scss │ ├── components │ ├── BoundsEditor.vue │ ├── MainProcessor.vue │ ├── ProcessorStatus.vue │ ├── ProcessorToolbar.vue │ ├── TrimEditor.vue │ ├── VideoEditor.vue │ ├── VideoList.vue │ └── VideoOutput.vue │ ├── main.js │ ├── router │ └── index.js │ ├── store │ ├── index.js │ └── modules │ │ ├── Counter.js │ │ └── index.js │ └── utils │ ├── math.js │ ├── resource.js │ ├── string.js │ └── video.js ├── static └── .gitkeep └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/package.json -------------------------------------------------------------------------------- /screen_shots/ffedit_crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/screen_shots/ffedit_crop.jpg -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/ui/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/main/ui/menu.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/assets/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/assets/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /src/renderer/assets/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/assets/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/assets/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /src/renderer/assets/fonts/icomoon/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/assets/fonts/icomoon/index.scss -------------------------------------------------------------------------------- /src/renderer/components/BoundsEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/BoundsEditor.vue -------------------------------------------------------------------------------- /src/renderer/components/MainProcessor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/MainProcessor.vue -------------------------------------------------------------------------------- /src/renderer/components/ProcessorStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/ProcessorStatus.vue -------------------------------------------------------------------------------- /src/renderer/components/ProcessorToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/ProcessorToolbar.vue -------------------------------------------------------------------------------- /src/renderer/components/TrimEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/TrimEditor.vue -------------------------------------------------------------------------------- /src/renderer/components/VideoEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/VideoEditor.vue -------------------------------------------------------------------------------- /src/renderer/components/VideoList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/VideoList.vue -------------------------------------------------------------------------------- /src/renderer/components/VideoOutput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/components/VideoOutput.vue -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/router/index.js -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/modules/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/store/modules/Counter.js -------------------------------------------------------------------------------- /src/renderer/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/store/modules/index.js -------------------------------------------------------------------------------- /src/renderer/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/utils/math.js -------------------------------------------------------------------------------- /src/renderer/utils/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/utils/resource.js -------------------------------------------------------------------------------- /src/renderer/utils/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/utils/string.js -------------------------------------------------------------------------------- /src/renderer/utils/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/src/renderer/utils/video.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milcktoast/ffEdit/HEAD/yarn.lock --------------------------------------------------------------------------------