From 07acd2667a41687bf6c29e82f6965390af5846c0 Mon Sep 17 00:00:00 2001 From: Erikka <19295862+erikkai@users.noreply.github.com> Date: Thu, 22 Apr 2021 19:43:19 -0700 Subject: [PATCH] Code sample for using ffmpeg-python w/ api.video --- examples/apivideo.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 examples/apivideo.py diff --git a/examples/apivideo.py b/examples/apivideo.py new file mode 100644 index 0000000..ccfb018 --- /dev/null +++ b/examples/apivideo.py @@ -0,0 +1,13 @@ +# Use ffmpeg-python with api.video. Api.video lets you create your own live streams. +# Complete tutorial for using ffmpeg-python with api.video here: https://api.video/blog/tutorials/live-stream-to-the-browser-with-ffmpeg-cli-and-python +# You need to get your api.video stream key and replace 'apivideo_stream_key.' +# You can probably use this for other tools as well. + +rtmp_url = "rtmp://broadcast.api.video/s/" + apivideo_stream_key + +( +ffmpeg +.input('0:0', format='avfoundation', framerate=25) +.output(rtmp_url, format='flv', flvflags='no_duration_filesize') +.run() +)