Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
begenieus-jobs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ramdayal Munda
begenieus-jobs
Commits
8107f789
Commit
8107f789
authored
Mar 08, 2024
by
ramdayalmunda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
progress bar handling while generating video
parent
685ede17
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
15 deletions
+28
-15
tutor-shot.js
controller/tutor-shot.js
+28
-14
socket.js
socket.js
+0
-1
No files found.
controller/tutor-shot.js
View file @
8107f789
...
@@ -17,24 +17,25 @@ module.exports.generateVideo = async function (req, res) {
...
@@ -17,24 +17,25 @@ module.exports.generateVideo = async function (req, res) {
let
uid
;
let
uid
;
let
_id
let
_id
let
filesCreated
=
[]
let
filesCreated
=
[]
let
socketPayload
try
{
try
{
let
tutorShotData
=
req
.
body
.
tutorShotData
;
let
tutorShotData
=
req
.
body
.
tutorShotData
;
let
videoPath
;
// local path of the video file
let
videoPath
;
// local path of the video file
let
thumbnailPath
// local path of the thumbnail file
let
thumbnailPath
// local path of the thumbnail file
let
fileName
;
// remote name of the final video file
let
fileName
;
// remote name of the final video file
let
thumbnailName
;
// remote name of the final thumbnail
let
thumbnailName
;
// remote name of the final thumbnail
let
updatedData
;
if
(
tutorShotData
)
{
if
(
tutorShotData
)
{
uid
=
tutorShotData
.
uid
uid
=
tutorShotData
.
uid
_id
=
tutorShotData
.
_id
_id
=
tutorShotData
.
_id
let
socketPayload
=
{
socketPayload
=
{
uid
:
tutorShotData
.
uid
,
uid
:
tutorShotData
.
uid
,
_id
:
tutorShotData
.
_id
,
task
:
"Video Generation"
,
task
:
"Video Generation"
,
percent
:
0
,
percent
:
0
,
subTask
:
[
{
task
:
"Image Compiled"
,
percent
:
0
}
]
subTask
:
[
{
task
:
"Image Compiled"
,
percent
:
0
}
]
}
}
if
(
tutorShotData
?.
audio
?.
length
)
{
if
(
tutorShotData
?.
audio
?.
length
)
{
socketPayload
.
subTask
.
push
({
task
:
"Audio mixing"
,
percent
:
0
})
socketPayload
.
subTask
.
push
({
task
:
"Audio mixing"
,
percent
:
0
})
}
}
...
@@ -83,8 +84,8 @@ module.exports.generateVideo = async function (req, res) {
...
@@ -83,8 +84,8 @@ module.exports.generateVideo = async function (req, res) {
filesCreated
.
push
(
thumbnailPath
)
filesCreated
.
push
(
thumbnailPath
)
}
}
socketPayload
.
subTask
[
0
].
percent
=
Math
.
round
(((
i
+
1
)
/
tutorShotData
.
segments
.
length
)
*
75
);
// 75% for generating images
socketPayload
.
subTask
[
0
].
percent
=
Math
.
round
(((
i
+
1
)
/
tutorShotData
.
segments
.
length
)
*
75
);
// 75% for generating images
socketPayload
.
percent
=
Math
.
round
(
tutorShotData
?.
audio
?.
length
?
socketPayload
.
subTask
[
0
].
percent
/
2
:
socketPayload
.
subTask
[
0
].
percent
);
socketPayload
.
percent
=
Math
.
round
(
tutorShotData
?.
audio
?.
length
?
socketPayload
.
subTask
[
0
].
percent
/
2
:
socketPayload
.
subTask
[
0
].
percent
);
socket
.
emit
(
"videoGenerationProgress"
,
socketPayload
);
socket
.
emit
(
"videoGenerationProgress"
,
socketPayload
);
}
}
...
@@ -101,7 +102,7 @@ module.exports.generateVideo = async function (req, res) {
...
@@ -101,7 +102,7 @@ module.exports.generateVideo = async function (req, res) {
await
createVideoFromImages
([],
options
);
await
createVideoFromImages
([],
options
);
filesCreated
.
push
(
path
.
dirname
(
videoPath
))
filesCreated
.
push
(
path
.
dirname
(
videoPath
))
socketPayload
.
subTask
[
0
].
percent
=
100
;
// 100% if video(without audio) is generated
socketPayload
.
subTask
[
0
].
percent
=
100
;
// 100% if video(without audio) is generated
socketPayload
.
percent
=
Math
.
round
(
tutorShotData
?.
audio
?.
length
?
socketPayload
.
subTask
[
0
].
percent
/
2
:
socketPayload
.
subTask
[
0
].
percent
);
socketPayload
.
percent
=
Math
.
round
(
tutorShotData
?.
audio
?.
length
?
socketPayload
.
subTask
[
0
].
percent
/
2
:
socketPayload
.
subTask
[
0
].
percent
);
socket
.
emit
(
"videoGenerationProgress"
,
socketPayload
);
socket
.
emit
(
"videoGenerationProgress"
,
socketPayload
);
!
(
async
function
()
{
!
(
async
function
()
{
...
@@ -117,24 +118,37 @@ module.exports.generateVideo = async function (req, res) {
...
@@ -117,24 +118,37 @@ module.exports.generateVideo = async function (req, res) {
await
createAudio
(
tutorShotData
.
audio
,
audioPath
)
await
createAudio
(
tutorShotData
.
audio
,
audioPath
)
finalVideoPath
=
path
.
join
(
TEMP_VIDEO_DIR
,
`ts-final-
${
tutorShotData
.
_id
}
.mp4`
);
// path to combined video and audio
finalVideoPath
=
path
.
join
(
TEMP_VIDEO_DIR
,
`ts-final-
${
tutorShotData
.
_id
}
.mp4`
);
// path to combined video and audio
await
joinAudioVideo
(
videoPath
,
audioPath
,
finalVideoPath
)
await
joinAudioVideo
(
videoPath
,
audioPath
,
finalVideoPath
)
}
else
{
}
else
{
socketPayload
.
percent
=
100
socketPayload
.
percent
=
99
socketPayload
.
subTask
[
0
].
percent
=
100
socketPayload
.
subTask
[
0
].
percent
=
99
socket
.
emit
(
"videoGenerationProgress"
,
socketPayload
)
socket
.
emit
(
"videoGenerationProgress"
,
socketPayload
)
}
}
}
// uploading process
let
remotePath
=
path
.
join
(
CONFIG
.
S3_TUTOR_SHOT
,
fileName
)
let
remotePath
=
path
.
join
(
CONFIG
.
S3_TUTOR_SHOT
,
fileName
)
let
remoteThumbnailPath
=
path
.
join
(
CONFIG
.
S3_TUTOR_SHOT
,
thumbnailName
)
let
remoteThumbnailPath
=
path
.
join
(
CONFIG
.
S3_TUTOR_SHOT
,
thumbnailName
)
await
uploadToAwsS3
(
videoPath
,
remotePath
)
await
uploadToAwsS3
(
videoPath
,
remotePath
)
await
uploadToAwsS3
(
thumbnailPath
,
remoteThumbnailPath
)
await
uploadToAwsS3
(
thumbnailPath
,
remoteThumbnailPath
)
tutorShotData
.
thumbnailUrl
=
remoteThumbnailPath
tutorShotData
.
thumbnailUrl
=
remoteThumbnailPath
tutorShotData
.
signedVideoUrl
=
await
generatePreSignedGetUrl
(
remotePath
)
tutorShotData
.
signedThumbnailUrl
=
await
generatePreSignedGetUrl
(
remoteThumbnailPath
)
tutorShotData
.
videoUrl
=
remotePath
tutorShotData
.
videoUrl
=
remotePath
tutorShotData
.
generatingVideo
=
false
tutorShotData
.
generatingVideo
=
false
console
.
log
(
'----tutor-shot-generated----'
,
tutorShotData
?.
_id
)
socketPayload
.
tutorShotData
=
{
videoUrl
:
remotePath
,
thumbnailUrl
:
remoteThumbnailPath
,
signedVideoUrl
:
tutorShotData
?.
signedVideoUrl
,
signedThumbnailUrl
:
tutorShotData
?.
signedThumbnailUrl
,
}
socketPayload
.
percent
=
100
socketPayload
.
complete
=
true
socket
.
emit
(
"videoGenerationProgress"
,
socketPayload
)
console
.
log
(
'---Tutor-shot-generated----'
,
tutorShotData
?.
_id
)
}
res
.
status
(
STATUS_CODE
.
OK
).
json
(
tutorShotData
)
res
.
status
(
STATUS_CODE
.
OK
).
json
(
tutorShotData
)
}
catch
(
err
)
{
}
catch
(
err
)
{
console
.
log
(
'------ERROR:GENERATING VIDEO'
,
err
)
console
.
log
(
'------ERROR:GENERATING VIDEO'
,
err
)
...
...
socket.js
View file @
8107f789
...
@@ -3,7 +3,6 @@ const socketIO = require('socket.io-client')
...
@@ -3,7 +3,6 @@ const socketIO = require('socket.io-client')
const
CONFIG
=
require
(
'./config.js'
)
const
CONFIG
=
require
(
'./config.js'
)
let
socket
=
socketIO
(
CONFIG
.
SOCKET_URL
)
let
socket
=
socketIO
(
CONFIG
.
SOCKET_URL
)
socket
.
on
(
'connect'
,
()
=>
{
console
.
log
(
'Socket connected!'
)
})
socket
.
on
(
'connect'
,
()
=>
{
console
.
log
(
'Socket connected!'
)
})
socket
.
on
(
'disconnect'
,
()
=>
{
console
.
log
(
'Socket disconnected!'
)
})
socket
.
on
(
'disconnect'
,
()
=>
{
console
.
log
(
'Socket disconnected!'
)
})
...
...
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