Kodi Community Forum
Release Audio Profiles - Easy switch between different audio settings - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151)
+---- Thread: Release Audio Profiles - Easy switch between different audio settings (/showthread.php?tid=200081)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25


RE: Audio Profiles switcher - peppe_sr - 2015-05-15

Really useful service, i set the command as favourite.
tnx Regss.
Peppe


RE: Audio Profiles switcher - Roby77 - 2015-05-16

Cosa vuol dire che lo hai messo come preferito ? Io ho associato un tasto del telecomando, intendi questo ? Ciao

Translate: As favourite ? What does it mean ?


RE: Audio Profiles switcher - peppe_sr - 2015-05-16

means that it is in favourites.xml as
Code:
<favourites>
    <favourite name="Audio Profiles">RunScript(script.audio.profiles,0)</favourite>
</favourites>
i prefer so and not a button on my remote.
have you noticed that during mp3 playback, if switch profiles the mp3s re-starts?
Ciao
Peppe


RE: Audio Profiles switcher - puenktchen - 2015-05-19

Hi regss,
i have a small problem: I have created two profiles where i also store the system video settings with different screen resolutions.
When i change the profiles, Kodi always wants to confirm the new screen resolution. Really annoying!
Can you somehow autoclose this dialog?


RE: Audio Profiles switcher - Roby77 - 2015-05-21

(2015-05-16, 11:11)peppe_sr Wrote: means that it is in favourites.xml as
Code:
<favourites>
    <favourite name="Audio Profiles">RunScript(script.audio.profiles,0)</favourite>
</favourites>
i prefer so and not a button on my remote.
have you noticed that during mp3 playback, if switch profiles the mp3s re-starts?
Ciao
Peppe


Yes same story for me

Ciao


RE: Audio Profiles switcher - peppe_sr - 2015-06-01

(2015-05-19, 22:41)pünktchen Wrote: Hi regss,
i have a small problem: I have created two profiles where i also store the system video settings with different screen resolutions.
When i change the profiles, Kodi always wants to confirm the new screen resolution. Really annoying!
Can you somehow autoclose this dialog?

but it saves also your video optionns? i tried but it doesn't work for me in video-->playback section.
i'd like to save a profile with the "adjust display refresh rate to match video" seta as "always" and another set as "off"
NodNod


RE: Audio Profiles switcher - Regss - 2015-06-03

(2015-05-19, 22:41)pünktchen Wrote: Hi regss,
i have a small problem: I have created two profiles where i also store the system video settings with different screen resolutions.
When i change the profiles, Kodi always wants to confirm the new screen resolution. Really annoying!
Can you somehow autoclose this dialog?

Unfortunately not. XBMC does not offer such possibility.


RE: Audio Profiles switcher - puenktchen - 2015-06-03

(2015-06-03, 09:09)Regss Wrote:
(2015-05-19, 22:41)pünktchen Wrote: Hi regss,
i have a small problem: I have created two profiles where i also store the system video settings with different screen resolutions.
When i change the profiles, Kodi always wants to confirm the new screen resolution. Really annoying!
Can you somehow autoclose this dialog?

Unfortunately not. XBMC does not offer such possibility.
Too bad!
I've just tried it myself by creating two seperate processes that should start simultan:
your "class switch" and a "while loop" that autocloses dialogwindows every second. (https://docs.python.org/2.7/library/multiprocessing.html)
Unfortunately the processes only start one after another in Kodi.

Maybe you can find a solution? Because i nearly don't know anything about Python Confused


RE: Audio Profiles switcher - peppe_sr - 2015-06-03

@ regss
i haven't found the right place to translate in italian your script on transifes so i made an italian string.po with the traslation.
hope it is useful.

i think i found myself the answe for my previous stupid question. Tongue
Peppe


RE: Audio Profiles switcher - Roby77 - 2015-06-05

good idea thank you,...how can i use it ?, just take care that you mispelled riproduzione with Riporduzione

one example :#: Settings
msgctxt "#32011"
msgid "Impostazioni Riporduzione [Video -> Riporduzione]"
msgstr ""


RE: Audio Profiles switcher - peppe_sr - 2015-06-05

oops thanks mate here the corret version
usually to use a new language you have to create the specific language folder under the addon folders installation.
if you use windows:
Code:
\\nomepc\Users\mionomeutente\AppData\Roaming\Kodi\addons\script.audio.profiles\resources\language
for other os same way but different location, you know!
in this particular case, don't know why, maybe a mistake of mine, but italian folder was ignored so i overwrited the "strings.po" file under "english" with my new one.
Peppe


RE: Audio Profiles switcher - DaveBlake - 2015-08-11

Thanks Regss for this addon. I was about to try and create a similar thing myself and I found it already exists!! Smile

I had been using the ("dirty") dual audio patch to easily switch between TV sound and hifi. Since I never listen to both outputs at the same time this was an overkill, all I really needed was an easy way to switch audio output settings between preset values. Just what you addon does. Excellent.

I have a keymap setup to Runscript(script.audio.profiles, 0), and that works fine. Hhowever I would like to be able to switch audio profile remotely too e.g. from any networked device (mostly android tablet) running a web browser. Have been trying to get a JSON command line to work, but having no joy, I don't have the correct parameters. I have tried

Code:
http://192.168.1.213/jsonrpc?request={"jsonrpc":"2.0","method":"Addons.ExecuteAddon","params":{"addonid":"script.audio.profiles","params":{"mode":"0"}},"id":1}

which returns {"id":1,"jsonrpc":"2.0","result":"OK"} but does not switch anything. I am pretty sure that calling the parameter "mode" is wrong, I have changed it to XXXX and got the same return.

Do you know how to call your addon from JSON?


RE: Audio Profiles switcher - Regss - 2015-08-11

Try:

Code:
http://192.168.1.213/jsonrpc?request={"jsonrpc":"2.0","method":"Addons.ExecuteAddon","params":{"addonid":"script.audio.profiles","params": ["0"]},"id":1}



RE: Audio Profiles switcher - DaveBlake - 2015-08-11

(2015-08-11, 18:27)Regss Wrote: Try:

Code:
http://192.168.1.213/jsonrpc?request={"jsonrpc":"2.0","method":"Addons.ExecuteAddon","params":{"addonid":"script.audio.profiles","params": ["0"]},"id":1}

Yes that did the trick. Very many thanks Smile


RE: Audio Profiles switcher - crogers1975 - 2015-08-12

I have a receiver that will only accept analog audio to zone 2. Will this addon allow me to have audio going to my main speakers via HDMI and zone 2 simultaneously? Trying to figure this issue out. Thanks.