10.2. Audio with SD Card Prof. Oum Saokosal Master of Engineering in Information Systems, South Korea 855-12-252-752

Slides:



Advertisements
Similar presentations
Shooting Video with an RCA Small Wonder EZ 205.
Advertisements

Flashcards? Lets Get Started. Question 1 Get Answer.
Royalty Free Music for Schools Do You Have the To Do a Podcast?
TITLE OF PRESENTATION Organized by: COMPANY WHOC15-[XXX]
An open source tool for creating and editing digital audio files By Tim VanSlyke.
Royalty Free Music for Schools Do You Have the To Do a Podcast?
IMPORTANT, PLEASE NOTE:- The audio song (final slide) will not play until you have copied the Handy Heroes Song Mp3 file onto your desktop and then embedded.
Cosc 5/4730 Multimedia Part 1: Audio media. PLAYING AUDIO Android android.media.
Windows 8 Windows Phone 8 Web Mobile … and WakeUpAndCode.com.
CS1203 Uploading homework to be graded. C Click Here.
Group 8: Dylan Lentini (AE), Mandy Minuti (WSE), Jean Paul Galea (TL)
Chapter 6 Jam! Implementing Audio in Android Apps.
BIRT Guide Transposing data from rows to columns
Get android development environment running. Install – Get and install JDK 5 or 6 (see link in the.
CS371m - Mobile Computing Audio.
How to make it work? Doncho Minkov Telerik Academy academy.telerik.com Technical Trainer
SET UP COMPUTER ** PLEASE BE AWARE SCREENSHOTS MAY NOT MATCH **
Getting Started with Android Programming Note: if you have already installed android development tools, please check that you have the same version as.
Android Programming. Outline Preparation Create new project Build and Run a project Debug a project Deploy on devices.
Basic Audio and Video. Audio Primary components – Audio file stored in ‘raw’ folder within ‘res’ folder ‘raw’ directory must be created while many formats.
Multimedia.
Go to our website, and click on the eMedia Catalog link To find books, either click on the advanced search (which I will.
CHAPTER 1 XNA Game Studio 4.0. Your First Project A computer game is not just a program—it is also lots of other bits and pieces that make playing the.
Uploading movies from the Web and Embedding into Power point and adding Audio Mary Clarke-Miller Integrating technology into lessons using power point.
Copyright ©: SAMSUNG & Samsung Hope for Youth. All rights reserved Tutorials Software: Building apps Suitable for: Advanced.
CS5103 Software Engineering Lecture 08 Android Development II.
1 Mobile Computing Set Up Copyright 2015 by Janson Industries.
01. Introduction to Android Prof. Oum Saokosal Master of Engineering in Information Systems, South Korea
Guide Demo Program installation SOP ePAD SW PM. Before you start Check “Guide” version is latest ( or ) * follow next page Latest version.
Step by step to adding sound files and embedding YouTube video to your FYIcode mobile site.
How to Create a Professional Video Using Windows Live Movie Maker.
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
ProsCons Android OS is open source POOR download interface Available on lots of devices Each device requires its own app market If you go to provider,
Eclipse Tutorial Barrett Summer Scholars 2011 Sustainable Engineering: Learning to Engineer Truly Green Products.
Presented By: Muhammad Tariq Software Engineer Android Training course.
Presented by: Introduction to iTunes U BCC on iTunes U.
To insert an Audio file on all slides click Insert click the Audio drop down arrow and select the type of audio you want. An audio file placed on the.
● Click on Start Button ● Go to Programs and click on Photo Story 3.
Android Development Environment Environment/tools Windows Eclipse IDE for Java Developers (v3.5 Galileo) Java Platform (JDK 6 Update 18) Android.
What are Buttons? Buttons can be clipart, pictures or animated gifs When you click on buttons they can send you to another slide Buttons can be used to.
First Venture into the Android World Chapter 1 Part 2.
How to Make a Voki. Vocabulary to Know Widget = Widgets A "widget" is an application that ic created by/on another website and put onto a personal website.
Ch 17 Video Microsoft Movie Maker (Part 2). Next  Click above to play.
Uploading letters of recommendation onto Naviance.
THE 3M CLOUD LIBRARY AND YOUR KINDLE FIRE How to download 3M books to your Kindle Fire/HD Made possible by a grant from the Samuel P. Hunt foundation.
Guide to Completing Your Project Rabecka Collins.
CS378 - Mobile Computing Audio.
IST101 File management Prof. Andrea Lynch Lab - Windows.
By Kanjimana B. Nawezi.  Installing iTunes  Setting up Your iPod  Importing songs from CDs into iTunes  Downloading songs from a website into iTunes.
Java On the ENB 116 Computers The JDK is now available on the ENB 116 computers. You can use a classroom computer rather than your own laptop or CIRCE.
Building the CarryDrop simulation in Eclipse Creating a new project with existing code from John Murphy’s RePast tutorial.
Uploading movies from the Web and Embedding into Power point and adding Audio Mary Clarke-Miller Integrating technology into lessons using power point.
Geo II/3 ch 4 Edited 10/14/05 1 Prior to going outside with your GPS rover to collect data for your school map, you must load a data dictionary onto your.
Product Introductions SMART-HDL Z-Audio. Features  SD card music playing  Internal FM Radio  External audio input  FTP music playing.
Backup DVD to Hard Drive From: -
Lecture 7: Media Player Topics: Media Player, Async prepare Date: Mar 3, 2016.
Recording Your Script and Creating Your Podcast !!You are not finished until you have completed all steps on all of the slides up to and including Slide.
 Open your browser and navigate to
Office Mix with PowerPoint Jered Martinez. Director of Professional Jered Martinez.
© ABB Entrelec AC 500 Page SD Memory Card Insert image here The Application of the SD Memory Card Advant Controller 500.
Video Creation, Editing & Sharing Conor Sullivan & Charlotte Holland Steps in creating your Video Clip.
Download framaroot app BY : framarootapk.netframarootapk.net.
Test slide upload.
1-877(242)-3672 How to Use a Password Reset Disk on Windows 10?
Adding Music to Your Google Slides Presentation
Enter your text here Enter your text here.
Where does Netflix save downloads on my device? iOS Android PC Mac
C140 Navigation System Upgrade Manual
How to type Chinese simplified character in your computer?
Presentation transcript:

10.2. Audio with SD Card Prof. Oum Saokosal Master of Engineering in Information Systems, South Korea

Upload to SD Card of the Emulator Normally when you run the app on an Android device, you will need to play a song from the sdcard of the device. To place the song to the sdcard, simply copy it and paste. However, to test it on the Emulator, you need to push the file to the the Emulator. See how-to in the next slide.

I. Create size for sdcard: 1.Go to AVD Manager (Window -> AVD Manager) 2.Click on your avd (e.g.avd.2.3.3) -> Edit 3.Enter a size: 1000 for the SD Card 4.Click Enter AVD to finish.

II. Upload a file to SD Card: 1.Go to DDMS -> File Explorer 2.In case you can't see the file, please run the Emulator first. 3.Browse to mnt/sdcard 4.Click on the button call "Push a file onto the device" to upload.

Play a Song from SD Card To play an embedded song: MediaPlayer mp; mp = MediaPlayer.create(this, R.raw.song1)); To play a song from SD Card: MediaPlayer mp; mp = MediaPlayer.create(this, Uri.parse("/sdcard/More Than I Can Say.mp3"));

To Play with setDataSource() method: MediaPlayer mp; mp = new MediaPlayer(); try{ mp.reset(); mp.setDataSource("/sdcard/I love you.mp3"); mp.prepare(); } catch (IllegalArgumentException e) { e.printStackTrace(); } catch (IllegalStateException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } mp.start();

Go on to the next slide