mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
42 lines
788 B
Markdown
42 lines
788 B
Markdown
# Video2Document
|
|
|
|
## Installation
|
|
|
|
Follow the steps below to install Video2Document (v2d):
|
|
|
|
### 1. Install Node.js
|
|
|
|
Download and install Node.js from [https://nodejs.org/en](https://nodejs.org/en)
|
|
|
|
### 2. Clone the Repository
|
|
|
|
Clone the repository using Git:
|
|
|
|
```bash
|
|
git clone https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
|
|
```
|
|
|
|
Alternatively, you can download the ZIP file and extract it manually.
|
|
|
|
### 3. Install Dependencies
|
|
|
|
Navigate to the video2document directory and install all dependencies:
|
|
|
|
```bash
|
|
cd video2document
|
|
npm install
|
|
```
|
|
|
|
### 4. Start the Program
|
|
|
|
Launch the program with:
|
|
|
|
```bash
|
|
npm start
|
|
```
|
|
|
|
### 5. If Process Fails: Install FFmpeg
|
|
|
|
Make sure that **ffmpeg** is installed on your system, as it may be required for video processing.
|
|
|
|
--- |