Protocol 'crypto' not on whitelist message frequently during mp4 conversion

Asked 2 years ago, Updated 2 years ago, 108 views

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

when running the .
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

2022-09-29 22:15

1 Answers

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.)


2022-09-29 22:15

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.