mobiletechtracker / NetCoreAudio

Allows playback of audio files on .NET Core with minimal dependencies
MIT License
124 stars 20 forks source link

[FeatureRequest][BUG] amixer: Unable to find simple control 'Master',0 #16

Open Tekkharibo opened 1 year ago

Tekkharibo commented 1 year ago

Hi,

I have try to implement the volume control for linux and I have the error amixer: Unable to find simple control 'Master',0, I know why, I don't have a Master but on your code, for linux var tempProcess = StartBashProcess($"amixer -M set 'Master' {percent}%"); you specify on it the Master

Can you take on argument of Player ctor, in case of linux, the control interface and by default Master ?

Regards