import subprocess,sys,os
import re
class CutSplicingVdeio(object):
def __init__(self):
pass
#dercription CutSplicingVdeio this class function
def instructions(self):
dercription="vdeio and image transform,vdeio other opreation"
return dercription
def transcribeScreen(self,filePath):
filePath=filePath.decode('utf-8')
cmd=ffmpegPath + " -f gdigrab -framerate 60 -offset_x 0 -offset_y 0 -video_size 1366x768 -i desktop " + filePath
cmd=cmd.encode(sys.getfilesystemencoding())
if "?" in cmd:
cmd=cmd.replace("?","")
print cmd
subprocess.call(cmd , shell=True)
vp=CutSplicingVdeio() vp.transcribeScreen(r"C:\Users\Administrator\Desktop\transcribe.avi")
# according to give a video filepath (transcribe Screen)
首先,写了一个api,里面的的一个录制屏幕的功能,其他的暂时没写,以后再分享。
vp.transcribeScreen传递路径后执行transcribeScreen,为让中文显示正常转换一下编码格式,之后执行cmd命令即可。
win7系统执行后报错,不知原因,排产原因是在路径里多出一个?,去除之后,完美运行。
也可以直接通过cmd运行 D:\LenovoC\ffmpeg\bin\ffmpeg.exe -f gdigrab -framerate 60 -offset_x 0 -offset_y 0 -video_size 1366x768 -i desktop C:\Users\Administrator\Desktop\transcribe.avi。