Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2023-029
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2023-029
2023-029
Commits
d9272568
Commit
d9272568
authored
May 15, 2023
by
supundileepa00
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Initial UI development with main functionalities
parent
5b04c61f
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
252 additions
and
147 deletions
+252
-147
Project/Frontend/Web_App/src/pages/translate-page.tsx
Project/Frontend/Web_App/src/pages/translate-page.tsx
+148
-133
Project/Frontend/Web_App/src/sections/slToText/WebcamStreamCapture.module.css
..._App/src/sections/slToText/WebcamStreamCapture.module.css
+24
-0
Project/Frontend/Web_App/src/sections/slToText/WebcamStreamCapture.tsx
...end/Web_App/src/sections/slToText/WebcamStreamCapture.tsx
+80
-14
No files found.
Project/Frontend/Web_App/src/pages/translate-page.tsx
View file @
d9272568
This diff is collapsed.
Click to expand it.
Project/Frontend/Web_App/src/sections/slToText/WebcamStreamCapture.module.css
0 → 100644
View file @
d9272568
.videoContainer
{
position
:
relative
;
width
:
50%
;
padding-top
:
56.25%
;
/* 16:9 aspect ratio */
}
.futuristicVideo
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
border
:
none
;
outline
:
none
;
background-color
:
black
;
opacity
:
0.8
;
filter
:
blur
(
4px
);
transition
:
opacity
0.5s
,
filter
0.5s
;
}
.futuristicVideo
:hover
{
opacity
:
1
;
filter
:
blur
(
0
);
}
Project/Frontend/Web_App/src/sections/slToText/WebcamStreamCapture.tsx
View file @
d9272568
import
React
from
'
react
'
;
import
React
,
{
useEffect
,
useState
}
from
'
react
'
;
import
Webcam
from
'
react-webcam
'
;
import
{
Box
,
Button
}
from
'
@mui/material
'
;
import
{
Box
,
Button
,
Container
,
Grid
,
Stack
}
from
'
@mui/material
'
;
import
StopIcon
from
'
@mui/icons-material/Stop
'
;
import
RadioButtonCheckedIcon
from
'
@mui/icons-material/RadioButtonChecked
'
;
import
styles
from
'
./WebcamStreamCapture.module.css
'
;
const
WebcamStreamCapture
=
()
=>
{
const
webcamRef
=
React
.
useRef
(
null
);
const
mediaRecorderRef
=
React
.
useRef
(
null
);
...
...
@@ -10,7 +12,10 @@ const WebcamStreamCapture = () => {
const
[
mediaBlobUrl
,
setMediaBlobUrl
]
=
React
.
useState
([]);
const
handleStartCaptureClick
=
React
.
useCallback
(()
=>
{
setRecordedChunks
([]);
setMediaBlobUrl
([]);
setCapturing
(
true
);
mediaRecorderRef
.
current
=
new
MediaRecorder
(
webcamRef
.
current
.
stream
,
{
mimeType
:
'
video/webm
'
,
});
...
...
@@ -27,8 +32,18 @@ const WebcamStreamCapture = () => {
[
setRecordedChunks
]
);
const
handleStopCaptureClick
=
React
.
useCallback
(()
=>
{
const
handleStopCaptureClick
=
React
.
useCallback
(
async
()
=>
{
mediaRecorderRef
.
current
.
stop
();
const
blob
=
new
Blob
(
recordedChunks
,
{
type
:
'
video/mp4
'
,
});
const
url
=
await
URL
.
createObjectURL
(
blob
);
console
.
log
(
url
);
await
setMediaBlobUrl
(
url
);
setCapturing
(
false
);
},
[
mediaRecorderRef
,
webcamRef
,
setCapturing
]);
...
...
@@ -49,20 +64,71 @@ const WebcamStreamCapture = () => {
}
},
[
recordedChunks
]);
// Styles for camera
const
[
width
,
setWidth
]
=
useState
(
window
.
innerWidth
);
const
handleResize
=
()
=>
{
setWidth
(
window
.
innerWidth
);
};
useEffect
(()
=>
{
window
.
addEventListener
(
'
resize
'
,
handleResize
);
return
()
=>
window
.
removeEventListener
(
'
resize
'
,
handleResize
);
},
[]);
return
(
<>
<
Webcam
audio=
{
false
}
ref=
{
webcamRef
}
/>
{
capturing
?
(
<
Button
onClick=
{
handleStopCaptureClick
}
>
Stop Capture
</
Button
>
)
:
(
<
Button
onClick=
{
handleStartCaptureClick
}
>
Start Capture
</
Button
>
)
}
{
recordedChunks
.
length
>
0
&&
<
Button
onClick=
{
handleDownload
}
>
Download
</
Button
>
}
<
video
src=
{
mediaBlobUrl
}
controls
autoPlay
loop
/>
<
Grid
container
spacing=
{
2
}
>
<
Grid
item
xs=
{
12
}
>
<
center
>
<
Webcam
audio=
{
false
}
ref=
{
webcamRef
}
style=
{
{
width
:
'
100%
'
,
maxWidth
:
'
500px
'
}
}
/>
</
center
>
</
Grid
>
<
Grid
item
xs=
{
12
}
>
<
center
>
{
capturing
?
(
<
Button
onClick=
{
handleStopCaptureClick
}
startIcon=
{
<
StopIcon
/>
}
color=
"error"
variant=
"contained"
>
Stop Capture
</
Button
>
)
:
(
<
Button
onClick=
{
handleStartCaptureClick
}
startIcon=
{
<
RadioButtonCheckedIcon
/>
}
color=
"error"
variant=
"contained"
>
Start Capture
</
Button
>
)
}
{
recordedChunks
.
length
>
0
&&
(
<
Button
onClick=
{
handleDownload
}
variant=
"contained"
sx=
{
{
ml
:
1
,
}
}
>
Download
</
Button
>
)
}
</
center
>
</
Grid
>
<
Grid
item
xs=
{
12
}
>
<
center
>
<
video
src=
{
mediaBlobUrl
}
controls
autoPlay
/>
</
center
>
{
/* <div className={styles.videoContainer}>
<video className={styles.futuristicVideo} src={mediaBlobUrl} controls autoPlay />
</div> */
}
</
Grid
>
</
Grid
>
</>
);
};
export
default
WebcamStreamCapture
;
// https://www.npmjs.com/package/react-webcam
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment