You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like the audio from the browser to automatically stream to the server. In order to accomplish this, we will write a javascript that detects the volume level. When the volume level from the microphone reaches a certain magnitude, it will trigger a recording event. Similarly, if the volume level falls below this trigger value, the recording will end. When a recording ends, the recorded segment will be sent to the server via our determined websocket connection for processing.
All recorded segments should be saved into it's own separate subdirectory. Also, each segment should be cleverly named by post-fixing the filename, and be in chronological order xxx_segment_1, xxx_segment_2, ..., xxx_segment_n. Since we will be sending a receipt back to the browser from the server, we may be able to post fix the filenames by utilizing these variables. This will allow future logical computations to know how to assemble the segments together.
The text was updated successfully, but these errors were encountered:
We would like the audio from the browser to automatically stream to the server. In order to accomplish this, we will write a javascript that detects the volume level. When the volume level from the microphone reaches a certain magnitude, it will trigger a recording event. Similarly, if the volume level falls below this trigger value, the recording will end. When a recording ends, the recorded segment will be sent to the server via our determined websocket connection for processing.
All recorded segments should be saved into it's own separate subdirectory. Also, each segment should be cleverly named by post-fixing the filename, and be in chronological order
xxx_segment_1
,xxx_segment_2
, ...,xxx_segment_n
. Since we will be sending a receipt back to the browser from the server, we may be able to post fix the filenames by utilizing these variables. This will allow future logical computations to know how to assemble the segments together.The text was updated successfully, but these errors were encountered: