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
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,42 +12,42 @@ PyAutoSRT is a PySimpleGUI based desktop app to auto generate subtitle and trans
12
12
13
13
### Installation
14
14
15
-
if you don't have python on your Windows system you can get compiled version from https://github.com/botbahlul/pyautosrt/releases/
15
+
If you don't have python on your Windows system you can get compiled version from https://github.com/botbahlul/pyautosrt/releases/
16
16
17
-
just extract those ffmpeg.exe and pyautosrt.exe into a folder that has been added to PATH ENVIRONTMET for example in C:\Windows\system32
17
+
Just extract those ffmpeg.exe and pyautosrt.exe into a folder that has been added to PATH ENVIRONTMET for example in C:\Windows\system32
18
18
19
-
you can get latest version of ffmpeg from https://www.ffmpeg.org/
19
+
You can get latest version of ffmpeg from https://www.ffmpeg.org/
20
20
21
-
in Linux you have to install this script with python (version minimal 3.8 ) and install ffmpeg with your linux package manager for example in debian based linux distribution you can type :
21
+
In Linux you have to install this script with python (version minimal 3.8 ) and install ffmpeg with your linux package manager for example in debian based linux distribution you can type :
22
22
23
23
```
24
24
apt update
25
25
apt install -y ffmpeg
26
26
```
27
27
28
-
to install this pyautosrt, just type :
28
+
To install this pyautosrt, just type :
29
29
```
30
30
pip install pyautosrt
31
31
```
32
32
33
-
you can compile this script into a single executable file with pyinstaller by downloading "\__init\__.py" file, rename it to pyautosrt.py and type :
33
+
You can compile this script into a single executable file with pyinstaller by downloading "\__init\__.py" file, rename it to pyautosrt.py and type :
34
34
```
35
35
pip install pyinstaller
36
36
pyinstaller --onefile pyautosrt.py
37
37
```
38
38
39
-
the executable compiled file will be placed by pyinstaller into dist subfolder of your current working folder, so you can just rename and put that compiled file into a folder that has been added to your PATH ENVIRONTMENT so you can execute it from anywhere
39
+
The executable compiled file will be placed by pyinstaller into dist subfolder of your current working folder, so you can just rename and put that compiled file into a folder that has been added to your PATH ENVIRONTMENT so you can execute it from anywhere
40
40
41
41
I was succesfuly compiled it in Windows 10 with pyinstaller-5.1 and Pyhton-3.10.4, and python-3.8.12 in Debian 9
42
42
43
-
another alternative way to install this script with python is by cloning this git (or downloading this git as zip then extract it into a folder), and then just type :
43
+
Another alternative way to install this script with python is by cloning this git (or downloading this git as zip then extract it into a folder), and then just type :
0 commit comments