Commit Graph

35720 Commits

Author SHA1 Message Date
Joao Victor
a5b444e6ec Make top navigation focusable 2022-12-08 16:16:00 -03:00
Anton Georgiev
49c6f530e6 chore: set nodejs to 14.21.1 and meteor to 2.9.0 2022-12-08 19:14:16 +00:00
Anton Georgiev
06d32c672c chore: Update meteor 2.7.1 to 2.9.0 2022-12-08 19:07:39 +00:00
Ramón Souza
41a56cada3 increase max-height of video modal 2022-12-08 14:37:19 -03:00
Ramón Souza
4bc6de20e2
Merge pull request #16094 from JoVictorNunes/issue-16058
fix: Speaking person tooltip has wrong encoding
2022-12-08 13:18:10 -03:00
Anton Georgiev
9a39751fb2
Merge pull request #16050 from kepstin/recording-speed-fix-25
Recording: Don't use stateful filters in ffmpeg video processing (2.5 backport)
2022-12-08 11:00:04 -05:00
Anton Georgiev
4ade8ef2d4
Merge pull request #16047 from kepstin/recording-speed-fix
Recording: Don't use stateful filters in ffmpeg video processing
2022-12-08 10:59:48 -05:00
Joao Victor
0ff4c9e10a Include name of the product 2022-12-08 11:46:26 -03:00
Joao Victor
8d87bbff67 fix: Speaking person tooltip has wrong encoding 2022-12-07 17:09:50 -03:00
Calvin Walton
06d0e4d454 Recording: Move tpad filter to after fps filter
The tpad filter is problematic on the variable-framerate webcam files,
and the result can end up being hangs (or, at least, very slow
processing) in the compositing.

Move the tpad filter to the compositing process where it can run after
the fps filter has converted the video to constant framerate. It still
needs to run before the start trimming, so switch to using the trim
filter rather than the fps filter's start_pts feature.
2022-12-06 16:00:39 -05:00
Calvin Walton
5cb32ec088 Recording: Move tpad filter to after fps filter
The tpad filter is problematic on the variable-framerate webcam files,
and the result can end up being hangs (or, at least, very slow
processing) in the compositing.

Move the tpad filter to the compositing process where it can run after
the fps filter has converted the video to constant framerate. It still
needs to run before the start trimming, so switch to using the trim
filter rather than the fps filter's start_pts feature.
2022-12-06 15:59:54 -05:00
Anton Georgiev
4a81825bad
Merge pull request #16046 from gabriellpr/presentation-fullscreen
test: presentation fullscreen and snapshot
2022-12-06 11:30:56 -05:00
Ramón Souza
81fab52812
Merge pull request #16090 from JoVictorNunes/issue-16065
fix: Webcam backgrounds crash the entire client on Firefox
2022-12-06 11:10:14 -03:00
Ramón Souza
1a94ed7a88
Merge pull request #16069 from ramonlsouza/fix-confirmation-label
fix: adjust confirmation modal label
2022-12-06 10:25:13 -03:00
Ramón Souza
6cb87316d6
Merge pull request #15165 from JoVictorNunes/connection-status-modal-snap-scroll
improvement: mobile-like behavior in connection status modal
2022-12-06 09:53:51 -03:00
Joao Victor
5a72c51890 resolve conflicts 2022-12-06 09:41:37 -03:00
Joao Victor
63371a1e62 resolve conflicts 2022-12-06 09:37:26 -03:00
Ramón Souza
2ecb09783f
Merge pull request #15842 from bigbluebutton/ask-before-leave
feat: Ask for confirmation before closing meeting window
2022-12-06 09:07:00 -03:00
Ramón Souza
55ae884f5f
Merge branch 'v2.6.x-release' into ask-before-leave 2022-12-06 09:04:28 -03:00
Ramón Souza
416a8e0170
chore: Set bigbluebutton release to 2.6.0-beta.2 2022-12-06 08:39:50 -03:00
Joao Victor
cf40b24ef6 fix: Webcam backgrounds crash the entire client on Firefox 2022-12-06 07:32:40 -03:00
Anton Georgiev
fc32f5b2e9
Merge pull request #16078 from MaximKhlobystov/clipping-images-whiteboard-tests
test: clip the reference images in the whiteboard drawing tests
2022-12-05 13:21:20 -05:00
Ramón Souza
4347be6c29
Merge pull request #16089 from ramonlsouza/update-bbb-playback
build(bbb-playback): v5.0.0-beta.1
2022-12-05 15:11:01 -03:00
Ramón Souza
70735d567a build bbb-playback v5.0.0-beta.1 2022-12-05 15:07:33 -03:00
Ramón Souza
654116f0d2
Merge pull request #15701 from JoVictorNunes/fix-dashboard-deps-Sep-15
chore: rearrange Dashboard dependencies
2022-12-05 14:59:56 -03:00
Ramón Souza
a897f9d5d0 Merge remote-tracking branch 'upstream/v2.6.x-release' into pr-15701 2022-12-05 14:56:48 -03:00
Anton Georgiev
2a4c8d57bf
Merge pull request #16081 from gabriellpr/copy-paste-test
test: copy/paste public message
2022-12-05 12:51:25 -05:00
Calvin Walton
4127f4ccc7 Recording: Pre-process video files using separate ffmpeg
Even with the filter changes made, there's still some cases where
filter chain hangs can result from filter reconfigurations. To solve the
issue completely, I have split out pre-processing video files to
separate ffmpeg processes, so that the filter chain for compositing will
not ever be reconfigured.

