Python实战:使用FFmpeg进行直播推流

1,环境变量


python.exe
的路径添加到环境变量中。

2,创建 py 文件,调用 ffmpeg

import subprocess
import time
#ffmpeg 录屏:5 秒
ffmpeger=subprocess.Popen('ffmpeg -thread_queue_size 16 -f gdigrab -i desktop -s 1280x720
-vcodec libx264 -y test2.mp4',
shell=True, stdin=subprocess.PIPE)
time.sleep(5)
ffmpeger.stdin.write('q'.encode("GBK"))
ffmpeger.communicate()
#ffmpeg 推流:rtmp
ffmpeger = subprocess.Popen('

作者:机 _ 长

物联沃分享整理
物联沃-IOTWORD物联网 » Python实战:使用FFmpeg进行直播推流

发表回复