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.
34 lines
969 B
Plaintext
34 lines
969 B
Plaintext
11 years ago
|
# the config for srs use ffmpeg to transcode
|
||
|
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleFFMPEG
|
||
|
# @see full.conf for detail config.
|
||
|
|
||
11 years ago
|
listen 1935;
|
||
|
vhost __defaultVhost__ {
|
||
|
transcode {
|
||
|
enabled on;
|
||
|
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
||
|
engine ff {
|
||
|
enabled on;
|
||
|
vfilter {
|
||
|
}
|
||
|
vcodec libx264;
|
||
|
vbitrate 500;
|
||
|
vfps 25;
|
||
|
vwidth 768;
|
||
|
vheight 320;
|
||
|
vthreads 12;
|
||
|
vprofile main;
|
||
|
vpreset medium;
|
||
|
vparams {
|
||
|
}
|
||
|
acodec libaacplus;
|
||
|
abitrate 70;
|
||
|
asample_rate 44100;
|
||
|
achannels 2;
|
||
|
aparams {
|
||
|
}
|
||
|
output rtmp://127.0.0.1:[port]/[app]?vhost=[vhost]/[stream]_[engine];
|
||
|
}
|
||
|
}
|
||
|
}
|