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.
This commit is contained in:
Erikka 2021-04-22 23:20:23 -07:00 committed by GitHub
parent c1623d03fb
commit 7857c19d10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 # 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 need to get your api.video stream key and replace 'apivideo_stream_key.'
# You can probably use this for other tools as well. # You can probably use this for other tools as well.
import ffmpeg import ffmpeg
rtmp_url = "rtmp://broadcast.api.video/s/" + apivideo_stream_key rtmp_url = 'rtmp://broadcast.api.video/s/' + 'apivideo_stream_key'
( (
ffmpeg ffmpeg