Each input video now has a separate ffmpeg process run for it which
does the scaling, padding, and video extending steps. To avoid issues
with disk space usage and extra cpu usage or quality loss, the output
from these separate processes is sent to the compositing ffmpeg process
as uncompressed video in a pipe. To simplify the setup, named pipes
(special files) are used rather than setting up pipes in the ruby code
programmatically.

The extra ffmpeg processes are configured to log to files, and when
complete their log output is copied to the recording processing log.
Processes are joined to ensure zombie processes are not created, and
the return codes of all the processes are checked so errors can be
detected.

Due to the overhead of transferring video through pipes, this might
be a bit slower than the 2.4 recording processing - but on the other
hand, some of the video decoding and scaling happens in parallel, so it
might balance out.
2022-12-05 11:55:59 -05:00
Calvin Walton
58c4ffd068 Recording: Pre-process video files using separate ffmpeg
Even with the filter changes made, there's still some cases where
filter chain hangs can result from filter reconfigurations. To solve the
issue completely, I have split out pre-processing video files to
separate ffmpeg processes, so that the filter chain for compositing will
not ever be reconfigured.

Each input video now has a separate ffmpeg process run for it which
does the scaling, padding, and video extending steps. To avoid issues
with disk space usage and extra cpu usage or quality loss, the output
from these separate processes is sent to the compositing ffmpeg process
as uncompressed video in a pipe. To simplify the setup, named pipes
(special files) are used rather than setting up pipes in the ruby code
programmatically.

The extra ffmpeg processes are configured to log to files, and when
complete their log output is copied to the recording processing log.
Processes are joined to ensure zombie processes are not created, and
the return codes of all the processes are checked so errors can be
detected.

Due to the overhead of transferring video through pipes, this might
be a bit slower than the 2.4 recording processing - but on the other
hand, some of the video decoding and scaling happens in parallel, so it
might balance out.
2022-12-05 11:49:16 -05:00
Anton Georgiev
09eec6b3c5
Merge pull request #16066 from bigbluebutton/antobinary-svgImages
refactor: Remove check for svgImagesRequired
2022-12-05 09:20:17 -05:00
Ramón Souza
1b1cca2771
Merge pull request #16088 from ramonlsouza/remove-postcss
chore: remove postcss
2022-12-05 11:17:26 -03:00
Ramón Souza
9468c14df0 remove postcss 2022-12-05 10:30:35 -03:00
Ramón Souza
c8cce37cc4
Merge pull request #16087 from ramonlsouza/locales-dec5
chore: Pulled the latest 2.6 HTML5 locales from Transifex
2022-12-05 09:33:21 -03:00
Localization Server
064f362432 chore: Pulled the latest 2.6 HTML5 locales from Transifex 2022-12-05 09:26:18 -03:00
Anton Barboza
5a65e30911 Merge remote-tracking branch 'upstream/v2.6.x-release' into v2.6-tests-fixes 2022-12-02 12:20:27 +01:00
Ramón Souza
1cf416e907
Merge pull request #16073 from ramonlsouza/fix-chat-on-join
fix: chat not appearing on join
2022-12-01 13:24:11 -03:00
Gabriel Porfirio
07c1a894e7 added issue's link 2022-12-01 12:06:30 -03:00
Anton Georgiev
dbf5143941
Merge pull request #15958 from gabriellpr/shared-notes-tests
test: Shared notes
2022-12-01 09:50:32 -05:00
Anton Georgiev
e98ffcf0b8
Merge pull request #16018 from gabriellpr/dark-mode-test
test: Dark mode
2022-12-01 09:46:52 -05:00
Gabriel Porfirio
76ecbb3085 removed only flag 2022-12-01 11:39:26 -03:00
gabriellpr
792566a48b
Merge pull request #7 from antonbsa/link-issue
test: Linking issue on tests
2022-12-01 11:21:47 -03:00
Gabriel Porfirio
0806cbf696 changed to call locators once 2022-12-01 11:15:55 -03:00
Anton Barboza
29196da620 test: add function to link issue or PR 2022-12-01 14:43:36 +01:00
Gabriel Porfirio
2a23e63a64 copy and paste public message test 2022-12-01 08:19:03 -03:00
Maxim Khlobystov
57ccf98edd Visual regression tests: take screenshots of the whiteboard instead of the entire client 2022-12-01 10:25:03 +00:00
Anton Barboza
c6f697bd32 core: update CI checkout version 2022-12-01 10:14:51 +01:00
Ramón Souza
d20079e7b9 fix closed chat on join 2022-11-30 15:32:47 -03:00
Anton Barboza
8691c47902 test: update whiteboard screenshots (visual regression) 2022-11-30 18:16:24 +01:00
Paulo Lanzarin
a783ce824e
Merge pull request #16071 from bigbluebutton/sfu295
build(bbb-webrtc-sfu): v2.9.5
2022-11-30 13:31:28 -03:00
Anton Barboza
77d958d172 test: update dependencies and fix polling elements 2022-11-30 16:50:43 +01:00