We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GraphMode中没有数据推送模式枚举。源码中添加对应枚举后,c++没有对应python中的Graph::run_wo_block。执行Graph::run()之后,线程阻塞,无法继续调用FillPacket
The text was updated successfully, but these errors were encountered:
may you provide the cpp demo code?
Sorry, something went wrong.
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();
No branches or pull requests
GraphMode中没有数据推送模式枚举。源码中添加对应枚举后,c++没有对应python中的Graph::run_wo_block。执行Graph::run()之后,线程阻塞,无法继续调用FillPacket
The text was updated successfully, but these errors were encountered: