Removed Build Artifact

This commit is contained in:
GAURAV KARMAKAR
2026-01-08 01:01:36 +05:30
parent 91f254017b
commit c609f66c02
3 changed files with 2 additions and 6 deletions

View File

@@ -52,6 +52,7 @@
- Extract multiple teletext pages simultaneously with separate output files
- Use --tpage multiple times (e.g., --tpage 100 --tpage 200)
- Output files are named with page suffix (e.g., output_p100.srt, output_p200.srt)
- Fix: SPUPNG subtitle offset calculation to center based on actual image dimensions
- New: Added --list-tracks (-L) option to list all tracks in media files without processing
New: Chinese, Korean, Japanese support - proper encoding and OCR.

Submodule src/_deps/corrosion-src deleted from b1fab72165

View File

@@ -1103,11 +1103,7 @@ static void calculate_spupng_offsets(struct spupng_t *sp, struct encoder_ctx *ct
int screen_h;
/* Teletext is always PAL */
if (ctx->in_fileformat == 2)
{
screen_h = 576;
}
else if (ctx->is_pal)
if (ctx->in_fileformat == 2 || ctx->is_pal)
{
screen_h = 576;
}