mistserver/src/output/output_progressive_flv.h
Thulinma 8ddfb000df Fixed .flv recording
Added .ts recording
Added .mp3 recording
Added support for stdout output in FLV, MP3 and HTTPTS outputs
2016-05-12 14:49:14 +02:00

18 lines
377 B
C++

#include "output_http.h"
namespace Mist {
class OutProgressiveFLV : public HTTPOutput {
public:
OutProgressiveFLV(Socket::Connection & conn);
static void init(Util::Config * cfg);
void onHTTP();
void sendNext();
void sendHeader();
private:
FLV::Tag tag;
bool isRecording();
};
}
typedef Mist::OutProgressiveFLV mistOut;