At ffmpeg (ffmpeg-201711dd-8f4702a-win64-static),
ffmpeg-protocol_whitelist file, http, https, tcp, tls-i input file.m3u8-movflags faststart-c copy output file.mp4
protocol 'crypto' not on whitelist' file, http, https, top, tis'!'
The message often ends with
Error when loadig first segment...Invalid data found when processing input
It ended with .Of course, the output file could not be used.The environment is Win10 and the machine is LIFEBOOKAH53/G. Could someone tell me how to solve it?
ffmpeg mp4
protocol 'crypto' not on whitelist' file, http, https, tcp, tls'!
The error message says that the protocol required to read the input M3U8 file is not specified.Try adding crypto
to the option -protocol_whitelist
.
ffmpeg-protocol_whitelist file, http, https, tcp, tls, crypto\
-i input file .m3u8-movflags faststart-c copy output file .mp4
(Requesting the crypto
protocol means that the M3U8 media file is encrypted.You may need valid key information to convert to an MP4 file.)
© 2024 OneMinuteCode. All rights reserved.