-
Notifications
You must be signed in to change notification settings - Fork 23
Created New Schema And Specifications For Phone Audio Input Plugin #383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6969591
Added schemas and specifications for phone_audio_input plugin
this-Aditya 742443d
Updated the schema for phone_audio_input
this-Aditya cb52a7d
Updated processing state
this-Aditya 4f2742e
Changing deviceChannelCounts type to string
this-Aditya 0565780
PR feedback addressed
this-Aditya 8cfce48
Replacing audio-input plugins files to separate directories
this-Aditya 39d5ea1
Minor change
this-Aditya 91d5cec
Merge branch 'dev' into audio-input
this-Aditya 3a86883
Corrected indentation
this-Aditya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"namespace": "org.radarcns.passive.phone", | ||
"type": "record", | ||
"name": "PhoneAudioInput", | ||
"doc": "Uncompressed high-quality audio data collected by the PhoneAudioInput plugin, making use of low-level classes that interact directly with hardware.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (s)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Device receiver timestamp in UTC (s)." }, | ||
{ "name": "fileName", "type": "string", "doc": "Name of the audio file after it is saved to S3." }, | ||
{ "name": "filePath", "type": "string", "doc": "Path of the audio file retrieved after uploading to S3 storage." }, | ||
{ "name": "deviceName", "type": "string", "doc": "Name of the input audio device used for routing during this recording." }, | ||
{ "name": "deviceId", "type": "string", "doc": "Identifier associated with the input device used for audio recording." }, | ||
{ "name": "deviceSampleRates", "type": "string", "doc": "Supported sample rates of the input audio device." }, | ||
{ "name": "deviceEncodings", "type": "string", "doc": "Supported encodings of the input audio device." }, | ||
{ "name": "deviceType", "type": "string", "doc": "Type of the input audio device used for recording." }, | ||
{ "name": "deviceChannelCounts", "type": "string", "doc": "Supported channel counts of the input audio device." }, | ||
{ "name": "audioLength", "type": "long", "doc": "Length of the audio recording (in milliseconds)." }, | ||
{ "name": "audioFileSize", "type": "long", "doc": "Size of the audio file (in bytes)." }, | ||
{ "name": "hadPlayback", "type": "boolean", "doc": "Whether the recorded audio file was played before uploading to s3 storage." }, | ||
{ "name": "audioFileExtension", "type": "string", "doc": "Extension of the audio file." }, | ||
{ "name": "configuredSampleRate", "type": "int", "doc": "Sample rate for audio recording configured by firebase remote configs in application."}, | ||
{ "name": "configuredEncoding", "type": "string", "doc": "Encoding for audio recording configured by firebase remote configs in application." } | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.