Click here to Skip to main content
15,885,366 members
Articles / Desktop Programming / Windows Forms

BSEtunes

Rate me:
Please Sign up or sign in to vote.
4.67/5 (11 votes)
24 Apr 2010CPOL4 min read 64.6K   4.3K   58  
BSEtunes is a MySQL based, full manageable, networkable single or multiuser jukebox application
using System;
using System.Collections.Generic;
using System.Text;

using BSE.Platten.Common;
using BSE.Platten.Ripper.Lame;
using System.Diagnostics.CodeAnalysis;

namespace BSE.Platten.Ripper
{
    /// <summary>
    /// Contains the setting properties of the MP3ConfigurationData class.
    /// </summary>
    public class MP3ConfigurationData : IConfigurationData
    {
        #region FieldsPrivate

        private uint m_iBitRateMpeg1 = 192;
        private bool m_bOriginalBit = true;
        private MpegMode m_eMpegMode = MpegMode.Stereo;

        #endregion

        #region Properties
        /// <summary>
        /// Gets or sets the BitrateMpeg1.
        /// </summary>
        public uint BitrateMpeg1
        {
            get { return this.m_iBitRateMpeg1; }
            set { this.m_iBitRateMpeg1 = value; }
        }
        /// <summary>
        /// Gets or sets the CopyrightBit.
        /// </summary>
        public bool CopyrightBit
        {
            get;
            set;
        }
        /// <summary>
        /// Gets or sets the CRCChecksum.
        /// </summary>
        [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly")]
        public bool CRCChecksum
        {
            get;
            set;
        }
        /// <summary>
        /// Gets or sets the OriginalBit.
        /// </summary>
        public bool OriginalBit
        {
            get { return this.m_bOriginalBit; }
            set { this.m_bOriginalBit = value; }
        }
        /// <summary>
        /// Gets or sets the OriginalBit.
        /// </summary>
        public bool PrivateBit
        {
            get;
            set;
        }
        /// <summary>
        /// Gets or sets the MpegMode.
        /// </summary>
        public MpegMode MpegMode
        {
            get { return this.m_eMpegMode; }
            set { this.m_eMpegMode = value; }
        }
        #endregion
    }
}

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
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions