35 | | ^(Describe your design here.)^ |
| 35 | * Implementation should follow the class diagram below: |
| 36 | [[Image(source:/branches/private/sveto/sophie2-platform/modules/org.sophie2.main.media.fobs/doc/AUDIO_RECORDING_R0.jpg)]] |
| 37 | * An example of audio capture with JMF can be seen at http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/guide/JMFCapturing.html (Example 5-4) |
| 38 | * To record data successfully on different platforms the capture device should be set to "javasound://" like this: ''Manager.createProcessor(new MediaLocator("javasound://"));''. |
| 39 | * The dialog for recording will have two buttons - record and stop. |
| 40 | * When the recording is stopped the audio resource is inserted into the current page. |
| 41 | * The record has a time limit which is one hour by default, if this limit is exceeded then the recording stops and the media is inserted into the book as if requestRecord with isRecording set to false is called (recording stopped). |
| 42 | * To create a audio resource a temporary file will be created which is wrapped in a BinDataSource object. |
| 43 | * A JUnit test case is created that will test registration/unregistration as well as capture for a short period. [3185] |
| 44 | * The following classes will be created: |
| 45 | * * StateHelperEntry (The state helper encapsulates the Processor which actually does the capture) |
| 46 | * * CaptureParameters |
| 47 | * * AudioCaptureDialog |
| 48 | * * AudioCaptureDialogInput |
| 49 | * * InsertAudioRecordItem |
| 50 | * The following classes will be changed: |
| 51 | * * MediaEngine |
| 52 | * * JMFEngine |
| 53 | * * MediaLogic |
| 54 | * * MasterAudioEngine |
| 55 | * * MasterVideoEngine |
| 56 | * * MainFuncMediaModule |
| 57 | * * SkinDefIds |