Sound Change
-
- Posts: 3
- Joined: Wed Jul 31, 2024 5:38 am
- Location:
- HTPC Specs:
Sound Change
I want to change the menu sounds in Windows Media Center, but how do I do that?
-
- Posts: 2863
- Joined: Sun Jun 02, 2013 9:44 pm
- Location:
- HTPC Specs:
I was able to change one of the sounds used by WMC (the sound you get when you select "Delete" for a recording, among other actions) by simply using the "change system sounds" of Win7 and changing the WAV sound file used for the "Default beep".
This is the only one I changed as the default one annoyed me, so I'm not sure if it works for any of the other WMC sounds, I'm also not sure if there is a way to change the sounds so it only affects WMC and not the whole system.
This is the only one I changed as the default one annoyed me, so I'm not sure if it works for any of the other WMC sounds, I'm also not sure if there is a way to change the sounds so it only affects WMC and not the whole system.
- IT Troll
- Posts: 1235
- Joined: Sun Nov 27, 2011 9:42 am
- Location: Edinburgh, UK
- HTPC Specs:
Beyond the Default Beep, which is used, you can change the other sounds using Media Center Themer.
This includes FOCUS, MINISELECT, RECORD, SELECT, STARTUP. Be warned though, theming is addicitive!
This includes FOCUS, MINISELECT, RECORD, SELECT, STARTUP. Be warned though, theming is addicitive!
Are you a Recorded TV HD user or want to give it a try? Check out the community-made update; Recorded TV HD v2.1.1
-
- Posts: 3
- Joined: Wed Jul 31, 2024 5:38 am
- Location:
- HTPC Specs:
But how though?
- IT Troll
- Posts: 1235
- Joined: Sun Nov 27, 2011 9:42 am
- Location: Edinburgh, UK
- HTPC Specs:
You configure MCT to replace the sounds embedded in Media Center with ones of your own choosing. MCT includes full documentation, but if you download some themes you will see how it is done.
Are you a Recorded TV HD user or want to give it a try? Check out the community-made update; Recorded TV HD v2.1.1
-
- Posts: 3
- Joined: Wed Jul 31, 2024 5:38 am
- Location:
- HTPC Specs:
I could find a theme or a sample XML file of how to replace the default sounds.
- IT Troll
- Posts: 1235
- Joined: Sun Nov 27, 2011 9:42 am
- Location: Edinburgh, UK
- HTPC Specs:
I'm suspecting you meant to say could not. With MCT you can replace any embedded resource with another.
You can place MCT in logging mode to reveal what the resource names are.
So for example, for the sounds you just list them as follows in the Resources section.
You can place MCT in logging mode to reveal what the resource names are.
So for example, for the sounds you just list them as follows in the Resources section.
Code: Select all
<Resources>
<Resource Id="INTRO_A.WAV">
<Replace File="Theme\Audio\ANYTHING1.wav"/>
</Resource>
<Resource Id="SELECT_A.WAV">
<Replace File="Theme\Audio\ANYTHING2.wav"/>
</Resource>
<Resource Id="FOCUS_A.WAV">
<Replace File="Theme\Audio\ANYTHING3.wav"/>
</Resource>
<Resource Id="RECORDINGSTARTED_A.WAV">
<Replace File="Theme\Audio\ANYTHING4.wav"/>
</Resource>
<Resource Id="MINISELECT_A.WAV">
<Replace File="Theme\Audio\ANYTHING5.wav"/>
</Resource>
</Resources>
Are you a Recorded TV HD user or want to give it a try? Check out the community-made update; Recorded TV HD v2.1.1