Click here to Skip to main content
15,897,891 members
Articles / Programming Languages / C#

MP3 Sound Recording Tool

Rate me:
Please Sign up or sign in to vote.
4.72/5 (38 votes)
12 Mar 2017CPOL12 min read 373.6K   17.7K   107  
A small single dialog utility for recording from the sound card in MP3 format
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <configSections>
        <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
            <section name="Record.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
        </sectionGroup>
    </configSections>
    <userSettings>
        <Record.Properties.Settings>
            <setting name="Volume" serializeAs="String">
                <value>15</value>
            </setting>
            <setting name="BitRate" serializeAs="String">
                <value>128</value>
            </setting>
            <setting name="Device" serializeAs="String">
                <value>SoundMAX Digital Audio</value>
            </setting>
            <setting name="Line" serializeAs="String">
                <value>Stereo Mix</value>
            </setting>
            <setting name="FileName" serializeAs="String">
                <value>c:\temp\recorded.mp3</value>
            </setting>
        </Record.Properties.Settings>
    </userSettings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/></startup></configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
I work in financial software. When programming for fun, I like solving problems involving some maths or a puzzle of some kind.

Comments and Discussions