我正在尝试使用电影调整视频的大小。在本地运行时,它运行得很好,但是在AWS BeanStalk上,渲染的视频中没有音频。
clip_resized = clip.resize(height=video_max_height)
clip_resized.write_videofile(RESIZED_VIDEO_NAME, temp_audiofile="temp-audio.m4a",
remove_temp=True,
codec="libx264",
audio_codec="aac", fps=30,
logger=None, threads=4)
我正在使用此link在AWS上安装ffmpeg
heroku的类似问题