ffmpeg-python
ffmpeg-python copied to clipboard
Use mkstemp instead of unsafe mktemp
The tempfile.mktemp function is unsafe and deprecated as per https://docs.python.org/3/library/tempfile.html#tempfile.mktemp. The security impact is mentioned here https://cwe.mitre.org/data/definitions/377.html.