subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
f.write(f"file '{cf}'\n") no_subs = os.path.join(tmpdir, "no_subs.mp4") subprocess.run( [FFMPEG, "-y", "-f", "concat", "-safe", "0", "-i", concat_list, "-c", "copy", no_subs], capture_output=True, check=True,- Confidence
- 92% confidence
- Finding
- subprocess.run( [FFMPEG, "-y", "-f", "concat", "-safe", "0", "-i", concat_list, "-c", "copy", no_subs], capture_output=True, check=True, )
