zhangbiwu

Results 5 comments of zhangbiwu

support post-request, and need to develop by yourself ``` void HttpClient::SendReq(const std::string &url, const std::string &post_data, ReqCallback req_callback) { s_req_callback = req_callback; mg_mgr mgr; mg_mgr_init(&mgr, NULL); auto connection = mg_connect_http(&mgr,...

http-get本来就不传递body数据,http-post才能传递body数据。

no way, and try to put content into http-server, and ffmpeg input with http-protocol: ``` in1 := ffmpeg.Input("http://xxx", inArgs) overlay := ffmpeg.Input("http://yyy", inArgs).Filter("scale", ffmpeg.Args{"128:-1"}) e := ffmpeg.Filter( []*ffmpeg.Stream{ in1, overlay,...

> srv.WriteTimeout 并没有被使用,所以没有赋值并没有影响。 为了保证bfe代码中配置参数的完整性,应该赋值。希望@xuleiming 方便时更新下。我在基于BFE做二次开发,在前半段(client->BFEserver)需要使用WriteTimeout变量。

I found this project "https://github.com/byyam/mediasoup-go-worker" which is rewritten in golang, you can take a look. But I think it is better to use golang for control logic and c/c++ for...