-
Notifications
You must be signed in to change notification settings - Fork 0
Webcam Audio Recording
Martin Konopka edited this page Apr 23, 2018
·
4 revisions
Code: WCA
Webcam audio recording captures ambient noises, it requires:
- Webcam with microphone or a standalone microphone connected to the PC.
- FFmpeg binary which is included in the UXC app.
- App configuration - section
[Device.Streamers.Audio]-
DeviceName=Microphone Array (Creative Senz3D VF0780)- name of the recording device used by the FFmpeg. -
AutoSelectDevice=TrueorFalse- if another video recording device should be used, if the device withDeviceNameis not found. Default isTrue. -
Extension- output file format, default ismp3.
-
- Session configuration:
-
Bitrate: int (optional) - bitrate of the audio recording in kbps. If not specified, default value is256.
-
App configuration example:
[Devices.Streamers.Audio]
DeviceName = Microphone Array (Creative Senz3D VF0780)
AutoSelectDevice = True
Extension = mp3Session configuration example in Session Definition JSON object:
{
"project": /* project name */,
"name": /* session name */,
"devices": [
{
"device" : "WCA",
"configuration": { "Bitrate" : "320" }
},
// ... other devices
],
// ... other SessionDefinition settings
}Audio file is recorded instead of structured data, i.e., WCA_data.mp3 file is located in the session recording data.
- Home
- Usage Examples
- User Manual
- API Reference
- Installation Manual
- Contributing
- Project Documentation