You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function transformers.pipelines.audio_utils.ffmpeg_microphone() currently has the following code for setting the input device for ffmpeg:
def ffmpeg_microphone(
sampling_rate: int,
chunk_length_s: float,
format_for_conversion: str = "f32le",
):
"""
Helper function to read raw microphone data.
"""
<....>
system = platform.system()
if system == "Linux":
format_ = "alsa"
input_ = "default"
elif system == "Darwin":
format_ = "avfoundation"
input_ = ":0"
elif system == "Windows":
format_ = "dshow"
input_ = _get_microphone_name()
This makes it where the only option is to use default ALSA input device. If the user wants to select a different device, there is no way to change this, other than making the system-wide change of default device.
What I would like to see instead is an optional input_device=... parameter added to the ffmpeg_microphone() function that allows the user to specify a different input device.
It would still behave the same as it currently does (use alsa default), if user does nothing, so the change wouldn't break existing code. But if they pass a different input device in function args, they can use it without having to change default input device system-wide.
Motivation
I want to use a different input device than the system default input. I do not want to make the change system-wide.
Your contribution
This would be an extremely simple change to make. Just change the function header from:
Feature request
The function
transformers.pipelines.audio_utils.ffmpeg_microphone()
currently has the following code for setting the input device for ffmpeg:This makes it where the only option is to use default ALSA input device. If the user wants to select a different device, there is no way to change this, other than making the system-wide change of default device.
What I would like to see instead is an optional
input_device=...
parameter added to theffmpeg_microphone()
function that allows the user to specify a different input device.It would still behave the same as it currently does (use alsa default), if user does nothing, so the change wouldn't break existing code. But if they pass a different input device in function args, they can use it without having to change default input device system-wide.
Motivation
I want to use a different input device than the system default input. I do not want to make the change system-wide.
Your contribution
This would be an extremely simple change to make. Just change the function header from:
to:
And make the same change to the
ffmpeg_microphone_live()
function so that different device could be used there as well.Then, change this part:
to use user-supplied format input if provided, and OS specific defaults otherwise:
The text was updated successfully, but these errors were encountered: