14 lines
258 B
Bash
14 lines
258 B
Bash
#/usr/bin/bash
|
|
|
|
SDP_FILE="output.sdp"
|
|
|
|
ffmpeg \
|
|
-stream_loop -1 \
|
|
-rtbufsize 2M \
|
|
-re \
|
|
-i "test/Big_Buck_Bunny_1080_10s_10MB.mp4" \
|
|
-b:v 3M \
|
|
-sdp_file $SDP_FILE \
|
|
-vcodec libx264 \
|
|
-acodec aac \
|
|
-f rtp rtp://0.0.0.0:1234 |