All the files are named appropriately, yet FFMPEG seems to struggle with these. Reading the stderr logs, it appears FFMPEG is ignoring these segments as a security measure.
[hls @ 0x5649438efd40] Filename extension of '/mnt/scratch/vodbot/temp/46779644/transmux-0000000103-TsNL.ts?start_offset=0&end_offset=2881663' is not a common multimedia extension, blocked for security reasons.
If you wish to override this adjust allowed_extensions, you can set it to 'ALL' to allow all
Seems like all that needs to be done is to add -allowed_extensions ALL before the input file in the FFMPEG command.
Some old videos from Sky is having issues being downloaded, because of the weird naming and exporting Twitch used to use for highlights 5+ years ago.
A notable culprit is this: https://www.twitch.tv/videos/39737400
The playlist gets written to disk as:
All the files are named appropriately, yet FFMPEG seems to struggle with these. Reading the stderr logs, it appears FFMPEG is ignoring these segments as a security measure.
Seems like all that needs to be done is to add
-allowed_extensions ALL
before the input file in the FFMPEG command.