Skip to content

Commit

Permalink
set showprogress=False for bestsource (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsaowji authored Jan 23, 2025
1 parent a9272a2 commit c0a9d91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/shared/WobblyProject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4130,7 +4130,7 @@ void WobblyProject::presetsToScript(std::string &script) const {

const char *WobblyProject::getArgsForSourceFilter() const {
if (source_filter == "bs.VideoSource")
return ", rff=True";
return ", rff=True, showprogress=False";
return "";
}

Expand Down
2 changes: 1 addition & 1 deletion src/wibbly/WibblyJob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ void WibblyJob::headerToScript(std::string &script) const {

const char *WibblyJob::getArgsForSourceFilter() const {
if (source_filter == "bs.VideoSource")
return ", rff=True";
return ", rff=True, showprogress=False";
return "";
}

Expand Down
2 changes: 1 addition & 1 deletion src/wobbly/WobblyWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3880,7 +3880,7 @@ void WobblyWindow::openProject() {

const char *WobblyWindow::getArgsForSourceFilter(const QString &source_filter) {
if (source_filter == "bs.VideoSource")
return ", rff=True";
return ", rff=True, showprogress=False";
return "";
}

Expand Down

0 comments on commit c0a9d91

Please sign in to comment.