mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Use mkstemp instead of unsafe mktemp
This commit is contained in:
parent
df129c7ba3
commit
c1ef452841
@ -43,7 +43,7 @@ def view(stream_spec, detail=False, filename=None, pipe=False, **kwargs):
|
|||||||
if pipe and filename is not None:
|
if pipe and filename is not None:
|
||||||
raise ValueError('Can\'t specify both `filename` and `pipe`')
|
raise ValueError('Can\'t specify both `filename` and `pipe`')
|
||||||
elif not pipe and filename is None:
|
elif not pipe and filename is None:
|
||||||
filename = tempfile.mktemp()
|
filename = tempfile.mkstemp()[1]
|
||||||
|
|
||||||
nodes = get_stream_spec_nodes(stream_spec)
|
nodes = get_stream_spec_nodes(stream_spec)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user