You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If one of the representations specified in auto_generate_representations matches the original, include_original=False causes it to be skipped
To Reproduce
Steps to reproduce the behavior:
Let's say we have a 1920x1080 video
Transcode the video using hls.auto_generate_representations([1080, 480, 240], include_original=False)
The playlist will contain 854x480 and 426x240, but not 1920x1080
Expected behavior
The playlist should contain all representations that are explicitly provided by the user (in the example above: 1080, 480, 240).
The text was updated successfully, but these errors were encountered:
mbUSC
changed the title
include_original=False can exclude user-specified bitrate
include_original=False can exclude user-specified representation
Jul 10, 2024
If one of the representations specified in
auto_generate_representations
matches the original,include_original=False
causes it to be skippedTo Reproduce
Steps to reproduce the behavior:
hls.auto_generate_representations([1080, 480, 240], include_original=False)
Expected behavior
The playlist should contain all representations that are explicitly provided by the user (in the example above: 1080, 480, 240).
The text was updated successfully, but these errors were encountered: