mirror of https://github.com/devine-dl/devine.git
HLS: Only merge relevant segments on discontinuity
This commit is contained in:
parent
2388c85894
commit
506ba0f615
|
@ -364,20 +364,35 @@ class HLS:
|
||||||
|
|
||||||
return decrypted_path
|
return decrypted_path
|
||||||
|
|
||||||
def merge_discontinuity():
|
def merge_discontinuity(include_this_segment: bool):
|
||||||
"""Merge all files in the segment save directory so far."""
|
"""
|
||||||
files = list(sorted(segment_save_dir.iterdir()))
|
Merge all segments of the discontinuity.
|
||||||
|
|
||||||
to_dir = segment_save_dir.parent
|
All segment files for this discontinuity must already be downloaded and
|
||||||
to_path = to_dir / f"{str(discon_i).zfill(name_len)}{files[-1].suffix}"
|
already decrypted (if it needs to be decrypted).
|
||||||
|
|
||||||
merge(
|
Parameters:
|
||||||
to=to_path,
|
include_this_segment: Whether to include the current segment in the
|
||||||
via=files,
|
list of segments to merge and decrypt. This should be False if
|
||||||
delete=True,
|
decrypting on EXT-X-KEY changes, or True when decrypting on the
|
||||||
include_map_data=True
|
last segment.
|
||||||
)
|
"""
|
||||||
segment_save_dir.rmdir()
|
last_segment_i = max(0, i - int(not include_this_segment))
|
||||||
|
|
||||||
|
files = [
|
||||||
|
file
|
||||||
|
for file in sorted(segment_save_dir.iterdir())
|
||||||
|
if int(file.stem.replace("_decrypted", "").split("-")[-1]) <= last_segment_i
|
||||||
|
]
|
||||||
|
if files:
|
||||||
|
to_dir = segment_save_dir.parent
|
||||||
|
to_path = to_dir / f"{str(discon_i).zfill(name_len)}{files[-1].suffix}"
|
||||||
|
merge(
|
||||||
|
to=to_path,
|
||||||
|
via=files,
|
||||||
|
delete=True,
|
||||||
|
include_map_data=True
|
||||||
|
)
|
||||||
|
|
||||||
if isinstance(track, Subtitle):
|
if isinstance(track, Subtitle):
|
||||||
segment_data = try_ensure_utf8(segment_file_path.read_bytes())
|
segment_data = try_ensure_utf8(segment_file_path.read_bytes())
|
||||||
|
@ -392,7 +407,7 @@ class HLS:
|
||||||
if segment.discontinuity and i != 0:
|
if segment.discontinuity and i != 0:
|
||||||
if encryption_data:
|
if encryption_data:
|
||||||
decrypt(include_this_segment=False)
|
decrypt(include_this_segment=False)
|
||||||
merge_discontinuity()
|
merge_discontinuity(include_this_segment=False)
|
||||||
|
|
||||||
discon_i += 1
|
discon_i += 1
|
||||||
range_offset = 0 # TODO: Should this be reset or not?
|
range_offset = 0 # TODO: Should this be reset or not?
|
||||||
|
@ -446,7 +461,7 @@ class HLS:
|
||||||
# required as it won't end with EXT-X-DISCONTINUITY nor a new key
|
# required as it won't end with EXT-X-DISCONTINUITY nor a new key
|
||||||
if encryption_data:
|
if encryption_data:
|
||||||
decrypt(include_this_segment=True)
|
decrypt(include_this_segment=True)
|
||||||
merge_discontinuity()
|
merge_discontinuity(include_this_segment=True)
|
||||||
|
|
||||||
progress(advance=1)
|
progress(advance=1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue