mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
740 B
Plaintext
27 lines
740 B
Plaintext
8 years ago
|
# use ffmpeg to ingest file/stream/device to SRS
|
||
|
# @see https://github.com/ossrs/srs/wiki/v1_CN_SampleIngest
|
||
|
# @see full.conf for detail config.
|
||
|
|
||
|
listen 1935;
|
||
|
max_connections 1000;
|
||
|
vhost __defaultVhost__ {
|
||
|
ingest {
|
||
|
enabled on;
|
||
|
input {
|
||
|
type stream;
|
||
|
url rtsp://admin:12345678@192.168.2.21:554/Streaming/Channels/501?transportmode=unicast;
|
||
|
}
|
||
|
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
||
|
engine {
|
||
|
enabled on;
|
||
|
perfile {
|
||
|
rtsp_transport tcp;
|
||
|
}
|
||
|
vcodec copy;
|
||
|
acodec copy;
|
||
|
output rtmp://127.0.0.1:[port]/live?vhost=[vhost]/livestream;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|