arut / nginx-rtmp-module

NGINX-based Media Streaming Server
http://nginx-rtmp.blogspot.com
BSD 2-Clause "Simplified" License
13.42k stars 3.51k forks source link

Recording module not working help needed #832

Open beardedbob opened 8 years ago

beardedbob commented 8 years ago

Hi,

I'm trying to record the live stream that I'm sending from obs at source before it is re encoded and set to another app via -flv. The recording using the below isn't doing anything therefore is something missing like a start stop command or is something incorrect?

Thanks bob. Below is the example from my ngnixnginx config.

         application live1 {

                            live on;

                            record all;

                            record_append on;

                            record_path D:\Capture;

                            ffmpeg -i http://someserver.com/mychannel.ts -c:v copy -c:a nellymoser -ar 44100 -ac 1 -f flv rtmp://localhost/myapp/mystream;

    }
AstromonkeyIO commented 7 years ago

Hey @beardedbob, were you able to figure this out? I'm stuck on the same issue. LMK. Thx!