subprocess call ffmpeg (command line)

前端 未结 4 660
轻奢々
轻奢々 2020-12-31 11:16

I have been incorporating subprocess calls in my program. I have had no issues with subprocess calls for other commands, but I am having trouble getting the command line inp

4条回答
  •  难免孤独
    2020-12-31 12:07

    I found this alternative, simple, answer to also work.

    subprocess.call('ffmpeg -r 10 -i frame%03d.png -r ntsc '+str(out_movie), shell=True)
    

提交回复
热议问题