Tag: ffmpeg
-
How to stream media file from s3 directly to AWS lambda FFMPEG Python example
There is no need to download a file and put it inside your lambda’s /tmp folder to process it with FFMPEG. I will show you how to do it “on the fly”. Just stream a damn file directly into ffmpeg! def execute_ffmpeg_command(input_file: str): “”” Execute the given ffmpeg command against the input file. Args: input_file…