Detect beat-per-minute value of specified file. (ANSI version)
virtual __stdcall int DetectFileBPM(const char * pchFileName, TStreamFormat nFormat, TBMPDetectionMethod nMethod) = 0;
Parameters |
Description |
const char * pchFileName |
Pointer to ANSI null terminated string specifying file name. |
TStreamFormat nFormat |
Stream format identifier. Use sfAutodetect if you need to autodetect stream format of specified file. |
TBMPDetectionMethod nMethod |
Detection method. See valid detection methods. |
BPM value. If algorithm can't detect BPM value, return value is 0.
This function will open temporary stream and detect beat-per-minute. When detection process is done, stream will be closed.
Note: Detection process can take some time.
Warning: This function WILL NOT interfere with current playing.
BPM detection algorithm isn't 100 % accurate. Algorithm will stop when first valid BPM value is detected. If BPM value can't be detected, algorithm will try to search whole stream. If this fails, returned BPM value is 0.
Detect BPM value of specified file using "peak detection" method
// use "peak detection" method to detect BPM value int BPM = instance->DetectFileBPM("mysong.mp3", sfAutodetect, dmPeaks);
// use "peak detection" method to detect BPM value int BPM = zplay_DetectBPM("mysong.mp3", sfAutodetect, instance, dmPeaks);
Copyright (c) 2010. Zoran Cindori - All rights reserved.
Web: http://libzplay.sourceforge.net/ Email: zcindori@inet.hr |