Merge c270a72920b4f9e900e47ec2a2b2b4f10c10dfe3 into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6

This commit is contained in:
Erikka 2022-07-29 09:24:23 +09:00 committed by GitHub
commit 2c75707b8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
examples/apivideo.py Normal file
View File

@ -0,0 +1,17 @@
#!/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.'
# 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()
)