Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/CHANGES.TXT
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.96.6 (unreleased)
-------------------
- New: Add Snap packaging support with Snapcraft configuration and GitHub Actions CI workflow.
- New: Implement dictionary-based capitalization and censorship for transcripts
- Fix: Clear status line output on Linux/WSL to prevent text artifacts (#2017)
- Fix: Prevent infinite loop on truncated MKV files
- Fix: Various memory safety and stability fixes in demuxers (MP4, PS, MKV, DVB)
Expand Down
7 changes: 2 additions & 5 deletions src/lib_ccx/ccx_encoders_transcript.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,8 @@ int write_cc_subtitle_as_transcript(struct cc_subtitle *sub, struct encoder_ctx
start_time = sub->start_time;
end_time = sub->end_time;
}
if (context->sentence_cap)
{
// TODO capitalize (context, line_number,data);
// TODO correct_case_with_dictionary(line_number, data);
}
if (sub->data)
correct_spelling_and_censor_words(context, (unsigned char *)sub->data, strlen((char *)sub->data));

if (start_time == -1)
{
Expand Down
Loading