溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python利用ffmpeg進(jìn)行錄制屏幕的方法

發(fā)布時間:2020-10-20 23:41:37 來源:腳本之家 閱讀:229 作者:七野 欄目:開發(fā)技術(shù)

前幾天下載了幾個視頻,但是有兩集是一個視頻的,偶爾找到了ffmpeg處理視頻的方法,它的功能非常強大。因此,分享一下,一起學(xué)習(xí)。

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傳遞路徑后執(zhí)行transcribeScreen,為讓中文顯示正常轉(zhuǎn)換一下編碼格式,

之后執(zhí)行cmd命令即可。

win7系統(tǒng)執(zhí)行后報錯,不知原因,排產(chǎn)原因是在路徑里多出一個?,去除之后,完美運行。

也可以直接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。

好了今天就到這里。

以上這篇python利用ffmpeg進(jìn)行錄制屏幕的方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI