diff options
author | zachir <zachir@librem.one> | 2022-10-05 22:00:32 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-10-05 22:00:32 -0500 |
commit | f39d735e2ba625a31a7dbf6fb8bdd62501379ad1 (patch) | |
tree | d17c96714c930e0b8bc75616cc9c81b961ed5aa0 /psub/config.yaml |
Initial Commit
Diffstat (limited to 'psub/config.yaml')
-rw-r--r-- | psub/config.yaml | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/psub/config.yaml b/psub/config.yaml new file mode 100644 index 0000000..55b5421 --- /dev/null +++ b/psub/config.yaml @@ -0,0 +1,74 @@ +# +# _________ ___. +# ______ / _____/__ _\_ |__ +# \____ \\_____ \| | \ __ # | |_> > \ | / \_\ \ +# | __/_______ /____/|___ / +# |__| \/ \/ +# +# + +# This section defines the connection to your Subsonic server + +server: + # This is the url you would use to access your Subsonic server without the protocol + # (http:// or https://) + + host: cloud.zachir.xyz/index.php/apps/music/subsonic + + # Username and Password next + + username: zachir + password: iagcuoc95i9j + + # If your Subsonic server is accessed over https:// set this to 'true' + + ssl: true + + # If you use a server with a specific API version set it here + + api: 1.16.0 + +# This section defines the playback of music by pSub + +streaming: + + # The default format is 'raw' + # this means the original file is streamed from your server + # and no transcoding takes place. + # set this to mp3 or wav etc. + # depending on the transcoders available to your user on the server + + format: mp3 + + # pSub utilises ffplay (https://ffmpeg.org/ffplay.html) to play the streamed media + # by default the player window is hidden and control takes place through the cli + # set this to true to enable the player window. + # It allows for more controls (volume mainly) but will grab the focus of your + # keyboard when tracks change which can be annoying if you are typing + + display: false + + # When the player window is shown, choose the default show mode + # Options are: + # 0: show video or album art + # 1: show audio waves + # 2: show audio frequency band using RDFT ((Inverse) Real Discrete Fourier Transform) + + show_mode: 0 + + # Artist, Album and Playlist playback can accept a -r/--random flag. + # by default, setting the flag on the command line means "randomise playback". + # Setting the following to true will invert that behaviour so that playback is randomised by default + # and passing the -r flag skips the random shuffle + + invert_random: false + + # pSub can use system notifications to alert you to a song change. + # it will show you the details of the currently playing song. + # to disable notification, set this to false + + notify: false + +client: + # Added extra client config for pre-exe commands, like using it in flatpak-spawn + pre_exe: '' |