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.
20 lines
466 B
C++
20 lines
466 B
C++
//
|
|
// Created by Matthew on 2025/3/1.
|
|
//
|
|
|
|
#ifndef MICROPHOTO_RTSPRECORDER_H
|
|
#define MICROPHOTO_RTSPRECORDER_H
|
|
|
|
#include <string>
|
|
|
|
// void dumpRtspToMp4(const std::string &rtspUrl, const std::string &outputPath, uint32_t durationInMs);
|
|
void dumpRtmpToMp4(const char* rtmpUrl, const char* outputPath, uint32_t duration);
|
|
void dumpRtspToMp4(const char* rtspUrl, const char* outputPath, uint32_t duration);
|
|
|
|
class RTSPRecorder {
|
|
|
|
};
|
|
|
|
|
|
#endif //MICROPHOTO_RTSPRECORDER_H
|