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] 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