Open x850044053wwt opened 1 month ago
may you provide the cpp demo code?
nlohmann::json graph_para = { {"dump_graph", 1} }; auto graph = bmf::builder::Graph(bmf::builder::PushdataMode, JsonParam(graph_para)); auto video_stream = graph.InputStream("blob_video", "", ""); nlohmann::json option = { { "video_codec", "h264" }, { "video_time_base", "1,30000" }, { "push_raw_stream", 1 } }; auto decode_stream = video_stream.Decode(JsonParam(option)); option = { { "output_path", "D:/output.mp4" }, { "video_params", { { "codec", "h264" }, { "width", 640 }, { "height", 480 }, { "crf", "23" }, { "preset", "veryfast" } } } }; decode_stream.EncodeAsVideo(JsonParam(option)); graph.Start();
GraphMode中没有数据推送模式枚举。源码中添加对应枚举后,c++没有对应python中的Graph::run_wo_block。执行Graph::run()之后,线程阻塞,无法继续调用FillPacket