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) |
Audio Profiles - Easy switch between different audio settings - Regss - 2014-07-17 Audio Profiles Easy switch between different audio settings. Save audio settings to profiles and easy switch between them using keymap or pop-up menu: RunScript(script.audio.profiles,0) - one keymap to toggle switch between two profiles. RunScript(script.audio.profiles,x) - where x is number of profile Download: Download from KODI official repository or my repository: Regss Repository Short Instruction: 1. Configure Add-on to set names for profiles. 2. To save current audio settings to profile run Add-on from programs section. You can help translate: https://www.transifex.com/movielib/audio-profiles-for-kodi/languages/ Configuration Instruction: Step 1 Go to Programs -> Audio profile -> not run it but choose from context menu -> Configure Add-on Enable two profiles and add it names that you want Step 2 Go to System -> Audio settings Set settings for first profile for example TV by the analog output 2.0 Go to Programs -> Audio profile -> run it Save settings as first profile Step 3 Repeat Step 2 and set settings for digital like SPDIF or HDMI and save as second profile Step 4 Now. You can switch between profiles using key map. I suggest to test it on keyboard keymap. Edit or create file keyboard.xml in userdata/keymaps/ and past this code: Example 1 - keymap for each profile: Code: <keymap> Example 2 - keymap for toggle between profiles: Code: <keymap> Example 3 - button in player OSD Kodi 16 Confluence: Kodi 17 Estuary: Instruction - post #3 Example 4 - Window Popup when start playing In addon settings enable option "Show audio stream select menu on start playing" This will show popup to choose audio profile every time when you start play. Example 5 - Automatic switch for different content In Addon settings go to category "Automatic switch" then select for which types of content which profile will be automatically switched on. CHANGELOG RE: Audio Profiles switcher - live4ever - 2014-07-22 Thanks for this addon. Is there any way to get the current audio volume and store it in the profile and then set it (Application.SetVolume) upon the toggle? For example I have head-phones with the volume around 40% but the HDMI to the TV I have at 100%. RE: Audio Profiles switcher - Regss - 2014-07-24 Button on player OSD (KODI 16 - Confluence): Edit file addons/skin.confluence/720p/VideoOSD.xml Replace line: Code: <control type="button" id="255"> Code: <control type="togglebutton" id="299"> Replace: Code: <control type="image" id="2600"> to: Code: <control type="image" id="2600"> Replace: Code: <onleft>205</onleft> Code: <onleft>299</onleft> Replace: Code: <onright>255</onright> Code: <onright>299</onright> Download this two button images and extract to: KODI/addons/skin.confluence/media/ OSDAudioProfiles_Confluence.zip Button on player OSD (KODI 17 - Estuary): Edit file addon/skin.estuary/xml/VideoOSD.xml Replace: Code: <control type="radiobutton" id="70011"> to: Code: <control type="radiobutton" id="70042"> Download this button image and extract to: addons/skin.estuary/media/ OSDAudioProfiles_Estuary.zip RE: Audio Profiles switcher - live4ever - 2014-07-28 Thanks for including volume saving - works perfect here, I see 1.0.2 has 4 profiles now which is great for others who might need it. Thanks again. RE: Audio Profiles switcher - DarkRay - 2014-07-29 yeaaahhhh!!!! a real solution for multi audio out... thanksssssss RE: Audio Profiles switcher - marv_el - 2014-08-13 you can try my service addon - it switches the audio device automatically: http://forum.xbmc.org/showthread.php?tid=201896 RE: Audio Profiles switcher - bluenote - 2014-08-21 This is awesome, thanks so much. Im using this to switch to no-passthrough for certain problematic files! RE: Audio Profiles switcher - matejdro - 2014-09-10 This is probably stupid question, but how do you save audio profiles? EDIT: OK found out, I need to actually run the plugin, not in the plugin settings. RE: Audio Profiles switcher - colbert - 2014-10-03 Hi, I would love to use this, I just ran the addon to configure a couple profiles. I use an MCE Remote and the XBMC MCE Remote add-on, on Windows 7. I have C:\Users\MyUser\AppData\Roaming\XBMC\userdata\addon_data\plugin.program.mceremote\settings.xml where the keys seem to be binded from the addon. How would I add the buttons for the profiles of this addon to that? (Or should I be looking elsewhere?) Thanks for any help RE: Audio Profiles switcher - wilaim555 - 2014-10-05 You can hear anything in two audio output in same time, one must be speakers and second is your choice. In this way you do not need switch anything after initial configuration. Look this trick http://www.addictivetips.com/windows-tips/how-to-play-audio-through-hdmi-speakers-simultaneously-in-windows-7/ Work on all windows (7 and 8 x64 and x86) RE: Audio Profiles switcher - bobi1024 - 2014-11-30 Thank you, thank you, thank you I was gonna learn how the xbmc works for changing the audio channels, just to make a script that switches from 5.1 channels (my home audio system) to 2.0 stereo (headphones), and vise versa, but the code you wrote is so much better. Thank you again. RE: Audio Profiles switcher - db_NO - 2014-12-04 If i have understood correctly this script is used to change audio output device. Can it also be used to save other audio settings like"Adjust display refresh rate to match video" setting? Is there others way to make a script to toggle this setting? New: I tried adding this "videoplayer.adjustrefreshrate": "2"} to the profile1 file but it had no effect.... RE: Audio Profiles switcher - portafreak - 2015-01-05 Great addons. It is working very well with Helix too.I am using Openelec. RE: Audio Profiles switcher - czka - 2015-01-09 It does not work for me in Kodi Helix on Arch Linux. Let's see if I found a bug or if there's something wrong on my side: https://github.com/Regss/script.audio.profiles/issues/1. RE: Audio Profiles switcher - czka - 2015-01-09 My bad. One 1st needs to enable the slots that would be used, in plugin configuration. Otherwise trying to switch between disabled slots makes the script behave weird and report no error, as described in the bug report. |