资源简介

125分50秒---162.81M---LabView01---第10章数据的显示.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView01-第10章数据的显示.wmv 92分2秒---143.46M---LabView02---第11章文件的IO及保存.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView02-第11章文件的IO及保存.wmv 37分22秒---58.09M---LabView03---第12章LabVIEW的通信.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView03-第12章LabVIEW的通信.wmv 9分58秒---21.2M---LabView04---第13章LabVIEW与其它软件的连接.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView04-第13章LabVIEW与其它软件的连接.wmv 4分45秒---9.99M---LabView05---第14章LabVIEW中子VI的设置及调用.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView05-第14章LabVIEW中子VI的设置及调用.wmv 34分30秒---61.03M---LabView06---第15章其它高级技巧.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView06-第15章其它高级技巧.wmv 9分41秒---11.37M---LabView07---第2章第一个LabVIEW例子.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView07-第2章第一个LabVIEW例子.wmv 86分58秒---140.25M---LabView08---第3章基本元素.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView08-第3章基本元素.wmv 76分48秒---143.72M---LabView09---第4章程序结构.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView09-第4章程序结构.wmv 5分46秒---14.67M---LabView10---第5章数据采集.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView10-第5章数据采集.wmv 12分50秒---18.35M---LabView11---第6章数据传输及电脑接口.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView11-第6章数据传输及电脑接口.wmv 59分57秒---87.83M---LabView12---第7章数据的分析及处理.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView12-第7章数据的分析及处理.wmv 42分4秒---61.02M---LabView13---第8章LabVIEW的信号调理.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView13-第8章LabVIEW的信号调理.wmv 132分19秒---178.86M---LabView14---第9章分析处理中数学计算.wmv---F:/Resource/video/硬件/AltiumDesigner/LabView14-第9章分析处理中数学计算.wmv

资源截图

代码片段和文件信息

/*
 * JAVE - A Java Audio/Video Encoder (based on FFMPEG)
 * 
 * Copyright (C) 2008-2009 Carlo Pelliccia (www.sauronsoftware.it)
 * 
 * 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 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not see .
 */
package it.sauronsoftware.jave;

import java.io.Serializable;

/**
 * Attributes controlling the audio encoding process.
 * 
 * @author Carlo Pelliccia
 */
public class AudioAttributes implements Serializable {

private static final long serialVersionUID = 1L;

/**
 * This value can be setted in the codec field to perform a direct stream
 * copy without re-encoding of the audio stream.
 */
public static final String DIRECT_STREAM_COPY = “copy“;

/**
 * The codec name for the encoding process. If null or not specified the
 * encoder will perform a direct stream copy.
 */
private String codec = null;

/**
 * The bitrate value for the encoding process. If null or not specified a
 * default value will be picked.
 */
private Integer bitRate = null;

/**
 * The samplingRate value for the encoding process. If null or not specified
 * a default value will be picked.
 */
private Integer samplingRate = null;

/**
 * The channels value (1=mono 2=stereo) for the encoding process. If null
 * or not specified a default value will be picked.
 */
private Integer channels = null;

/**
 * The volume value for the encoding process. If null or not specified a
 * default value will be picked. If 256 no volume change will be performed.
 */
private Integer volume = null;

/**
 * Returns the codec name for the encoding process.
 * 
 * @return The codec name for the encoding process.
 */
String getCodec() {
return codec;
}

/**
 * Sets the codec name for the encoding process. If null or not specified
 * the encoder will perform a direct stream copy.
 * 
 * Be sure the supplied codec name is in the list returned by
 * {@link Encoder#getAudioEncoders()}.
 * 
 * A special value can be picked from
 * {@link AudioAttributes#DIRECT_STREAM_COPY}.
 * 
 * @param codec
 *            The codec name for the encoding process.
 */
public void setCodec(String codec) {
this.codec = codec;
}

/**
 * Returns the bitrate value for the encoding process.
 * 
 * @return The bitrate value for the encoding process.
 */
Integer getBitRate() {
return bitRate;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-10-06 15:02  ReadVideo\
     文件         551  2014-10-06 14:23  ReadVideo\.classpath
     文件         385  2014-09-17 19:18  ReadVideo\.project
     目录           0  2014-10-06 15:01  ReadVideo\.settings\
     文件         598  2014-09-17 19:18  ReadVideo\.settings\org.eclipse.jdt.core.prefs
     目录           0  2014-10-06 15:01  ReadVideo\bin\
     目录           0  2014-10-06 15:01  ReadVideo\bin\com\
     目录           0  2014-10-06 15:01  ReadVideo\bin\com\readVideo\
     目录           0  2014-10-06 15:01  ReadVideo\bin\com\readVideo\test\
     文件        4284  2014-10-06 14:56  ReadVideo\bin\com\readVideo\test\ReadVideoMessages.class
     文件        1876  2014-10-06 13:17  ReadVideo\bin\com\readVideo\test\VideoName.class
     目录           0  2014-10-06 15:02  ReadVideo\jave源代码和jar包\
     目录           0  2014-10-06 15:01  ReadVideo\jave源代码和jar包\jave-1.0.2-src\
     目录           0  2014-10-06 15:01  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\
     目录           0  2014-10-06 15:01  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\
     目录           0  2014-10-06 15:01  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\
     文件        5139  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\AudioAttributes.java
     文件        3460  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\AudioInfo.java
     文件        3934  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\DefaultFFMPEGLocator.java
     文件       29495  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\Encoder.java
     文件        1262  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\EncoderException.java
     文件        1804  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\EncoderProgressListener.java
     文件        5546  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\EncodingAttributes.java
     文件        4517  2009-04-15 15:52  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\FFMPEGExecutor.java
     文件        1614  2009-04-15 15:53  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\FFMPEGLocator.java
     文件        1182  2009-04-15 15:53  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\InputFormatException.java
     文件        3405  2009-04-15 15:53  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\MultimediaInfo.java
     文件        1374  2009-04-15 15:53  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\ProcessKiller.java
     文件        2039  2009-04-15 15:53  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\RBufferedReader.java
     文件        4721  2009-04-15 15:53  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\VideoAttributes.java
     文件        3136  2009-04-15 15:53  ReadVideo\jave源代码和jar包\jave-1.0.2-src\it\sauronsoftware\jave\VideoInfo.java
............此处省略12个文件信息

评论

共有 条评论