video-editor-packx
v0.1.2
Published
A powerful video editor component for React applications.
Maintainers
Readme
Video Editor Packx
A powerful video editor component for React applications.
Installation
npm install video-editor-packx
# or
yarn add video-editor-packx
# or
pnpm add video-editor-packxUsage
Import the VideoEditor component and the styles in your React application.
import { VideoEditor } from 'video-editor-packx';
import 'video-editor-packx/dist/style.css';
function App() {
return (
<div style={{ width: '100vw', height: '100vh' }}>
<VideoEditor />
</div>
);
}
export default App;Features
- Timeline editing
- Transitions
- Animations
- Text and Image overlays
- And more...
Development
To run the project locally:
npm install
npm run devTo build the library:
npm run buildPublishing
To publish to npm:
- Login to npm:
npm login - Publish:
npm publish
