mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-05 23:40:02 +01:00
Added list of recent files, recent recordings, and folders list of media files. All saved in settings. Connect list of recent recordings with recorder.
67 lines
1.4 KiB
C++
67 lines
1.4 KiB
C++
#ifndef RECORDER_H
|
|
#define RECORDER_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
#include <gst/pbutils/pbutils.h>
|
|
#include <gst/app/gstappsrc.h>
|
|
|
|
#include "FrameGrabber.h"
|
|
|
|
class PNGRecorder : public FrameGrabber
|
|
{
|
|
std::string filename_;
|
|
|
|
public:
|
|
|
|
PNGRecorder();
|
|
std::string filename() const { return filename_; }
|
|
|
|
protected:
|
|
|
|
std::string init(GstCaps *caps) override;
|
|
void terminate() override;
|
|
void addFrame(GstBuffer *buffer, GstCaps *caps) override;
|
|
|
|
};
|
|
|
|
class VideoRecorder : public FrameGrabber
|
|
{
|
|
std::string filename_;
|
|
|
|
std::string init(GstCaps *caps) override;
|
|
void terminate() override;
|
|
|
|
public:
|
|
|
|
typedef enum {
|
|
H264_STANDARD = 0,
|
|
H264_HQ,
|
|
H265_REALTIME,
|
|
H265_ANIMATION,
|
|
PRORES_STANDARD,
|
|
PRORES_HQ,
|
|
VP8,
|
|
JPEG_MULTI,
|
|
DEFAULT
|
|
} Profile;
|
|
static const char* profile_name[DEFAULT];
|
|
static const std::vector<std::string> profile_description;
|
|
static std::vector<std::string> hardware_encoder;
|
|
static std::vector<std::string> hardware_profile_description;
|
|
|
|
static const char* buffering_preset_name[6];
|
|
static const guint64 buffering_preset_value[6];
|
|
static const char* framerate_preset_name[3];
|
|
static const int framerate_preset_value[3];
|
|
|
|
VideoRecorder();
|
|
std::string info() const override;
|
|
std::string filename() const { return filename_; }
|
|
};
|
|
|
|
|
|
#endif // RECORDER_H
|