├── .eslintrc.json ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── docs └── showcase.mp4 ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── editor │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── Editor.tsx │ ├── Menu.tsx │ ├── Resources.tsx │ ├── TimeLine.tsx │ ├── entity │ │ ├── AnimationResource.tsx │ │ ├── AudioResource.tsx │ │ ├── EffectResource.tsx │ │ ├── Element.tsx │ │ ├── ImageResource.tsx │ │ ├── TextResource.tsx │ │ └── VideoResource.tsx │ ├── panels │ │ ├── AnimationsPanel.tsx │ │ ├── AudioResourcesPanel.tsx │ │ ├── EffectsPanel.tsx │ │ ├── ElementsPanel.tsx │ │ ├── ExportVideoPanel.tsx │ │ ├── FillPanel.tsx │ │ ├── ImageResourcesPanel.tsx │ │ ├── TextResourcesPanel.tsx │ │ └── VideoResourcesPanel.tsx │ ├── shared │ │ └── UploadButton.tsx │ └── timeline-related │ │ ├── DragableView.tsx │ │ ├── ScaleRangeInput.tsx │ │ ├── SeekPlayer.tsx │ │ └── TimeFrameView.tsx ├── store │ ├── Store.ts │ └── index.tsx ├── types.ts └── utils │ ├── fabric-utils.ts │ └── index.ts ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/README.md -------------------------------------------------------------------------------- /docs/showcase.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/docs/showcase.mp4 -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/editor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/app/editor/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/Editor.tsx -------------------------------------------------------------------------------- /src/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/Menu.tsx -------------------------------------------------------------------------------- /src/components/Resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/Resources.tsx -------------------------------------------------------------------------------- /src/components/TimeLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/TimeLine.tsx -------------------------------------------------------------------------------- /src/components/entity/AnimationResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/entity/AnimationResource.tsx -------------------------------------------------------------------------------- /src/components/entity/AudioResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/entity/AudioResource.tsx -------------------------------------------------------------------------------- /src/components/entity/EffectResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/entity/EffectResource.tsx -------------------------------------------------------------------------------- /src/components/entity/Element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/entity/Element.tsx -------------------------------------------------------------------------------- /src/components/entity/ImageResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/entity/ImageResource.tsx -------------------------------------------------------------------------------- /src/components/entity/TextResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/entity/TextResource.tsx -------------------------------------------------------------------------------- /src/components/entity/VideoResource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/entity/VideoResource.tsx -------------------------------------------------------------------------------- /src/components/panels/AnimationsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/AnimationsPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/AudioResourcesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/AudioResourcesPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/EffectsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/EffectsPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/ElementsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/ElementsPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/ExportVideoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/ExportVideoPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/FillPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/FillPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/ImageResourcesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/ImageResourcesPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/TextResourcesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/TextResourcesPanel.tsx -------------------------------------------------------------------------------- /src/components/panels/VideoResourcesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/panels/VideoResourcesPanel.tsx -------------------------------------------------------------------------------- /src/components/shared/UploadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/shared/UploadButton.tsx -------------------------------------------------------------------------------- /src/components/timeline-related/DragableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/timeline-related/DragableView.tsx -------------------------------------------------------------------------------- /src/components/timeline-related/ScaleRangeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/timeline-related/ScaleRangeInput.tsx -------------------------------------------------------------------------------- /src/components/timeline-related/SeekPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/timeline-related/SeekPlayer.tsx -------------------------------------------------------------------------------- /src/components/timeline-related/TimeFrameView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/components/timeline-related/TimeFrameView.tsx -------------------------------------------------------------------------------- /src/store/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/store/Store.ts -------------------------------------------------------------------------------- /src/store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/store/index.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/fabric-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/utils/fabric-utils.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitDigga/fabric-video-editor/HEAD/tsconfig.json --------------------------------------------------------------------------------