mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-17 21:23:53 +00:00
-stdin option crashes with mp4 file #219
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Izaron on GitHub (Dec 18, 2016).
In both Windows and Linux -stdin crashes on all MP4 files
Because in these lines the program closes the input stream and passes control to the GPAC library, which tries to open the input file only, but we have no file name, so
ctx->inputfileequals to NULL.This can be corrected by recording the stream into a temporary file and then deleting it after GPAC work, but it's brute force.