//
|
// Created by ps on 18-9-18.
|
//
|
|
#include <AppPipeController.h>
|
#include <basic/util/app/AppPreference.hpp>
|
|
|
int main() {
|
Json::Value json;
|
json["rtsp"] = "rtsp://admin:a1234567@192.168.1.201:554/h264/ch1/main/av_stream";
|
|
std::string publish_basepath = "rtmp://localhost:1934/live/cam" + std::to_string(554);
|
appPref.setLongData("gpu.index", 0);
|
appPref.setStringData("publish.basepath", publish_basepath);
|
appPref.setIntData("pulish.width", 640);
|
appPref.setIntData("pulish.height", 360);
|
|
AppPipeController a(0, json);
|
a.start();
|
|
getchar();
|
|
a.stop();
|
a.wait();
|
|
return 0;
|
}
|