You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -52,7 +52,7 @@ On Windows systems, you also need:
52
52
53
53
## Installation
54
54
55
-
You can install and use VideoMorph on GNU/Linux and Windows systems. There are several ways you can use to install the application. Let's take a look at them. We haven't tried properly **yet** on MacO :-|
55
+
You can install and use VideoMorph on GNU/Linux and on Windows systems. There are several ways you can use to install the application. Let's take a look at them. We haven't tried properly **yet** on macOS :-|
56
56
57
57
### Installing From the Binary Packages
58
58
@@ -63,12 +63,13 @@ If you're using GNU/Linux or Windows, then you can install VideoMorph by using t
63
63
You can install VideoMorph on Debian/Ubuntu and derivatives by running the following steps:
64
64
65
65
1. Download the `.deb` package
66
+
66
67
2. Open a terminal, and run the following commands as **root** or using **sudo**:
67
68
68
-
```bash
69
-
$ apt install ffmpeg python3 python3-pyqt5
69
+
```sh
70
+
$ sudo apt install ffmpeg python3 python3-pyqt6
70
71
$ cd<directory containing VideoMorph binary>
71
-
$ dpkg -i videomorph_x.x_all.deb
72
+
$ sudo dpkg -i videomorph_x.x_all.deb
72
73
```
73
74
74
75
That should be enough to get VideoMorph (and its dependencies) installed on your system.
@@ -80,7 +81,9 @@ You can also install VideoMorph's `.deb` package, by using GDebi, which is a GUI
80
81
To install VideoMorph on your Windows system, you can:
81
82
82
83
1. Download the installer that corresponds to your architecture
84
+
83
85
2. Run the installer as an `administrator`
86
+
84
87
3. Follow on-screen instructions
85
88
86
89
### Installing Form the Source Packages
@@ -92,7 +95,7 @@ You can install VideoMorph from the source packages. Let's take a look at how to
92
95
To install the application from the source package on a GNU/Linux system, do the following:
93
96
94
97
1. Download the `.tar.gz` package
95
-
2. Open a terminal, and run the following commands as **root** or using **sudo **when specified (as in step 3 and 5):
98
+
2. Open a terminal, and type in this:
96
99
97
100
```bash
98
101
$ tar -xvf videomorph-x.x.tar.gz
@@ -123,7 +126,7 @@ $ cd videomorph-x.x
123
126
$ sudo ./install.sh
124
127
```
125
128
126
-
This command will install VideoMorph and its dependencies (Ffmpeg, and PyQt5) from your distro's current repository.
129
+
This command will install VideoMorph, and its dependencies, (Ffmpeg, and PyQt6), from your distro's current repository.
127
130
128
131
#### On Windows
129
132
@@ -132,11 +135,11 @@ To install VideoMorph from the source package on your Windows system, first, mak
132
135
1. Download and decompress the `.zip` source package
133
136
2. Open your Windows' command-line (`cmd.exe`), and type the following commands:
134
137
135
-
```doscon
136
-
C:/> cd videomorph-x.x
137
-
C:/> pip install -r requirements.txt
138
-
C:/> python3 setup.py build
139
-
C:/> python3 setup.py install
138
+
```powershell
139
+
PS> cd videomorph-x.x
140
+
PS> pip install -r requirements.txt
141
+
PS> python3 setup.py build
142
+
PS> python3 setup.py install
140
143
```
141
144
142
145
This will install VideoMorph on your system, but you'll need to install Ffmpeg manually.
@@ -174,7 +177,7 @@ To set up the development environment, and contribute code to VideoMorph, just o
174
177
```console
175
178
$ python3 -m venv venv
176
179
$ source venv/bin/activate
177
-
(venv)$ pip install -r requirements.txt
180
+
(venv)$ pip install -r requirements.txt
178
181
```
179
182
180
183
You also need to install the Ffmpeg library on your system.
@@ -183,9 +186,9 @@ You also need to install the Ffmpeg library on your system.
183
186
184
187
The members of the VideoMorph Development Team that can commit changes into the repo are:
0 commit comments