在python中将FFMPEG子进程输入到FFMPEG RTMP流?

问题描述

我设法将视频帧流式传输到 RTMP 服务器,但我也想流式传输音频 - 为此我不能使用 rawvideo 格式,现在我不知道 ffmpeg 视频需要多少字节发送到 ffmpeg 流。

如果有更简单的方法来做到这一点,我更喜欢它,我尽力发表评论,以便代码易于理解。

WIDTH = 1152
HEIGHT = 720
RTMP = ""
#Returns frame of a video
def read_frame(process1,width,height):
    frame_size = width * height * 3 #<--- I don't kNow how many bytes should I ask for.
    in_bytes = process1.stdout.read(frame_size)
    if len(in_bytes) == 0:
        return []
    else:
        assert len(in_bytes) == frame_size
        frame = (
            np
            .frombuffer(in_bytes,np.uint8)
            .reshape([height,3])
        )
    return frame


def getVideoOutput(in_filename):
    args = (
        ffmpeg
        .input(in_filename # Path to file,loglevel="quiet"#Don't show ffmpegs logs
        )
        .output('pipe:',format='flv')#Outputs a pipe
        .compile()
    )
    return subprocess.Popen(args,stdout=subprocess.PIPE)

#Start stream
def startStream(width,height):
    args = (
        ffmpeg
        .input('pipe:',#Sats to ffmpeg that the input is a stream
        format='flv'#Format of the video,r="30"#Sets average fps,s='{}x{}'.format(width,height)#Set the width and height of the input,loglevel="quiet" #Don't show ffmpegs logs 
        )
        .output(RTMP,vcodec="libx264",preset="ultrafast",acodec="aac",format="flv")
        .overwrite_output()
        .compile()
    )
    return subprocess.Popen(args,stdin=subprocess.PIPE)

#Writes frame to the stream
def write_frame(process2,frame):
    process2.stdin.write(
        frame
        .astype(np.uint8)
        .tobytes()
    )

#Gets frames from multiple videos
def getBytes():
    for video in os.listdir(".\\Videos"):#Loops through videos in the videos folder 
    #while True:
        #video = os.listdir(".\\Videos")[0]
        videoPath = os.path.join(pathlib.Path().absolute(),"Videos",video)
        pipe = getVideoOutput(videoPath) #Get a stream of bytes from the video
        while True:
            frame = read_frame(pipe,WIDTH,HEIGHT)#Get a frame
            if frame == []:#If the video ends Go to the next one
                break
            yield frame#return the frame


stream = startStream(WIDTH,HEIGHT)#Starts stream to server and outputs a subprocess
FrameGenerator = getBytes()#Start generator

while True:
    write_frame(stream,next(FrameGenerator))#infinite loop writes to the stream a frame

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)