2022-03-21, 23:28
(2022-03-21, 10:55)tomasiek Wrote: [ -> ]Is there a way to display information about the currently used audio profile? I would like to add information to the information about the file being played.
Same answer as a year ago.
(2022-03-21, 10:55)tomasiek Wrote: [ -> ]Is there a way to display information about the currently used audio profile? I would like to add information to the information about the file being played.
(2022-03-22, 01:39)YeahWhatever Wrote: [ -> ]Could this add-on be used to (automatically) switch audio profile based on the current add-on in use? For example, the Netflix add-on is very quiet compared to others that I use so I turn the volume up on the TV when watching something via Netflix, and then I get my ears blasted when I watch something with another add-on because I forgot to turn the volume back down again. It's... quite annoying.Sorry, no. Audio Profiles looks at the audio content of a stream, that's it. There is no meaningful way of which I am aware to tell if the stream is coming from an add-on or a local video, never mind which add-on. Your best bet is to create a profile and then assign it to a key press on your remote so you can activate it when needed. The wiki page has some examples of how to do that. You can get to it by using the link in my signature to my addons, select AP, and then find the wiki link on that detail page.
(2020-11-24, 23:27)redbiro Wrote: [ -> ]Hi there,
Is it possible to add a "Bluetooth connected" option to the Auto Switch section?
...
(2021-10-29, 01:09)arfrater Wrote: [ -> ]Hi
I'm using Kodi on Bohdi Linux (built on Ubuntu 20.04) I can play through Bluetooth headphones by switching profile manually but is it possible to auto switch profiles when the Bluetooth headphones are turned on ?
...
(2022-06-26, 20:34)selch Wrote: [ -> ]I do not know, if I misunderstand the usage or if I have a feature request: ideal would be for me, to have a possibility to add audio profiles to the kodi favorites and by choosing this (e.g. via yatse) it would switch between the profiles.If YATSE can mimic the keyboard, you can assign keys to switch to certain profiles.
Now it seems, that "clicking" on the audio-profiles symbol does pop up the availyble profiles and apply the current sound settings to that profile. This is necessary and useful when configuring the system - but for me only once. This would best be done in the settings.
(2022-06-26, 23:57)Jackojmi Wrote: [ -> ]Has anyone found a workaround for saving volume amplification?What work around? There is an option in the EXTRAS section of the settings that sets volume levels are saved as part of the profile. So if you change the volume level and save a profile, you can get back that volume level by switching to that profile. I use this all the time. I have a profile that runs at startup to make sure the volume is at 100%, a different one that runs when music plays that sets the volume to 80% (otherwise the music is too loud), and then an action that runs that same 100% volume profile when the GUI in "in front again" which includes when music stops.
Useful for late night TV and levelling sources.
Thanks
(2022-06-27, 00:22)Jackojmi Wrote: [ -> ]I refer specifically to the "volume amplification" setting that only occurs in the osd when playing a video or music- not the volume control. This setting is really an audio compressor with makeup gain, and is useful for levelling sources from inside and outside of Kodi.
For example, I use libreelec Chrome browser to stream some content, meaning the system volume is at %100 by default, but then Kodi TV sources are too quiet without adjusting the amplifier.
Example 2 playing records, if I could level the sources inside/outside of Kodi I would not have to adjust my amplifier constantly (esp useful with kids).
I say "workaround" as this question has been addressed one before.
Thankyou
(2022-10-19, 16:53)Alex_1977 Wrote: [ -> ]Hi everyone !There isn't anyway to do this in Audio Profiles. If you want to modify the code, take a look at resources/audioprofiles.py. Specifically look at the _auto_switch_content function. In there is most of the logic for figuring out what to do with the various kinds of things that can be playing. You would probably need to either add some code there for your specific thing or at least use that as the start for tracing the logic to figure out where to insert you code to turn on the amp.
I use a Raspberry Pi4 with a justboom DAC Hat and Leia, works great.
I have a tube amp that I switch on and off with a relay and a GPIO of the Pi.
I have two ways to do that : the first with an extral unlatched swtich connected to a GPIO and the second with my phone. Both exectutes some python scripts, no problem.
Now a want the use the audioprofiles addon to do it automatically. I can switch off with the idle event, that's ok.
But to turn it on, I want to execute the task only when audio files are played back, not with movies for example.
What's the best way to do that ?
Regards.