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

📄 mediadescriptor.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     MediaDescriptor.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.eudico.server.corpora.clomimpl.abstr;/** * DOCUMENT ME! * $Id: MediaDescriptor.java,v 1.3 2005/01/24 08:22:20 hasloe Exp $ * @author $Author: hasloe $ * @version $Revision: 1.3 $ */public class MediaDescriptor implements Cloneable {    /** Holds value of property DOCUMENT ME! */    public final static String MPG_MIME_TYPE = "video/mpeg";    /** Holds value of property DOCUMENT ME! */    public final static String WAV_MIME_TYPE = "audio/x-wav";    /** Holds value of constant unknown MIME type */    public final static String UNKNOWN_MIME_TYPE = "unknown";    /** a constant for QuickTime file types */    public static final String QUICKTIME_MIME_TYPE = "video/quicktime";    /** a constant for any video type */    public static final String GENERIC_VIDEO_TYPE = "video/*";    /** a constant for any audio type */    public static final String GENERIC_AUDIO_TYPE = "audio/*";    /** Holds value of property DOCUMENT ME! */    public String mediaURL;    /** Holds value of property DOCUMENT ME! */    public String mimeType;    /** Holds value of property DOCUMENT ME! */    public long timeOrigin;    /** Holds value of property DOCUMENT ME! */    public String extractedFrom;    /** Holds value of property DOCUMENT ME! */    public boolean isValid;    /**     * Creates a new MediaDescriptor instance     *     * @param theMediaURL DOCUMENT ME!     * @param theMimeType DOCUMENT ME!     */    public MediaDescriptor(String theMediaURL, String theMimeType) {        mediaURL = theMediaURL;        if (theMimeType != null) {            mimeType = theMimeType;        } else {            mimeType = UNKNOWN_MIME_TYPE;        }        isValid = true;    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     */    public String toString() {        return mediaURL + " " + mimeType + " " + timeOrigin + " " +        extractedFrom;    }    /**     * Returns a deep copy of this MediaDescriptor.     *     * @return a deep copy of this MediaDescriptor     */    public Object clone() {        try {            MediaDescriptor cloneMD = (MediaDescriptor) super.clone();            if (mediaURL != null) {                cloneMD.mediaURL = new String(mediaURL);            }            if (mimeType != null) {                cloneMD.mimeType = new String(mimeType);            }            if (extractedFrom != null) {                cloneMD.extractedFrom = new String(extractedFrom);            }            cloneMD.timeOrigin = timeOrigin;            cloneMD.isValid = isValid;            return cloneMD;        } catch (CloneNotSupportedException cnse) {            // should not happen            // throw an exception?            return null;        }    }    /**     * Overrides <code>Object</code>'s equals method by checking all     * fields of the other object to be equal to all fields in this     * object.     *     * @param obj the reference object with which to compare     * @return true if this object is the same as the obj argument; false otherwise     */    public boolean equals(Object obj) {        if (obj == null) {            // null is never equal            return false;        }        if (obj == this) {            // same object reference             return true;        }        if (!(obj instanceof MediaDescriptor)) {            // it should be a MediaDescriptor object            return false;        }        // check the fields        MediaDescriptor other = (MediaDescriptor) obj;        if (((this.mediaURL != null) && (other.mediaURL == null)) ||                ((this.mediaURL == null) && (other.mediaURL != null)) ||                ((this.mediaURL != null) && (other.mediaURL != null) &&                !this.mediaURL.equals(other.mediaURL))) {            return false;        }        if (((this.mimeType != null) && (other.mimeType == null)) ||                ((this.mimeType == null) && (other.mimeType != null)) ||                ((this.mimeType != null) && (other.mimeType != null) &&                !this.mimeType.equals(other.mimeType))) {            return false;        }        if (((this.extractedFrom != null) && (other.extractedFrom == null)) ||                ((this.extractedFrom == null) && (other.extractedFrom != null)) ||                ((this.extractedFrom != null) && (other.extractedFrom != null) &&                !this.extractedFrom.equals(other.extractedFrom))) {            return false;        }        if (this.timeOrigin != other.timeOrigin) {            return false;        }        if (this.isValid != other.isValid) {            return false;        }        return true;    }}

⌨️ 快捷键说明

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