dependabot[bot]
f9ac1dd48b
Bump rubyzip from 1.2.3 to 1.3.0 in /record-and-playback/core
...
Bumps [rubyzip](https://github.com/rubyzip/rubyzip ) from 1.2.3 to 1.3.0.
- [Release notes](https://github.com/rubyzip/rubyzip/releases )
- [Changelog](https://github.com/rubyzip/rubyzip/blob/master/Changelog.md )
- [Commits](https://github.com/rubyzip/rubyzip/compare/v1.2.3...v1.3.0 )
Signed-off-by: dependabot[bot] <support@github.com>
2019-10-04 10:39:10 +00:00
dependabot[bot]
415a25f9a0
Bump nokogiri from 1.10.3 to 1.10.4 in /record-and-playback/core
...
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri ) from 1.10.3 to 1.10.4.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases )
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/master/CHANGELOG.md )
- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.10.3...v1.10.4 )
Signed-off-by: dependabot[bot] <support@github.com>
2019-08-20 17:17:39 +00:00
Fred Dixon
eacb8f9f65
Merge pull request #7723 from kepstin/rec-events-cleanup-more
...
Delete control characters from all recording event properties
2019-08-09 23:10:24 -04:00
Richard Alam
e409190114
- convert tabs to spaces
2019-07-10 13:09:38 -07:00
Richard Alam
ec1343931c
- add comments to explain how rap-archive-worker and rap-events-worker work together
2019-07-05 08:57:51 -07:00
Richard Alam
40c6dd8827
- run post events scripts
2019-07-05 08:57:22 -07:00
Richard Alam
61d9223a70
- format spaces to tabs
2019-07-04 11:07:57 -07:00
Richard Alam
82bd5e4a6f
- run keep-events worker separate from archive-worker
2019-07-04 11:00:59 -07:00
Calvin Walton
f2f9989c70
Delete control characters from all recording event properties
...
Found another case where the html5 client was passing through control
characters, in the original presentation name field.
Rather than play whack-a-mole with different fields which may eventually
get poorly sanitized user data, apply the control character filtering
to all properties.
Adjust the character range to do the following:
* Allow horizontal tab (0x09), it's not problematic.
* Disallow control characters in the range 0x1A-0x1F. Probably missed by accident.
2019-07-04 10:46:46 -04:00
Richard Alam
9ac272d1a0
- use thumbnails to find the num pages of presentation instead of swfs as we now turn off generation of
...
swfs for html5
2019-06-07 13:22:59 -07:00
Richard Alam
a46d0b9680
Merge branch 'master' of github.com:bigbluebutton/bigbluebutton into captions-text-tracks-intermediate-branch
2019-06-06 15:04:53 -07:00
Calvin Walton
19a011cc29
RaP: Fix error message when shared notes could not be archived.
...
It used to print:
Failed to download file: undefined local variable or method `respose' for BigBlueButton:Module
Did you mean? response
because the incorrect variable name was used in the error message.
There was no effect other than the message in the log, since the shared notes
couldn't be archived anyways, and the only thing the exception did was ...
prevent the shared notes from being archived.
2019-06-06 10:55:53 -04:00
Calvin Walton
4c1e2ed477
RaP: Reduce ffmpeg output spam in logs of caption inbox
2019-06-06 10:49:27 -04:00
Calvin Walton
7f92b58140
RaP: Dir.glob accepts a block directly, no need for a temp variable
2019-06-06 10:44:47 -04:00
Calvin Walton
620ed367be
RaP: glob is a method on Dir, not File
2019-06-06 10:43:40 -04:00
Calvin Walton
94ae7c330b
RaP: Use correct variable to get info for new caption track
2019-06-06 10:41:14 -04:00
Calvin Walton
aecb66e28d
RaP: Create the recording captions dir before moving the converted vtt file
2019-06-06 10:34:08 -04:00
Calvin Walton
07688593ac
caption-inbox: clean up track file if language tag is invalid
2019-06-04 14:28:58 -04:00
Calvin Walton
f693915e99
RaP captions: Fix usage of JSON.parse, use a proc to capture local vars
2019-06-04 14:01:51 -04:00
Calvin Walton
f04bf290af
Fix requires for journald-logger
2019-06-04 12:18:46 -04:00
Calvin Walton
983751c9c0
RaP: Have the caption inbox run the caption integration scripts.
2019-06-04 11:03:22 -04:00
Calvin Walton
676fa41f06
Add caption integration script for presentation format.
2019-06-04 11:03:22 -04:00
Calvin Walton
b22c905194
rap-caption-inbox: improve formatting, initial pass at conversion
...
It now attempts to convert the uploaded caption file to WebVTT and
updates the index file.
2019-06-04 11:03:22 -04:00
Calvin Walton
775c348ddc
RaP: Add an optional test group which installs e.g. rubocop
2019-06-04 11:03:22 -04:00
Calvin Walton
c6e09f52a1
RaP Caption inbox: read uploaded caption json file
...
Some additional validation/normalization is added for the language tag,
and some cleanup has been done for logging.
2019-06-04 11:03:22 -04:00
Calvin Walton
812052a8c7
Change events archiver to read config from relative path
...
Makes testing easier
2019-06-04 11:03:22 -04:00
Calvin Walton
d74f0044cc
Add function that uses ffmpeg to convert subtitles to webvtt
...
FFmpeg has pretty good format autodetection even if the filename has the
'.txt' extension, so just rely on that. It'll even pull subtitles out of
video files - although I expect we'll have size limits so that doesn't
happen.
2019-06-04 11:03:22 -04:00
Calvin Walton
23da507fa8
Initial outline of the rap worker tool for handling the caption inbox
...
Rather than running the tool in a loop, I'm using inotify to watch for
new files being created (ideally, the other rap workers will be migrated
to this style in the future). The trigger for processing is the creation
of the .json index file for the uploaded track.
2019-06-04 11:03:22 -04:00
Ghazi Triki
c9194d087e
Correctly process captions.
2019-05-13 21:38:51 +01:00
Ghazi Triki
7c5727750f
Merge remote-tracking branch 'bigbluebutton/master' into text-tracks
2019-05-13 14:46:20 +01:00
Ghazi Triki
b578aeb243
Move captions.rb to utils directory.
2019-05-10 16:56:29 +01:00
Ghazi Triki
dbd86eb096
Code improve.
2019-05-10 15:51:05 +01:00
Fred Dixon
056ef6ee8c
Merge pull request #7327 from ritzalam/add-redis-password-on-master
...
Add redis password on master
2019-05-09 16:35:42 -04:00
Calvin Walton
5c09ea5605
Merge branch 'archive-note' of https://github.com/fcecagno/bigbluebutton
2019-05-09 13:43:48 -04:00
Fred Dixon
0d9220051f
Merge pull request #7357 from kepstin/archive-text-cleanup
...
Recording: Strip control characters in whiteboard text events
2019-05-08 10:10:25 -04:00
Ghazi Triki
17a3af0487
Write playback caption files from the captions file generated for API.
2019-05-07 18:13:09 +01:00
Calvin Walton
548ac7edef
Recording: Strip control characters in whiteboard text events
...
Sometimes when text is pasted into the whiteboard text tool from
external apps, it'll include control characters that mess up later
recording processing scripts.
Run the same cleanup as already used for chat messages on the whiteboard
text as well.
The cleanup has been adjusted to allow newline and tab characters. They
won't really cause issues in chat, and newlines (at a minimum) are
required for the whiteboard.
This is a workaround for #7356
2019-05-07 11:48:20 -04:00
Ghazi Triki
35506cdc44
Generate captions.json for API.
2019-05-01 16:01:15 +01:00
Richard Alam
bf7898225b
- minor cleanup
2019-04-30 12:30:59 -07:00
Ghazi Triki
f820446965
Process caption files before processing meeting files.
2019-04-30 19:54:02 +01:00
Ghazi Triki
925f5a2894
Put captions files in the new directory.
2019-04-22 20:28:54 +01:00
Felipe Cecagno
109bb7b658
cleanup
2019-04-15 12:36:05 -03:00
Ghazi Triki
757d92cc29
Raise an error when the note file header does not respond with a HTTPOK status.
2019-04-15 15:07:03 +01:00
Ghazi Triki
92a4bc7e52
Replaced wget and curl commands by net/http module.
2019-04-04 14:09:49 +01:00
Richard Alam
f2098bc376
Merge branch 'master' of github.com:bigbluebutton/bigbluebutton into ritzalam-add-redis-password-on-v2.2-dev
2019-04-02 10:43:46 -07:00
Felipe Cecagno
f70331cbba
update notes formats archived
2019-03-18 14:33:29 -03:00
Pedro Beschorner Marin
7e5c5c29ed
Avoid publishing empty notes
2019-03-15 17:19:54 -03:00
Felipe Cecagno
51b9b91dae
rename note to notes
2019-03-11 23:56:29 -03:00
Felipe Cecagno
3467d912c7
fix typo
2019-03-05 13:22:10 -03:00
Felipe Cecagno
657a3ef013
use etherpad api to archive exported note
2019-03-05 13:17:48 -03:00