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 1/4] 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() +) From c1623d03fb031b9bbdae95955aa4a22a1dcfb13f Mon Sep 17 00:00:00 2001 From: Erikka <19295862+erikkai@users.noreply.github.com> Date: Thu, 22 Apr 2021 23:13:49 -0700 Subject: [PATCH 2/4] Added import statement --- examples/apivideo.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/apivideo.py b/examples/apivideo.py index ccfb018..da54457 100644 --- a/examples/apivideo.py +++ b/examples/apivideo.py @@ -2,12 +2,13 @@ # 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. +import ffmpeg 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() + ffmpeg + .input('0:0', format='avfoundation', framerate=25) + .output(rtmp_url, format='flv', flvflags='no_duration_filesize') + .run() ) From 7857c19d106030dbc304ce8c0a768e25c631c216 Mon Sep 17 00:00:00 2001 From: Erikka <19295862+erikkai@users.noreply.github.com> Date: Thu, 22 Apr 2021 23:20:23 -0700 Subject: [PATCH 3/4] Corrected url issue Listed part of the url without quotes to signify it's a string you add. It looks like an undefined variable without that added. --- examples/apivideo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/apivideo.py b/examples/apivideo.py index da54457..d15d6c3 100644 --- a/examples/apivideo.py +++ b/examples/apivideo.py @@ -2,9 +2,10 @@ # 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. + import ffmpeg -rtmp_url = "rtmp://broadcast.api.video/s/" + apivideo_stream_key +rtmp_url = 'rtmp://broadcast.api.video/s/' + 'apivideo_stream_key' ( ffmpeg From c270a72920b4f9e900e47ec2a2b2b4f10c10dfe3 Mon Sep 17 00:00:00 2001 From: Erikka <19295862+erikkai@users.noreply.github.com> Date: Thu, 22 Apr 2021 23:39:11 -0700 Subject: [PATCH 4/4] Added #!/usr/bin/env python --- examples/apivideo.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/apivideo.py b/examples/apivideo.py index d15d6c3..0ae2b66 100644 --- a/examples/apivideo.py +++ b/examples/apivideo.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + # 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.'