13 lines
742 B
Plaintext
13 lines
742 B
Plaintext
|
|
// 推流
|
||
|
|
ffmpeg -re -stream_loop -1 -fflags nobuffer -i 1.mp4 -c copy -f rtsp rtsp://127.0.0.1:8554/Media/stream
|
||
|
|
|
||
|
|
ffmpeg -re -stream_loop -1 -fflags nobuffer -i e:/StrongIdea.mp4 -c copy -f rtsp rtsp://127.0.0.1:8554/Media/stream -fflags nobuffer
|
||
|
|
|
||
|
|
ffmpeg -re -i e:/StrongIdea.mp4 -c:v libx264 -preset ultrafast -maxrate 16000k -bufsize 8000k -pix_fmt yuv420p -c:a aac -b:a 128k -f rtsp rtsp://127.0.0.1:8554/Media/stream -fflags nobuffer
|
||
|
|
|
||
|
|
// 拉流/播放
|
||
|
|
ffplay rtsp://127.0.0.1:8554/Media/stream
|
||
|
|
|
||
|
|
ffplay -analyzeduration 10000 -probesize 10000 -rtsp_transport tcp rtsp://127.0.0.1:8554/Media/stream01 -fflags nobuffer
|
||
|
|
|
||
|
|
ffplay -analyzeduration 10000 -probesize 10000 -rtsp_transport tcp rtsp://127.0.0.1:8554/Media/stream02 -fflags nobuffer
|