subgapfix 0.0.1__tar.gz → 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: subgapfix
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A small CLI tool to extend subtitle durations in SRT files by redefining gaps between subtitles.
5
5
  Author-email: Reinder Sinnema <reinder@w3bunker.com>
6
6
  License: MIT
@@ -21,15 +21,13 @@ Designed especially for subtitles generated by [WhisperX](https://github.com/m-b
21
21
 
22
22
  ## 📦 Installation
23
23
 
24
- Clone the repository and install dependencies:
24
+ Install from PyPI:
25
25
 
26
26
  ```bash
27
- git clone https://github.com/yourusername/subgapfix.git
28
- cd subgapfix
29
- pip install -r requirements.txt
27
+ pip install subgapfix
30
28
  ````
31
29
 
32
- Dependencies:
30
+ Dependencies used:
33
31
 
34
32
  * [`srt`](https://pypi.org/project/srt/)
35
33
 
@@ -38,7 +36,7 @@ Dependencies:
38
36
  Basic usage:
39
37
 
40
38
  ```bash
41
- python subgapfix.py input.srt -o easyreading.srt
39
+ subgapfix input.srt -o easyreading.srt
42
40
  ```
43
41
 
44
42
  ### Options
@@ -53,7 +51,7 @@ python subgapfix.py input.srt -o easyreading.srt
53
51
 
54
52
  ### How It Works
55
53
 
56
- The script reads your `.srt` file, loops through each pair of consecutive subtitles, and adjusts their timings to make them easier to read.
54
+ The script reads your `.srt` file, loops through each pair of consecutive subtitles, and lengthens their timings (if applicable) to make them easier to read.
57
55
 
58
56
  ### Example
59
57
 
@@ -72,7 +70,7 @@ How are you?
72
70
  Run:
73
71
 
74
72
  ```bash
75
- python subgapfix.py input.srt -o fixed.srt
73
+ subgapfix input.srt -o easyreading.srt
76
74
  ```
77
75
 
78
76
  Output:
@@ -90,8 +88,4 @@ How are you?
90
88
  ## 💡 Why?
91
89
 
92
90
  Tools like WhisperX produce accurate subtitles, but their timings are often too **tight** for comfortable reading.
93
- `SubGapFix` helps subtitles stay visible longer while keeping synchronization intact.
94
-
95
- ## 🛠 Roadmap
96
-
97
- * Package for PyPI (`pip install subgapfix`)
91
+ `subgapfix` helps subtitles stay visible longer while keeping synchronization intact.
@@ -11,15 +11,13 @@ Designed especially for subtitles generated by [WhisperX](https://github.com/m-b
11
11
 
12
12
  ## 📦 Installation
13
13
 
14
- Clone the repository and install dependencies:
14
+ Install from PyPI:
15
15
 
16
16
  ```bash
17
- git clone https://github.com/yourusername/subgapfix.git
18
- cd subgapfix
19
- pip install -r requirements.txt
17
+ pip install subgapfix
20
18
  ````
21
19
 
22
- Dependencies:
20
+ Dependencies used:
23
21
 
24
22
  * [`srt`](https://pypi.org/project/srt/)
25
23
 
@@ -28,7 +26,7 @@ Dependencies:
28
26
  Basic usage:
29
27
 
30
28
  ```bash
31
- python subgapfix.py input.srt -o easyreading.srt
29
+ subgapfix input.srt -o easyreading.srt
32
30
  ```
33
31
 
34
32
  ### Options
@@ -43,7 +41,7 @@ python subgapfix.py input.srt -o easyreading.srt
43
41
 
44
42
  ### How It Works
45
43
 
46
- The script reads your `.srt` file, loops through each pair of consecutive subtitles, and adjusts their timings to make them easier to read.
44
+ The script reads your `.srt` file, loops through each pair of consecutive subtitles, and lengthens their timings (if applicable) to make them easier to read.
47
45
 
48
46
  ### Example
49
47
 
@@ -62,7 +60,7 @@ How are you?
62
60
  Run:
63
61
 
64
62
  ```bash
65
- python subgapfix.py input.srt -o fixed.srt
63
+ subgapfix input.srt -o easyreading.srt
66
64
  ```
67
65
 
68
66
  Output:
@@ -80,8 +78,4 @@ How are you?
80
78
  ## 💡 Why?
81
79
 
82
80
  Tools like WhisperX produce accurate subtitles, but their timings are often too **tight** for comfortable reading.
83
- `SubGapFix` helps subtitles stay visible longer while keeping synchronization intact.
84
-
85
- ## 🛠 Roadmap
86
-
87
- * Package for PyPI (`pip install subgapfix`)
81
+ `subgapfix` helps subtitles stay visible longer while keeping synchronization intact.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "subgapfix"
7
- version = "0.0.1"
7
+ version = "0.0.2"
8
8
  description = "A small CLI tool to extend subtitle durations in SRT files by redefining gaps between subtitles."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: subgapfix
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A small CLI tool to extend subtitle durations in SRT files by redefining gaps between subtitles.
5
5
  Author-email: Reinder Sinnema <reinder@w3bunker.com>
6
6
  License: MIT
@@ -21,15 +21,13 @@ Designed especially for subtitles generated by [WhisperX](https://github.com/m-b
21
21
 
22
22
  ## 📦 Installation
23
23
 
24
- Clone the repository and install dependencies:
24
+ Install from PyPI:
25
25
 
26
26
  ```bash
27
- git clone https://github.com/yourusername/subgapfix.git
28
- cd subgapfix
29
- pip install -r requirements.txt
27
+ pip install subgapfix
30
28
  ````
31
29
 
32
- Dependencies:
30
+ Dependencies used:
33
31
 
34
32
  * [`srt`](https://pypi.org/project/srt/)
35
33
 
@@ -38,7 +36,7 @@ Dependencies:
38
36
  Basic usage:
39
37
 
40
38
  ```bash
41
- python subgapfix.py input.srt -o easyreading.srt
39
+ subgapfix input.srt -o easyreading.srt
42
40
  ```
43
41
 
44
42
  ### Options
@@ -53,7 +51,7 @@ python subgapfix.py input.srt -o easyreading.srt
53
51
 
54
52
  ### How It Works
55
53
 
56
- The script reads your `.srt` file, loops through each pair of consecutive subtitles, and adjusts their timings to make them easier to read.
54
+ The script reads your `.srt` file, loops through each pair of consecutive subtitles, and lengthens their timings (if applicable) to make them easier to read.
57
55
 
58
56
  ### Example
59
57
 
@@ -72,7 +70,7 @@ How are you?
72
70
  Run:
73
71
 
74
72
  ```bash
75
- python subgapfix.py input.srt -o fixed.srt
73
+ subgapfix input.srt -o easyreading.srt
76
74
  ```
77
75
 
78
76
  Output:
@@ -90,8 +88,4 @@ How are you?
90
88
  ## 💡 Why?
91
89
 
92
90
  Tools like WhisperX produce accurate subtitles, but their timings are often too **tight** for comfortable reading.
93
- `SubGapFix` helps subtitles stay visible longer while keeping synchronization intact.
94
-
95
- ## 🛠 Roadmap
96
-
97
- * Package for PyPI (`pip install subgapfix`)
91
+ `subgapfix` helps subtitles stay visible longer while keeping synchronization intact.
File without changes