Stéphane Gagnon
Stéphane Gagnon
> > One of my suggestion is to bundle my Flaskdings Web UI as optionnal package for mididings. Yes, there is the livedings UI but Flaskdings do the same works,...
I have started a new discussion 😊 let me know what you think.
Hi guys, @alex-cherg, it look like you have 2 problems, the AutoRestart() and your jack connection. If your AutoRestart works by specifying the filename, this is the expected behaviour and...
Hi @alex-cherg, great that you have a workaround for the moment. What is your mididings version ?
@alex-cherg, mine is 20230114. Is a pip upgrade of mididings is an option for you ? Maybe there was a bug between releases ?
Hello! > * Do you know any output differences from one version to another (of the `--version` command)? I know for mpg123 and the stdout is `mpg123 1.32.6` easy to...
Another refactor possible with this feature would be to move the def volume to the BasePlayer class. Anyway, we support two different players, I think it make sense having a...
I also suggest a PlayerVersion class that will be created by each child class ``` class PlayerVersion: def __init__(self): self.name = "mpg123" self.major = None # Get from subprocess self.minor...
> I think the versions should be handled in `mpg_outs_ext` Yes I agree! > I believe that the base class should not have any handling of the versions. That's the...
Hi! there is at least a Python 3 specific syntax in the lib. * Enum added in V3.4 https://docs.python.org/3/library/enum.html found in consts.py It's not a priority. And I wouldn't be...