⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timeformatter.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     TimeFormatter.java * Project:  MPI Linguistic Application * Date:     02 May 2007 * * Copyright (C) 2001-2007  Max Planck Institute for Psycholinguistics * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package mpi.util;import java.text.DecimalFormat;import java.text.DecimalFormatSymbols;import java.util.Locale;/** * A class with some viewer tool methods */public class TimeFormatter {    private static String hourString;    private static String minuteString;    private static String secondString;    private static String milliString;    /** a two-digit formatter */    private static final DecimalFormat twoDigits = new DecimalFormat("00");    /** a three-digit formatter */    private static final DecimalFormat threeDigits = new DecimalFormat("000");    // use the US Locale to make sure a '.' is used and not ','    /** a n-digit.three-digit formatter */    private static final DecimalFormat secondsMillis = new DecimalFormat("#0.000",            new DecimalFormatSymbols(Locale.US));    /**     * Converts a time definition in the format hh:mm:ss.sss into a long that     * contains the time in milli seconds.     *     * @param timeString the string that contains the time in the format     *        hh:mm:ss.sss     *     * @return the time in seconds, -1.0 if the time string has an illegal     *         format     */    public static long toMilliSeconds(String timeString) {        try {            String hourString = new String("0.0");            String minuteString = new String("0.0");            String secondString = new String("0.0");            int mark1 = timeString.indexOf(':', 0);            if (mark1 == -1) { // no :, so interpret string as sss.ss or ms                if (timeString.indexOf('.') < 0) {                    // no ':' nor '.', so interpret as bare milliseconds??                    return Long.parseLong(timeString);                } else {                    // no :, so interpret string as sss.ss                    secondString = timeString;                }            } else {                int mark2 = timeString.indexOf(':', mark1 + 1);                if (mark2 == -1) { // only one :, so interpret string as mm:ss.sss                    minuteString = timeString.substring(0, mark1);                    secondString = timeString.substring(mark1 + 1,                            timeString.length());                } else { // two :, so interpret string as hh:mm:ss.sss                    hourString = timeString.substring(0, mark1);                    minuteString = timeString.substring(mark1 + 1, mark2);                    secondString = timeString.substring(mark2 + 1,                            timeString.length());                }            }            double hours = Double.valueOf(hourString).doubleValue();            double minutes = Double.valueOf(minuteString).doubleValue();            double seconds = Double.valueOf(secondString).doubleValue();            return (long) (1000 * ((hours * 3600.0) + (minutes * 60.0) +            seconds));        } catch (Exception e) { // the timeString was not parseable            return -1;        }    }    /**     * Converts a time in seconds to the following string representation:     * hh:mm:ss.sss     *     * @param time a long containing the time in milli seconds     *     * @return the string representation of the time     */    public static String toString(long time) {        long hours = time / 3600000;        hourString = twoDigits.format(hours);        long minutes = (time - (3600000 * hours)) / 60000;        minuteString = twoDigits.format(minutes);        long seconds = (time - (3600000 * hours) - (60000 * minutes)) / 1000;        secondString = twoDigits.format(seconds);        long millis = time - (3600000 * hours) - (60000 * minutes) -            (1000 * seconds);        milliString = threeDigits.format(millis);        return hourString + ":" + minuteString + ":" + secondString + "." +        milliString;    }    /**     * Converts a time in ms to a ss.mmm formatted String     *     * @param time the time value to convert     *     * @return a String in the ss.mmm format     */    public static String toSSMSString(long time) {        double dd = time / 1000.0;        return secondsMillis.format(dd);    }    /**     * Timecode has the format hh:mm:ss:ff. PAL has 25 frames per second.     *     * @param time the time to convert     * @return a PAL timecode string     */    public static String toTimecodePAL(long time) {        long hours = time / 3600000;        hourString = twoDigits.format(hours);        long minutes = (time - (3600000 * hours)) / 60000;        minuteString = twoDigits.format(minutes);        long seconds = (time - (3600000 * hours) - (60000 * minutes)) / 1000;        secondString = twoDigits.format(seconds);        long frames = (time - (3600000 * hours) - (60000 * minutes) -            (1000 * seconds)) / 40;        milliString = twoDigits.format(frames);        return hourString + ":" + minuteString + ":" + secondString + ":" +        milliString;    }    /**     * Timecode has the format hh:mm:ss:ff. NTSC has approx. 29.97 frames per second.     * The 'standard' SMPTE drop frames mechanism is used for frame number calculation,     * i.e. drop the first two frames from every minute except every tenth minute.     *     * @param time the time to convert     * @return a NTSC timecode string     */    public static String toTimecodeNTSC(long time) {        // this is already off by a frame in the Premiere testmovie        int frameNumber = (int) ((time / 1000f) * 29.97);        //int frameNumber = (int)time;        // every block of ten minutes hasan exact number of frames, 17982. Calculate the         // number of 10-minute-blocks, can also be used for calculation of hours + minutes        int numTenMin = frameNumber / 17982;        int hours = numTenMin / 6;        numTenMin = numTenMin - (6 * hours);        // the rest is used to calculate minutes (less than 10), seconds and frames        // calculate number of complete minutes from remaining frames        int numMin = frameNumber % 17982;        // complete minutes        int min = numMin / 1800;        // remainder for calc of seconds        int rest = numMin - (min * 1800);        int sec = rest / 30;        // remainig frames        int fr = rest - (sec * 30);        // adjust, add 2 frames for each minute         fr += (min * 2);        // if frames > 29 add extra second and eventually minute        if (fr > 29) {            fr -= 30;            sec += 1;            if (sec > 59) {                sec = 0;                min += 1;                fr += 2;            }        }        // convert to string        return twoDigits.format(hours) + ":" +        twoDigits.format((numTenMin * 10) + min) + ":" + twoDigits.format(sec) +        ":" + twoDigits.format(fr);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -