-
Notifications
You must be signed in to change notification settings - Fork 0
Noise reduction #67
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
base: base-sha/31a8b26b476e48da22269d88f6379fea1e934491
Are you sure you want to change the base?
Noise reduction #67
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -230,14 +230,14 @@ def audio_notification(audiofile, apobj, body, title): | |
"-y", | ||
"-i", | ||
audiofile, | ||
"-filter:a", | ||
"-af", | ||
"arnndn=m='/app/sh.rnnn'", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (testing): Missing test for the new noise reduction filter The PR introduces a new noise reduction filter in the audio processing command. It's crucial to add a test to verify that the filter is applied correctly and effectively reduces noise without affecting other audio properties. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this comment correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this comment helpful? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is the comment type correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is the comment area correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this comment become an LLM test? |
||
"-af", | ||
"loudnorm=i=-14", | ||
"-ar", | ||
"8000", | ||
"-c:a", | ||
"aac", | ||
"-b", | ||
"8000", | ||
aacfile, | ||
] | ||
subprocess.run(ffmpeg_cmd, check=True, capture_output=True) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue (bug_risk): Duplicate '-af' filter option in ffmpeg command.
The '-af' option is specified twice which might lead to unexpected behavior or errors. Verify if this duplication is intentional and necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this comment correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this comment helpful?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the comment type correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the comment area correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this comment become an LLM test?