chenshijun
2019-04-22 291dbcd9331cd0df41addef74defa4654ee034fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// Created by ps on 18-9-18.
//
 
#include <AppPipeController.h>
#include <basic/util/app/AppPreference.hpp>
 
using namespace std;
 
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.setIntData("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();
//    std::cout<<__DATE__<<" "<<__TIME__<<std::endl;
//    string img = "http://192.168.1.182:8080/ManCarAnaly/group2/M00/02/B5/wKgBnFw3TB-AfsrIAAah4WWyHJ0555.jpg";
//
//    auto pos = img.find("group");
//
//    auto img_url = img.substr(pos);
//    std::string img_str = "http://";
//    img_str.append("");
 
 
    return 0;
}