Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fairblue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hosting
chat
fairblue
Commits
983751c9
Commit
983751c9
authored
5 years ago
by
Calvin Walton
Browse files
Options
Downloads
Patches
Plain Diff
RaP: Have the caption inbox run the caption integration scripts.
parent
bdd60a19
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
record-and-playback/core/scripts/rap-caption-inbox.rb
+22
-8
22 additions, 8 deletions
record-and-playback/core/scripts/rap-caption-inbox.rb
record-and-playback/presentation/scripts/caption/presentation
+0
-0
0 additions, 0 deletions
...rd-and-playback/presentation/scripts/caption/presentation
with
22 additions
and
8 deletions
record-and-playback/core/scripts/rap-caption-inbox.rb
+
22
−
8
View file @
983751c9
...
...
@@ -68,10 +68,12 @@ def caption_file_notify(json_filename)
captions_work_base
=
File
.
join
(
props
[
'recording_dir'
],
'caption'
,
'inbox'
)
new_caption_info
=
File
.
open
(
json_filename
)
{
|
file
|
JSON
.
parse
(
file
)
}
logger
.
tag
(
record_id:
new_caption_info
[
'record_id'
])
do
record_id
=
new_caption_info
[
'record_id'
]
logger
.
tag
(
record_id:
record_id
)
do
begin
# Read the existing captions index file
# TODO: This is racy if multiple tools are editing the captions.json file
index_filename
=
File
.
join
(
captions_dir
,
new_caption_info
[
'
record_id
'
]
,
'captions.json'
)
index_filename
=
File
.
join
(
captions_dir
,
record_id
,
'captions.json'
)
captions_info
=
begin
File
.
open
(
index_filename
)
{
|
file
|
JSON
.
parse
(
file
)
}
...
...
@@ -83,12 +85,11 @@ def caption_file_notify(json_filename)
langtag
=
Locale
::
Tag
::
Rfc
.
parse
(
new_caption_info
[
'lang'
])
raise
InvalidCaptionError
,
'Language tag is not well-formed'
unless
langtag
# Remove the info for an existing matching track
# Remove the info for an existing matching track
, and add the new one
captions_info
.
delete_if
do
|
caption_info
|
caption_info
[
'lang'
]
==
new_caption_info
[
'lang'
]
&&
caption_info
[
'kind'
]
==
new_caption_info
[
'kind'
]
end
captions_info
<<
{
'kind'
=>
new_caption_info
[
'kind'
],
'label'
=>
new_caption_info
[
'label'
],
...
...
@@ -96,12 +97,14 @@ def caption_file_notify(json_filename)
'source'
=>
'upload'
,
}
captions_work
=
File
.
join
(
captions_work_base
,
record_id
)
FileUtils
.
mkdir_p
(
captions_work
)
src_filename
=
File
.
join
(
captions_inbox_dir
,
new_caption_info
[
'temp_filename'
])
dest_filename
=
"
#{
captions_info
[
'kind'
]
}
_
#{
captions_info
[
'lang'
]
}
.vtt"
tmp_dest
=
File
.
join
(
captions_work
_base
,
new_caption_info
[
'record_id'
]
,
dest_filename
)
final_dest
=
File
.
join
(
captions_dir
,
new_caption_info
[
'
record_id
'
]
,
dest_filename
)
tmp_dest
=
File
.
join
(
captions_work
,
dest_filename
)
final_dest
=
File
.
join
(
captions_dir
,
record_id
,
dest_filename
)
#
Try to use ffmpeg to c
onvert the received caption file to WebVTT
#
C
onvert the received caption file to WebVTT
ffmpeg_cmd
=
[
'ffmpeg'
,
'-i'
,
src_filename
,
'-map'
,
'0:s'
,
...
...
@@ -111,12 +114,21 @@ def caption_file_notify(json_filename)
raise
InvalidCaptionError
,
'FFmpeg could not read input'
unless
ret
.
zero?
FileUtils
.
mv
(
tmp_dest
,
final_dest
)
# Finally, save the updated index file that references the new caption
File
.
open
(
index_filename
,
'w'
)
do
|
file
|
result
=
JSON
.
pretty_generate
(
captions_info
)
file
.
write
(
result
)
end
# TODO: trigger incorporating caption file into existing published recordings
caption_scripts
=
File
.
glob
(
File
.
expand_path
(
'captions/*'
,
__dir__
))
caption_scripts
.
each
do
|
caption_script
|
next
unless
File
.
file?
(
caption_script
)
&&
File
.
executable?
(
caption_script
)
logger
.
info
(
"Running caption integration script
#{
caption_script
}
"
)
ret
=
BigBlueButton
.
exec_ret
(
caption_script
,
'--record-id'
,
record_id
)
logger
.
warn
(
'Caption integration script failed'
)
unless
ret
.
zero?
end
logger
.
info
(
'Removing files from inbox directory'
)
FileUtils
.
rm_f
(
src_filename
)
if
src_filename
...
...
@@ -127,6 +139,8 @@ def caption_file_notify(json_filename)
logger
.
info
(
'Deleting invalid files from inbox directory'
)
FileUtils
.
rm_f
(
src_filename
)
if
src_filename
FileUtils
.
rm_f
(
json_filename
)
ensure
FileUtils
.
rm_rf
(
File
.
join
(
captions_work_base
,
record_id
))
end
end
end
...
...
This diff is collapsed.
Click to expand it.
record-and-playback/presentation/scripts/caption/presentation
.rb
→
record-and-playback/presentation/scripts/caption/presentation
+
0
−
0
View file @
983751c9
File moved
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment