Media Library Sisoft Technologies Pvt Ltd

Slides:



Advertisements
Similar presentations
Video Xiyang Song CGDD 4903.
Advertisements

Product Presentation Creator NXT 3. Creator NXT The most comprehensive digital media suite with: State of the art data disc burning supports CDs, DVDs,
Making a sound When we fire a bullet, we will play a sound The AVFoundation framework enables us to add sounds to our app.
I. Understanding collections, projects, and movies.
IV.Creating & Editing a Video/Movie. Editing Techniques To open a project On the File menu, click Open Project. In the File name box, locate the saved.
Flip for the Most Innovative Technology Project of the Year Fran Mauney.
Before you start, Let’s check your hardware If you want to record audio and video, you’ll need: Microphone Webcam Office Mix.
Audio Yu Feng CGDD Review 1. Set up 2. IOS sound – Core Audio – Short Sound – Long Sound – Control Sound – Background Sound 3.Cocos2d sound.
I. Getting Started with the Interface Microsoft ® Windows ® Movie Maker.
Introduction to the Media Kit Matt Wronkiewicz Be Users Group at UIUC.
The Complete Training/Knowledge Guide. Session 8: Camera and Multimedia  Taking Pictures with Camera  Recording Videos with Camcorder  Adjusting the.
Windows Movie Maker. Definition You can use Windows Movie Maker to capture audio and video to your computer from a video camera, Web camera, or other.
 This is your iPod  This is your iPod with a Belkin Audio Recorder.
Producing and editing audio and video files. First of all - Q: What do you want to use sound and video for? Aim for the session: This workshop will introduce.
Živana Komlenov Faculty of Sciences, University of Novi Sad Uglješa Marjanović, Igor Žunić Faculty of Technical Sciences, University of Novi Sad The Importance.
- LEARNSAUCE.COMLEARNSAUCE.COM. - LEARNSAUCE.COMLEARNSAUCE.COM What you will learn ? Live Android app development All Things location.
Animations & Multimedia LESSON 9 #2.09 USING ANIMATION AND MULTIMEDIA.
Download Free VLC media Player
Know The Easy Way To Use Netflix On Your Apple Tv. For more details Visit our website
Now To Use Fire Tv On Second Screen. For More Details Visit Our Website
HTML Structure & syntax
  Computer Fundamentals Training   Windows 8 Intermediate.
Advanced HTML Tags:.
Multi camera.
Location And Maps Sisoft Technologies Pvt Ltd
Introduction to iOS App Development Environment
Advocacy Project Make a message to send to our MEP
Web Services Sisoft Technologies Pvt Ltd
Drawing And Animations
IOS Design Patterns Sisoft Technologies Pvt Ltd
Office Mix Before you start, Let’s check your hardware
How to Use Windows Movie Maker for Beginners
The world’s most advanced mobile platform
iOS UI Components Sisoft Technologies Pvt Ltd
Notification Sisoft Technologies Pvt Ltd
iOS - First Application Anatomy
Registering And Joining Developer Program
Chapter 4: HTML5 Media - <video> & <audio>
Learn HTML Basics Lesson No : 10
Jacob Cratsa Advisor: Dr. C. David Shaffer Westminster College
To ask a question, enter a message in the Q&A box
Enhancing Your Presentation with Multimedia
Lync Meetings Join a Lync Meeting Lync 2013 Quick Reference
Lync Meetings Join a Lync meeting Schedule a Lync meeting
Lync Meetings Join a Lync Meeting Lync 2013 Quick Reference
3.01 Explore multimedia systems, elements and presentations.
Web Design and Development
View-Controller Family
Guide to Photostory 3.
This presentation has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational purposes.
Tutorial 7 Working with Multimedia
Office Mix Before you start, Let’s check your hardware
How to Connect to COMAND
Using Windows Live Movie Maker
Communication Disability
This presentation has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational purposes.
Working with Multimedia
Northwest School Division #203
Lync Meetings Join a Lync Meeting Lync 2013 Quick Reference
iMovie basics What is the purpose of iMovie?
Photostory 3.
EEC-492/693/793 iPhone Application Development
Chapter 13 Adding Slide Transitions
Using Animation and Multimedia
WavPad Audio Editor Tutorial.
Office Mix Before you start, Let’s check your hardware
Android Development Tools
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
Introducing MagicInfo 6
Presentation transcript:

Media Library Sisoft Technologies Pvt Ltd SRC E7, Shipra Riviera Bazar, Gyan Khand-3, Indirapuram, Ghaziabad Website: www.sisoft.in Email:info@sisoft.in Phone: +91-9999-283-283

Some Implementation

Methods Of UIImagePickerDelegate

Checking For Source

Recording And Playing Audio iOS provides various framework to let you work with sound in your app such as System Sound Services,AVFoundation Framework, Media Player Framework,OpenAL etc.. One of the frameworks that you can use to play and record audio file is the AV Foundation Framework The AVFoundation provides easy ways to deal with audio

Adding Framework

Used classes of AVFoundation AVAudioPlayer think of it as an audio player for playing sound files By using the player, you can play sounds of any duration and in any audio format available in iOS AVAudioRecorder an audio recorder for recording audio

Audio Session An audio session is the intermediary between your application and iOS for configuring audio behavior Initializing your audio session AVAudioSession *session = [AVAudioSession sharedInstance]; Activating and Deactivating your audio session [session setActive:YES error:nil]; [session setActive:NO error:nil];

Audio Session Category An audio session category is a key that identifies a set of audio behaviors for your application By setting a category, you indicate your audio intentions to the system For example [session setCategory: AVAudioSessionCategoryPlayAndRecord error:nil]; It may be only play or record etc..

Delegate Methods AVAudioRecorderDelegate Methods AVAudioPlayerDelegate audioRecorderDidFinishRecording audioRecorderEncodeErrorDidOccur AVAudioPlayerDelegate audioPlayerDidFinishPlaying audioPlayerEncodeErrorDidOccur For example on Recording and Playing audio Visit link: http://www.appcoda.com/ios-avfoundation-framework-tutorial/

Recording And Playing Video For recording video we will use UIImagePicker controller to which we have used in caputering photo/choosing photo Defining source typeCamer,which open camera by default To capture video we define media type to kUTTypeMovie picker.mediaTypes = [[NSArray alloc] initWithObjects: (NSString *) kUTTypeMovie, nil];

Adding Media Frameworks MediaPlayer framework brings us two main classes to display videos or movies MPMoviePlayerController playback occurs in a view owned by the movie player MPMoviePlayerViewControllerclass is designed to present a simple view controller for displaying full-screen movies

MPMoviePlayerController Configure video view for video playback is simply allocating MPMPC and defining its size Sending play message to Play Using MPMoviePlayerController notification i.e MPMPPlaybackDidFinishNotification to close media player view when playback finished For example on video recording and plying visit link:http://www.appcoda.com/video-recording-playback-ios-programming/