Skip to content
New issue

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

fix typo #144

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bmf/demo/broadcaster/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This demo uses BMF framework to construct a simple broadcast service. The servic

- streamhub module

Each input stream is equipped with a jitter buffer to enable smooth and uniform output. In order to mix multiple streams and display them on the same screen, ti is necessary to align the timestamps and frame rates. Streamhub module binds all input stream frames together based on the background audio and video timestamps, and outputs them as a whole to the audiomix and videolayout module.
Each input stream is equipped with a jitter buffer to enable smooth and uniform output. In order to mix multiple streams and display them on the same screen, it is necessary to align the timestamps and frame rates. Streamhub module binds all input stream frames together based on the background audio and video timestamps, and outputs them as a whole to the audiomix and videolayout module.

- audiomix module

Expand Down
2 changes: 1 addition & 1 deletion bmf/test/distributed_node/cpp_demo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void test_task() {
{"input_path", "../../../files/big_bunny_10s_30fps.mp4"}
};
auto video = graph.Decode(bmf_sdk::JsonParam(decode_para), "", scheduler_cnt++);
// distributed ndoe init
// distributed node init
nlohmann::json node_para = {
{"dist_nums", dist_nums}
};
Expand Down
Loading