虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

ET-AUDIO

  • Voice dictionary for mobile - search and play wav files (voice dictionary could be obtained from sta

    Voice dictionary for mobile - search and play wav files (voice dictionary could be obtained from stardict web site) For Netbians project with Java MIDP or as example how to use subject (Java MIDP audio). Tested on Nokia 5310

    标签: dictionary obtained mobile search

    上传时间: 2014-01-06

    上传用户:851197153

  • Java email * JMail.java * JMail permet de * 1) Envoyer des emails * 2) Envoyer des emails

    Java email * JMail.java * JMail permet de * 1) Envoyer des emails * 2) Envoyer des emails avec de fausses adresses d envoyeurs * 3) É crire des emails en format HTML * 4) Gérer les multiples contacts que vous avez * 5) Attacher des fichiers illimités, de nombre et de taille illimités * 6) Se connecter à un serveur SMTP sécure (SSL, TLS) * 7) Attacher des URL et leur contenu * 8) Attacher des URL et leur contenu DANS le message * 9) Je travaille sur d autres possibilités

    标签: Envoyer emails JMail des

    上传时间: 2014-12-07

    上传用户:youlongjian0

  • PURPOSE OF THE PROJECT: This Application would facilitate the huge process of managing the Ad detai

    PURPOSE OF THE PROJECT: This Application would facilitate the huge process of managing the Ad details along with the Preview of the Ad (Audio storage and retrieval). The Application has the following functions User Validation. Viewing Advertisement details. Registration of New User. Reviewing Advertisement details. Saving data to the Database generating Unique records.

    标签: Application facilitate the managing

    上传时间: 2017-09-01

    上传用户:fxf126@126.com

  • MTK 基带的驱动配置

    MTK 基带的驱动配置,包括FLASH分区,文件系统的划分,CAMERA,LCD,CHARGER,AUDIO,FM,

    标签: MTK 基带 驱动

    上传时间: 2017-09-11

    上传用户:zwei41

  • The STi7141 is a highly integrated SoC (systemon- chip) designed to meet the demanding needs of th

    The STi7141 is a highly integrated SoC (systemon- chip) designed to meet the demanding needs of the interactive cable set top box market place. The STi7141 integrates all the major system functions into a single device, and provides world leading, multi-layer, advanced security technologies to protect valuable video and audio assets.

    标签: integrated demanding designed systemon

    上传时间: 2014-01-14

    上传用户:894898248

  • Carrier Board for Gumstix Verdex Pro. Has 2 - 30A motor drivers for robotic loco motion PIC micro

    Carrier Board for Gumstix Verdex Pro. Has 2 - 30A motor drivers for robotic loco motion PIC micro handles motion control. USB host signals. USB console connector AC97 audio CODEC Exapnsion headers for PIC micro.

    标签: for Carrier Gumstix drivers

    上传时间: 2014-05-29

    上传用户:Yukiseop

  • What you always wanted to know about networking but were afraid to ask! * How networks and the In

    What you always wanted to know about networking but were afraid to ask! * How networks and the Internet work * How to build coherent, cost-effective network infrastructures * How to design networks for maximum reliability and availability * What you need to know about data center and application networking * How to secure networks against today?s threats and attacks * How to take advantage of the latest mobility technologies * How virtualizing networks can help businesses leverage their network investments even further * How to combine messaging, calendaring, telephony, audio, video, and web conferencing into a unified communications architecture

    标签: networking networks always afraid

    上传时间: 2013-12-25

    上传用户:fandeshun

  • stm3210e_eval

    Description The STM3210E-EVAL evaluation board is a complete development platform for STMicroelectronic's ARM Cortex-M3 core-based STM32F103ZET6 or STM32F103ZGT6 microcontroller. The range of hardware features on the board help you to evaluate all peripherals (LCD, SPI Flash, USART, IrDA, USB, audio, CAN bus, smartcard, MicroSD Card, NOR Flash, NAND Flash, SRAM, temperature sensor, audio DAC and motor control) and develop your own applications.

    标签: stm3210e_eval

    上传时间: 2016-03-27

    上传用户:guozhenhui1st

  • tas3204

    The TAS3204 is a highly-integrated audio system-on-chip (SOC) consisting of a fully-programmable, 48-bit digital audio processor, a 3:1 stereo analog input MUX, four ADCs, four DACs, and other analog functionality. The TAS3204 is programmable with the graphical PurePath Studio™ suite of DSP code development software. PurePath Studio is a highly intuitive, drag-and-drop environment that minimizes software development effort while allowing the end user to utilize the power and flexibility of the TAS3204’s digital audio processing core. TAS3204 processing capability includes speaker equalization and crossover, volume/bass/treble control, signal mixing/MUXing/splitting, delay compensation, dynamic range compression, and many other basic audio functions. Audio functions such as matrix decoding, stereo widening, surround sound virtualization and psychoacoustic bass boost are also available with either third-party or TI royalty-free algorithms. The TAS3204 contains a custom-designed, fully-programmable 135-MHz, 48-bit digital audio processor. A 76-bit accumulator ensures that the high precision necessary for quality digital audio is maintained during arithmetic operations. Four differential 102 dB DNR ADCs and four differential 105 dB DNR DACs ensure that high quality audio is maintained through the whole signal chain as well as increasing robustness against noise sources such as TDMA interference. The TAS3204 is composed of eight functional blocks: Clocking System Digital Audio Interface Analog Audio Interface Power supply Clocks, digital PLL I2C control interface 8051 MCUcontroller Audio DSP – digital audio processing 特性 Digital Audio Processor Fully Programmable With the Graphical, Drag-and-Drop PurePath Studio™ Software Development Environment 135-MHz Operation 48-Bit Data Path With 76-Bit Accumulator Hardware Single-Cycle Multiplier (28 × 48)

    标签: 3204 tas

    上传时间: 2016-05-06

    上传用户:fagong

  • SpringMVC设计

       springMVC有三个映射器,如果不定义映射Mapping,那么就会使默认: l   <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> 也就是说:上面这个定义和不定义都是一样的。 不定义: <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean> 直接使用:hello.do来访问。 <!-- 简单的url映射处理器 --> l   <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">                    <property name="mappings">                             <props>          那么上面的这个映射配置:表示多个*.do文件可以访问多个Controller或者一个Controller。          前提是:都必须依赖:          <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean>          <!-- /WEB-INF/jsp/index.jsp -->          <bean class="org.springframework.web.servl                                      <prop key="/hello1.do">testController</prop>                                      <prop key="/a.do">testController</prop>                             </props>                    </property> </bean> et.view.InternalResourceViewResolver">                    <property name="prefix" value="/WEB-INF/jsp/"></property>                    <property name="suffix" value=".jsp"></property>          </bean>

    标签: SpringMVC

    上传时间: 2016-06-03

    上传用户:hthunder