1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 10:22:31 +01:00

add fd to whitelist

fixes #1518
This commit is contained in:
Mikael Finstad 2023-03-28 14:01:02 +09:00
parent e93a222227
commit b26119b06c
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

View File

@ -88,7 +88,7 @@ function useFfmpegOperations({ filePath, enableTransferTimestamps, needSmartCut
// concat list - always first
addInput([
// https://blog.yo1.dog/fix-for-ffmpeg-protocol-not-on-whitelist-error-for-urls/
'-f', 'concat', '-safe', '0', '-protocol_whitelist', 'file,pipe',
'-f', 'concat', '-safe', '0', '-protocol_whitelist', 'file,pipe,fd',
'-i', '-',
]);