include_original=False can exclude user-specified representation
Opened this issue · 0 comments
mbUSC commented
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).