Eittipat / pyrtmp

PyRTMP: Pure Python RTMP server
MIT License
86 stars 20 forks source link

how to play live?after push the stream. #22

Closed bird00101011 closed 2 months ago

bird00101011 commented 2 months ago

how to play live?after push the stream.

Eittipat commented 2 months ago

Cannot play directly, this lib is mainly an adapter to convert rtmp stream into something else. In order to play your stream, you can forward rtmp to ffmpeg and generating hls play lst and play it using hls player. Look at "demo_ffmpeg.py"

bird00101011 commented 2 months ago

Thank u.