Replies: 1 comment
-
how to use this one ? but failed. Thank you @winlinvip |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
FFmpeg and OBS can both push FLV/TS/HLS streams, which means they can send FLV/TS/HLS streams to the server via HTTP POST/PUSH. The application scenarios are as follows:
This feature is mainly for the convenience of deploying and using streaming media services in the nodejs backend. Regarding the protocol:
There is also a UDP TS push stream:
FFmpeg
The FFmpeg FLV push stream command is as follows:
The FFmpeg TS push stream command is as follows (SRS does not support this yet):
OBS
For OBS push streaming, go to
Settings -> Stream -> Custom...
Server configuration:
http://127.0.0.1:8936/live/livestream.flv
http://127.0.0.1:8937/live/livestream.ts
SRS
SRS currently supports FLV push streaming:
Nginx
Previously, the nginx-ts-module supported TS push streaming, but it was converted to HLS or DASH and could not be converted to RTMP/FLV/WebRTC and other streaming media protocols.
FLV push streaming is not supported.
Beta Was this translation helpful? Give feedback.
All reactions