Click here to Skip to main content
15,885,546 members
Articles / Multimedia

PracticeSharp (or Practice#) - A Utility for Practicing your Musical Instrument with Playback

Rate me:
Please Sign up or sign in to vote.
4.94/5 (72 votes)
12 Jan 2018LGPL317 min read 205.4K   134  
A playback practice tool for musicians that allows slowing down, changing pitch, defining presets and loops on music files.
<?xml version="1.0"?>
<configuration>
<configSections>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
        <section name="BigMansStuff.PracticeSharp.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
    </sectionGroup>
</configSections>
<startup><supportedRuntime version="v2.0.50727"/></startup><userSettings>
        <BigMansStuff.PracticeSharp.Properties.Settings>
            <setting name="LastAudioFolder" serializeAs="String">
                <value />
            </setting>
            <setting name="LastFilename" serializeAs="String">
                <value />
            </setting>
            <setting name="ApplicationVersion" serializeAs="String">
                <value />
            </setting>
            <setting name="LastVersionCheckDateTime" serializeAs="String">
                <value>12/18/2010 12:00:00</value>
            </setting>
            <setting name="SupressVersionCheck" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="LastFilterIndex" serializeAs="String">
                <value>0</value>
            </setting>
            <setting name="Latency" serializeAs="String">
                <value>125</value>
            </setting>
        </BigMansStuff.PracticeSharp.Properties.Settings>
    </userSettings>
</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 GNU Lesser General Public License (LGPLv3)


Written By
Architect
United States United States
I've been punching code since the age of 9 when I got my first computer - A Sinclair Spectrum with 48Kb of RAM!
That was a great time, when peek and pokes were the way to do stuff.

I wrote in X86 Assembly, Logo Wink | ;) , Basic, C, C++, Pascal, Delphi, Java and in the last 16 years C#, but NodeJS and Python too.

Comments and Discussions