In Flash, I know that there is a flash.media.Video class. This class can capture video, here is its documentation:
The video class is displayed in real time or recorded video in the application without embedding the video in your SWF file. This class creates a video object in the Adobe Flash or Adobe Flex interface, which plays any of the following types of video: recorded FLV files stored on the server either locally, or live video captured from a user computer. A video object is a display object on the list applicationβs display and represents the visual space in which the video works for the user. Interface
What is especially important is that I can record video in real time and send it to another application. My questions ... Is there the same class for audio recordings? I would like to record sound from a custom microphone. From what I see, flash.media.Sound does not allow me to support a local audio stream (for example, audio recorded from a custom microphone). Thank!
source
share