Package org.jaudiotagger.audio

Examples of org.jaudiotagger.audio.AudioFileFilter


     *
     * @param dir
     */
    private void scanSingleDir(final File dir) {

        final File[] audioFiles = dir.listFiles(new AudioFileFilter(false));
        if (audioFiles.length > 0) {
            for (File audioFile : audioFiles) {
                count++;
                try {
                    AudioFileIO.read(audioFile);
View Full Code Here

TOP

Related Classes of org.jaudiotagger.audio.AudioFileFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.