kyriesent / node-rtsp-stream

Stream any RTSP stream and output to websocket for consumption by jsmpeg (https://github.com/phoboslab/jsmpeg). HTML5 streaming video! Requires ffmpeg.
MIT License
451 stars 166 forks source link

Remove unnecessary FFmpeg options #8

Closed ajbogh closed 8 years ago

ajbogh commented 8 years ago

Removed the following options as the -b:v option causes re-encoding of the video and slows down the processor, while the -r 30 specifies an output framerate of 30fps, which may be different than the input frame rate of the RTSP source and could cause erroneous warning messages from ffmpeg.

    '-b:v'
    '800k'
    '-r'
    '30'
kyriesent commented 8 years ago

👍 looks good, thanks for collaborating!!