Record sound to flash memory

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!

0
source share
1 answer

The class you are looking for is the microphone class. Keep in mind that video and microphone require a server for recording. The two most popular compatible servers are Adobe Flash Media Server and the open source Red 5 server.

+3
source

All Articles