All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.restcomm.connect.commons.util.WavUtils Maven / Gradle / Ivy

There is a newer version: 8.4.0-227
Show newest version
/*
 * TeleStax, Open Source Cloud Communications
 * Copyright 2011-2014, Telestax Inc and individual contributors
 * by the @authors tag.
 *
 * This program is free software: you can redistribute it and/or modify
 * under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see 
 *
 */
package org.restcomm.connect.commons.util;

import java.io.EOFException;
import java.io.File;
import java.io.IOException;
import java.net.URI;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.UnsupportedAudioFileException;

import org.restcomm.connect.commons.annotations.concurrency.ThreadSafe;

/**
 * @author [email protected] (Thomas Quintana)
 */
@ThreadSafe
public final class WavUtils {
    private WavUtils() {
        super();
    }

    public static double getAudioDuration(final URI wavFile) throws UnsupportedAudioFileException, IOException {
        return getAudioDuration(new File(wavFile));
    }

    public static double getAudioDuration(final File wavFile) throws UnsupportedAudioFileException, IOException {
        AudioInputStream audio = null;
        try {
            if (wavFile != null && wavFile.exists()) {
                audio = AudioSystem.getAudioInputStream(wavFile);
                final AudioFormat format = audio.getFormat();
                return wavFile.length() / format.getSampleRate() / (format.getSampleSizeInBits() / 8.0) / format.getChannels();
            }
            return 0;
        } catch (UnsupportedAudioFileException exception) {
            // Return calculation based on MMS defaults
            int sampleRate = 8000;
            int sampleSize = 16;
            int channels = 1;
            return wavFile.length() / (sampleRate / 8.0) / sampleSize / channels;
        } catch (EOFException e) {
            return 0;
        }
        finally {
            if (audio != null) {
                audio.close();
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy