# videoeditor **Repository Path**: aichenkun/videoeditor ## Basic Information - **Project Name**: videoeditor - **Description**: Web Based Video Editor Using MLT Framework, Bachelor thesis - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-01-02 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Web Based Video Editor Using MLT Framework ![Overal schema](https://raw.githubusercontent.com/kudlav/videoeditor/master/docs/schema.png) ## See it in action (YouTube video) [https://youtu.be/GemMThnqULE](https://youtu.be/GemMThnqULE) ## Badges [![Build Status](https://travis-ci.org/kudlav/videoeditor.svg?branch=master)](https://travis-ci.org/kudlav/videoeditor) ## Installation Project requires: - [Node.js](https://nodejs.org/) 8.9.0+ to run server. - MLT framework to export video. - FFmpeg to handle multimedia files. ```sh $ sudo apt install melt $ sudo apt install ladspa-sdk ffmpeg ``` ### Development Install the dependencies and devDependencies and start the server and webpack for development. Don't forget to change `config.js` file. ```sh $ npm install $ npm run dev-build $ npm run dev-start ``` You can run code check using ESLint: ```sh $ npm run eslint ``` ### Production Install the dependencies and start the server and webpack for production. Don't forget to change `config.js` file. ```sh $ export NODE_ENV=production $ npm install $ npm run build $ npm start ```