mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-07-08 18:06:30 +00:00
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/CCExtractor/ccextractor/pull/1735
State: closed
Merged: No
[FIX]
In raising this pull request, I confirm the following (please check boxes):
My familiarity with the project is as follows (check one):
This PR fixes an issue where CCExtractor failed to extract EIA-608 captions from HEVC (H.265) transport streams.
Problem:
CCExtractor's transport stream parser did not recognize HEVC (stream type 0x24) as a valid video stream type capable of carrying embedded captions. This resulted in "No captions were found in input" for HEVC files, even when captions were present and playable in other media players.
Solution:
Comprehensive HEVC support has been added across the codebase:
CCX_STREAM_TYPE_VIDEO_HEVC(0x24) andCCX_HEVCbuffer type.Impact:
CCExtractor can now successfully detect and extract EIA-608 captions from HEVC transport stream files.