Thomas Adamcik
Thomas Adamcik
This feels a bit like you've jumped ahead a bit to explaining the implementation for a problem that hasn't been defined, or at least one that isn't a clear enough...
I think we can get away with combining the idea of a config service for the settings and the more general configuration idea you are suggesting. As long as we...
Sorry for the slow followup on this, still haven't had time to ponder on this enough to give you the proper answers we need for moving this forward. But the...
Thanks for the patience, unfortunately some of these type of design decisions still depend to much on just me and @jodal, and you seem to have caught us at a...
On the one side this is more or less what I'm looking for, but at the same time it pulls in a lot of extra baggage... Personally I'm also still...
I used @AdrielVelazquez repo as a starting point and wound up turning it into https://github.com/adamcik/fleet-nixos - Packages are built from source, instead of importing the deb from `fleetctl` - All...
Note that prompt we will use `getpass.getpass` if the value is considered secret. And `mopidy config set spotify/password` should also work, just set the value in the config and perhaps...
Didn't remember if I've recorded this hack somewhere already: ``` python import ConfigParser as configparser import io import itertools import re config = """ # baz [section] # comment ;...
This requires getting the default gstreamer registry, getting the factories with the right features and then getting the support caps for the elements the factories creates and extracting mime types...
Following is a quick starting point with an overly broad element filtering. ``` python filter = (gst.ELEMENT_FACTORY_TYPE_DEPAYLOADER | gst.ELEMENT_FACTORY_TYPE_DEMUXER | gst.ELEMENT_FACTORY_TYPE_PARSER | gst.ELEMENT_FACTORY_TYPE_DECODER | gst.ELEMENT_FACTORY_TYPE_MEDIA_AUDIO) for f in gst.element_factory_list_get_elements(filter, gst.RANK_NONE):...