Beispiel #1
0
 public MusicFingerPrinter(string clientID, string fpCalcPath)
 {
     ClientID      = clientID;
     FPCalcPath    = fpCalcPath;
     AcoustID      = new AcoustID(ClientID, FPCalcPath);
     ExceptionList = new List <Tuple <string, string> >( );
 }
 public MusicFingerPrinter( string clientID, string fpCalcPath )
 {
     ClientID = clientID;
     FPCalcPath = fpCalcPath;
     AcoustID = new AcoustID( ClientID, FPCalcPath );
     ExceptionList = new List<Tuple<string, string>>( );
 }
Beispiel #3
0
        public MusicFingerPrinter()
        {
            ClientID = "8XaBELgH";

            var dir = System.Reflection.Assembly.GetExecutingAssembly( ).GetName( ).CodeBase;

            FPCalcPath = getExpectedFPCalcPath( ) + "fpcalc.exe";

            //  bool isThisPathValid = File.Exists( FPCalcPath );
            // hardcode the path of FPCalc if desired
            //  FPCalcPath = @"C:\Users\KNM\Documents\GitHub\MusicManager\MusicManager\Utilities\fpcalc.exe";

            AcoustID      = new AcoustID(ClientID, FPCalcPath);
            ExceptionList = new List <Tuple <string, string> >( );
        }
        public MusicFingerPrinter()
        {
            ClientID = "8XaBELgH";

            var dir = System.Reflection.Assembly.GetExecutingAssembly( ).GetName( ).CodeBase;

            FPCalcPath = getExpectedFPCalcPath( )  + "fpcalc.exe";

            //  bool isThisPathValid = File.Exists( FPCalcPath );
            // hardcode the path of FPCalc if desired
            //  FPCalcPath = @"C:\Users\KNM\Documents\GitHub\MusicManager\MusicManager\Utilities\fpcalc.exe";

            AcoustID = new AcoustID( ClientID, FPCalcPath );
            ExceptionList = new List<Tuple<string, string>>( );
        }