Conversation
ProcessAudioRecorder <PID> <FILEPATH>. For example: ProcessAudioRecorder 12345 recorder.wav.
…FILEPATH> directly, or set --mode to 2 without providing a PID. For example: ProcessAudioRecorder --mode 2 --path recorder.wav. The ProcessAudioRecorder <PID> <FILEPATH> usage has been removed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
场景需求
某些笔记本电脑在录制系统声音时音质会很差,有的缺少低频,有的缺少高频,甚至还有的音量也很小。当然,--mode 0就是这种模式,在我的笔记本电脑上用这种模式录出来的声音根本就没法听,但用进程排除模式就很正常。
起初我都是在任务管理器里随便找一个进程,将他的 PID 记下来,然后用 --mode 2,并填写上上面的 PID 。这种方式确实很爽,但每次录音时都需要在任务管理器里找一个进程属实是有点麻烦了,于是我就想,既然软件一运行起来那肯定就有进程了,让软件排除自身不就没这么麻烦了吗?于是我说干就干。
使用方法
两种方式:
ProcessAudioRecorder.exe --mode 2 --path d:\Recording.wavProcessAudioRecorder.exe d:\Recording.wav