Skip to content

Commit 8fbbfde

Browse files
committed
doc for preferences added
1 parent f90169f commit 8fbbfde

7 files changed

+89
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ A free program that extracts hard coded subtitles from a video and generates an
1010

1111
**Features**
1212

13-
- Detect subtitle area by searching common area
14-
- Manual resize or change of subtitle area (click and drag mouse to perform)
15-
- Single and Batch subtitle detection and extraction
16-
- Start and Stop subtitle extraction positions can be selected (use arrow keys for precise selection)
17-
- Resize video display (Zoom In (Ctrl+Plus), Zoom Out (Ctrl+Minus))
18-
- Non subtitle area of the video can be hidden to limit spoilers
19-
- Toast Notification available on Windows upon completion of subtitle detection and extraction
20-
- Preferences available for modification of options when extraction subtitles
13+
- Detect subtitle area by searching common area.
14+
- Manual resize or change of subtitle area (click and drag mouse to perform).
15+
- Single and Batch subtitle detection and extraction.
16+
- Start and Stop subtitle extraction positions can be selected (use arrow keys for precise selection).
17+
- Resize video display (Zoom In (Ctrl+Plus), Zoom Out (Ctrl+Minus)).
18+
- Non subtitle area of the video can be hidden to limit spoilers.
19+
- Toast Notification available on Windows upon completion of subtitle detection and extraction.
20+
- [Preferences docs](docs/Preferences.md) available for modification of options when extraction subtitles.
2121
- Multiple languages supported through [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR). They will be
2222
automatically downloaded as needed.
2323

@@ -59,7 +59,7 @@ installed. The program will not start without it.
5959

6060
- [Windows CPU Version](https://github.com/voun7/Video_Sub_Extractor/releases/download/v1.0/VSE-windows-cpu.zip)
6161

62-
## Demo
62+
## Demo Video
6363

6464
[![Demo Video](docs/images/demo%20screenshot.png)](https://youtu.be/nnm_waobgnI "Demo Video")
6565

docs/Preferences.md

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
## Preferences
2+
3+
### Subtitle Detection
4+
5+
<img src="images/sub%20det.png" width="400">
6+
7+
Split Start: Frame position where subtitle detection will start from. It is relative to the length of the video. 0.0
8+
will start subtitle detection at the beginning of the video.
9+
10+
Split Stop: Frame position where subtitle detection will stop. It is relative to the length of the video. 0.5 will stop
11+
subtitle detection at the middle of the video and 0.95 will stop the detection towards the end of the video.
12+
13+
No of Frames: The number of frames from the start and stop position that will be taken for subtitle detection. Too
14+
little frames and the program will fail to detect the subtitles. Too many and detection takes more time.
15+
16+
X Axis Padding: The x-axis padding determines the length of the horizontal line of the boundary box. Subtitle detection
17+
is unable to quickly determine the max x-axis length by looking at all the frames. 1.0 would mean the longest subtitle
18+
spans the entire width of the video. The value is relative to the width of the video.
19+
20+
Y Axis Padding: The y-axis padding prevents the vertical line of the boundary box from being too close to the detected
21+
subtitle text. This value is fixed for all video heights.
22+
23+
Use Default Search Area: The default part of the video frame will be searched to detect subtitles. When unchecked the
24+
entire video frame is searched when detecting subtitles.
25+
26+
### Frame Extraction
27+
28+
<img src="images/frame%20extract.png" width="400">
29+
30+
Frame Extraction Frequency: The frequency of frame extraction from the video. 1 means every video frame will be
31+
extracted. The timing for the subtitles will be the most accurate and the subtitles might be more accurate. 2 means that
32+
extraction will happen after every 2 frames. The timing will be slightly off, but the entire subtitle extraction process
33+
will be significantly faster because only half of the frames will be used (total frames / 2).
34+
35+
Frame Extraction Chunk Size: The number of frames to be extracted by each CPU core.
36+
37+
### Text Extraction
38+
39+
<img src="images/text%20extract.png" width="400">
40+
41+
Text Extraction Chunk Size: The number of frames to be extracted by each CPU or GPU core/process.
42+
43+
OCR CPU Max Processes: The maximum number of CPU cores to be used for extraction of text from the video.
44+
45+
OCR GPU Max Processes: The maximum number of GPU processes to be used for extraction of text from the video. Using too
46+
many will cause a crash if GPU memory is not enough.
47+
48+
OCR Recognition Language: The language of the subtitle in the video to be extracted.
49+
50+
Text Drop Score: The minimum acceptable confidence score for every extracted text. A low score will result in more
51+
inaccurate text in the generated subtitle. A very high score will result in a more accurate text in the generated
52+
subtitle but lots of skipped text.
53+
54+
Use Line Break: A line break will be used when more than one line of text is found in the same frame. This might not
55+
work properly if the OCR detects a lot of space on the same line of text.
56+
57+
### Subtitle Generator
58+
59+
<img src="images/sub%20gen.png" width="400">
60+
61+
Text Similarity Threshold: The threshold for merging similar texts that appears successively but might be slightly
62+
different because of OCR variability. A lower threshold will result in texts that are different being merged.
63+
64+
Minimum Consecutive Sub Duration: The minimum duration for subtitles that appear consecutively. Consecutively low
65+
duration usually means some background text in the video that appears for a short duration was detected.
66+
67+
Max Consecutive Short Durations: The maximum number of allowed consecutive short subtitle durations. If the detected
68+
consecutive short durations are greater than the value, they will be removed.
69+
70+
Minimum Sub Duration: Any subtitle with a duration less than or equal to this value will be removed.
71+
72+
Use GPU if available: The GPU will for the subtitle extraction if available.
73+
74+
### Notification
75+
76+
<img src="images/notification.png" width="400">
77+
78+
Notification Sound: The notification sound that is to be played after subtitle detection or generation is completed.
79+
80+
Loop Notification Sound: The notification sound will be repeated.

docs/images/frame extract.png

10.7 KB
Loading

docs/images/notification.png

10.1 KB
Loading

docs/images/sub det.png

19.4 KB
Loading

docs/images/sub gen.png

17.3 KB
Loading

docs/images/text extract.png

19.3 KB
Loading

0 commit comments

Comments
 (0)