-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fd4f0d
commit 4f792a7
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
# Simple Tkinter AVI→MP4 convertor | ||
|
||
It is a simple application based on Tkinter and Moviepy to convert AVI video to MP4 video. | ||
|
||
|
||
|
||
|
||
## Installation | ||
|
||
First you need to create a virtual environment using Python 3.11.6 (only this version was tested). You can easilly perform that in PyCharm. | ||
|
||
Otherwise you can open a terminal or command prompt and navigate to the directory where you want to create the virtual environment. | ||
|
||
Run the following command to create a new virtual environment named `venv`: | ||
```bash | ||
python3.11 -m venv venv | ||
``` | ||
|
||
Activate the virtual environment. On Windows, you can do this by running: | ||
```bash | ||
venv\Scripts\activate | ||
``` | ||
On macOS and Linux, you can do this by running: | ||
```bash | ||
source venv/bin/activate | ||
``` | ||
|
||
Finally | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
|