y5gfunc.encode.subtitle¶
subtitle
¶
Functions:
| Name | Description |
|---|---|
subset_fonts |
Create a subset of fonts containing only the glyphs used by specified ASS files. |
extract_pgs_subtitles |
Extract all PGS (HDMV PGS) subtitle tracks from an M2TS file. |
subset_fonts
¶
subset_fonts(ass_path: Union[list[Union[str, Path]], str, Path], fonts_path: Union[str, Path], output_directory: Union[str, Path]) -> Path
Create a subset of fonts containing only the glyphs used by specified ASS files.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Union[list[Union[str, Path]], str, Path]
|
Path to a single ASS file or a list of paths to ASS files. |
required |
|
Union[str, Path]
|
Path to the directory containing the original font files. |
required |
|
Union[str, Path]
|
Path to the directory where the subsetted fonts will be saved. This directory will be created if it doesn't exist. |
required |
Returns:
| Type | Description |
|---|---|
Path
|
The Path object representing the output directory. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the 'assfonts' command fails (returns a non-zero exit code) or if there are warnings or errors. |
Source code in y5gfunc/encode/subtitle.py
extract_pgs_subtitles
¶
extract_pgs_subtitles(m2ts_path: Union[str, Path], output_dir: Optional[Union[str, Path]] = None) -> list[dict[str, Union[str, Path, bool]]]
Extract all PGS (HDMV PGS) subtitle tracks from an M2TS file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Union[str, Path]
|
Path to the input M2TS file. |
required |
|
Optional[Union[str, Path]]
|
Optional path to the directory where extracted .sup files will be saved. If None, defaults to a subdirectory 'named '{m2ts_file_stem}_subs' next to the input M2TS file. The directory will be created if it doesn't exist. |
None
|
Returns:
| Type | Description |
|---|---|
list[dict[str, Union[str, Path, bool]]]
|
A list of dictionaries, where each dictionary represents a successfully extracted pgs subtitle and contains keys suitable for use in muxing functions. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If ffprobe fails, if tsMuxeR fails, if no PGS subtitles are found, or if an expected demuxed subtitle file is not found after tsMuxeR runs. |
Source code in y5gfunc/encode/subtitle.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |