我有以下法典:
import subprocess , os
ffmpeg = "C:\ffmpeg_10_6_11.exe"
inVid = "C:\test_in.avi"
outVid = "C:\test_out.avi"
if os.path.exists( outVid ):
os.remove( outVid )
proc = subprocess.Popen(ffmpeg + " -i " + inVid + -vf drawtext=fontfile=/Windows/Fonts/arial.ttf:text="onLine1 onLine2 onLine3":fontcolor=white:fontsize=20 -y + outVid , shell=True, stderr=subprocess.PIPE)
proc.wait()
print proc.stderr.read()
os.startfile( outVid )
a. 书写录像文件。 但我想写出许多行文,而不是仅仅把案文放在一行。
我如何能够这样做?