|
| 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. |
0 commit comments