[jira] [Commented] (OPENMEETINGS-1944) Bug various

2018-10-04 Thread Maxim Solodovnik (JIRA)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1944?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16639135#comment-16639135
 ] 

Maxim Solodovnik commented on OPENMEETINGS-1944:


Hello [~greenes2],

could you please file separate issue for this?
I believe this is not blocker for 4.0.6 release 

> Bug various
> ---
>
> Key: OPENMEETINGS-1944
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1944
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 4.0.6
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 4.0.6
>
> Attachments: Arrows blink.png, odt file upload error.png
>
>
> Snapshot 451 OM 4.0.6
> 4.0.6-SNAPSHOT 870f381 2018-10-01T15:13:52Z
> 1)
>  --- "Public Conference Room" ---
> # When drop a video (recorded in OM or not) to
> whiteboard, can't play (mp4 or avi).
> # When upload a odt file give an error (attached picture).
> 2) 
>  --- "Public Presentation Room" ---
> # When drop a video to whiteboard can't play.
> # If press wheel configuration (cam and mic), the browser
> become blocked and i must reboot the machine.
> 3)
>  --- "Public Video and Whiteboard Room" ---
> # When drop video to whiteboard only play once. The second
> time do nothing.
> 4)
>  --- "Public Video only Room" ---
> # If drop video to whiteboard do nothing (maybe this is the right?)
> 5)
> In any room the arrows in the top-up center-left blink,
> when i do nothing. (Attached picture).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OPENMEETINGS-1649) HTML5 video need to be implemented

2018-10-04 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16639131#comment-16639131
 ] 

ASF subversion and git services commented on OPENMEETINGS-1649:
---

Commit 7ea2dbfaccc326fa6d8c95e202a152a39a9c3582 in openmeetings's branch 
refs/heads/master from [~solomax]
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=7ea2dbf ]

[OPENMEETINGS-1649] turn server seems to work


> HTML5 video need to be implemented
> --
>
> Key: OPENMEETINGS-1649
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1649
> Project: Openmeetings
>  Issue Type: Bug
>  Components: HTML5/Room
>Affects Versions: 4.0.0
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.0.0
>
>
> Flex video in room should be replaced with HTML5 video



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[openmeetings] branch master updated: [OPENMEETINGS-1649] turn server seems to work

2018-10-04 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
 new 7ea2dbf  [OPENMEETINGS-1649] turn server seems to work
7ea2dbf is described below

commit 7ea2dbfaccc326fa6d8c95e202a152a39a9c3582
Author: Maxim Solodovnik 
AuthorDate: Fri Oct 5 08:21:17 2018 +0700

[OPENMEETINGS-1649] turn server seems to work
---
 .../openmeetings/core/remote/KurentoHandler.java   |  6 +++
 .../apache/openmeetings/web/room/raw-settings.js   | 56 --
 2 files changed, 38 insertions(+), 24 deletions(-)

diff --git 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
index 9d8eeda..6e52c7b 100644
--- 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
+++ 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
@@ -236,6 +236,12 @@ public class KurentoHandler {
}
}
break;
+   case "wannaPlay":
+   WebSocketHelper.sendClient(_c, 
newTestKurentoMsg()
+   .put("id", "canPlay")
+   .put("configuration", 
new JSONObject().put("iceServers", getTurnServers(true)))
+   );
+   break;
case "play":
user.play(_c, msg, 
createTestPipeline());
break;
diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-settings.js
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-settings.js
index fa51418..4292a20 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-settings.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-settings.js
@@ -167,30 +167,9 @@ var VideoSettings = (function() {
.click(function() {
recBtn.prop('disabled', true).button('refresh');
_setEnabled(true);
-   _clear();
-   rtcPeer = new 
kurentoUtils.WebRtcPeer.WebRtcPeerRecvonly(
-   {
-   remoteVideo: vid[0]
-   , mediaConstraints: {
-   audio: true
-   , video: true
-   }
-   , onicecandidate: 
_onIceCandidate
-   }
-   , function(error) {
-   if (error) {
-   return 
OmUtil.error(error);
-   }
-   
rtcPeer.generateOffer(function(error, offerSdp) {
-   if (error) {
-   return 
OmUtil.error('Error generating the offer');
-   }
-   OmUtil.sendMessage({
-   id : 'play'
-   , sdpOffer: 
offerSdp
-   }, MsgBase);
-   });
-   });
+   OmUtil.sendMessage({
+   id : 'wannaPlay'
+   }, MsgBase);
});
vs.dialog({
classes: {
@@ -441,6 +420,35 @@ var VideoSettings = (function() {

rtcPeer.on('icecandidate', _onIceCandidate);
});
break;
+   case 'canPlay':
+   {
+   const options = 
{
+   
remoteVideo: v

[jira] [Commented] (OPENMEETINGS-1649) HTML5 video need to be implemented

2018-10-04 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638598#comment-16638598
 ] 

ASF subversion and git services commented on OPENMEETINGS-1649:
---

Commit cd4986965221fd02df7ea6d2c13b8fb6b902478a in openmeetings's branch 
refs/heads/master from [~solomax]
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=cd49869 ]

[OPENMEETINGS-1649] initial work on turn server


> HTML5 video need to be implemented
> --
>
> Key: OPENMEETINGS-1649
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1649
> Project: Openmeetings
>  Issue Type: Bug
>  Components: HTML5/Room
>Affects Versions: 4.0.0
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.0.0
>
>
> Flex video in room should be replaced with HTML5 video



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[openmeetings] branch master updated: [OPENMEETINGS-1649] initial work on turn server

2018-10-04 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
 new cd49869  [OPENMEETINGS-1649] initial work on turn server
cd49869 is described below

commit cd4986965221fd02df7ea6d2c13b8fb6b902478a
Author: Maxim Solodovnik 
AuthorDate: Fri Oct 5 00:37:07 2018 +0700

[OPENMEETINGS-1649] initial work on turn server
---
 .../apache/openmeetings/core/remote/KStream.java   |  4 --
 .../openmeetings/core/remote/KurentoHandler.java   | 71 --
 openmeetings-server/src/site/site.xml  |  1 +
 .../src/site/xdoc/InstallMediaServer.xml   | 35 +++
 .../apache/openmeetings/web/room/raw-settings.js   | 45 +-
 .../webapp/WEB-INF/classes/applicationContext.xml  |  9 ++-
 6 files changed, 138 insertions(+), 27 deletions(-)

diff --git 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KStream.java
 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KStream.java
index f6642a9..835cb6a 100644
--- 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KStream.java
+++ 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KStream.java
@@ -31,7 +31,6 @@ import org.apache.openmeetings.db.entity.basic.Client;
 import org.apache.openmeetings.db.entity.basic.Client.Activity;
 import org.apache.openmeetings.db.util.ws.RoomMessage;
 import org.apache.openmeetings.db.util.ws.TextRoomMessage;
-import org.apache.wicket.util.string.Strings;
 import org.kurento.client.Continuation;
 import org.kurento.client.EventListener;
 import org.kurento.client.IceCandidate;
@@ -160,9 +159,6 @@ public class KStream implements IKStream {
 
private WebRtcEndpoint createEndpoint(final KurentoHandler h, final 
KStream sender) {
WebRtcEndpoint endpoint = new 
WebRtcEndpoint.Builder(pipeline).build();
-   if (!Strings.isEmpty(h.getTurnServerUrl())) {
-   endpoint.setTurnUrl(h.getTurnServerUrl());
-   }
endpoint.addTag("suid", uid);
endpoint.addTag("uid", sender.getUid());
 
diff --git 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
index 2dae1dc..9d8eeda 100644
--- 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
+++ 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
@@ -21,6 +21,9 @@ package org.apache.openmeetings.core.remote;
 
 import static java.util.concurrent.TimeUnit.MILLISECONDS;
 
+import java.security.InvalidKeyException;
+import java.security.NoSuchAlgorithmException;
+import java.util.Base64;
 import java.util.HashMap;
 import java.util.Map;
 import java.util.Map.Entry;
@@ -29,6 +32,10 @@ import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.Executors;
 import java.util.concurrent.ScheduledExecutorService;
 
+import javax.crypto.Mac;
+import javax.crypto.spec.SecretKeySpec;
+
+import org.apache.directory.api.util.Strings;
 import org.apache.openmeetings.core.util.WebSocketHelper;
 import org.apache.openmeetings.db.entity.basic.Client;
 import org.apache.openmeetings.db.entity.basic.Client.StreamDesc;
@@ -53,6 +60,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 
+import com.github.openjson.JSONArray;
 import com.github.openjson.JSONObject;
 
 public class KurentoHandler {
@@ -61,10 +69,15 @@ public class KurentoHandler {
private final static String TAG_KUID = "kuid";
private final static String TAG_MODE = "mode";
private final static String TAG_ROOM = "roomId";
+   private final static String HMAC_SHA1_ALGORITHM = "HmacSHA1";
public final static String KURENTO_TYPE = "kurento";
private long checkTimeout = 200; //ms
private String kurentoWsUrl;
-   private String turnServerUrl;
+   private String turnUrl;
+   private String turnUser;
+   private String turnSecret;
+   private String turnMode;
+   private int turnTtl = 60; //minutes
private KurentoClient client;
private String kuid;
private ScheduledExecutorService scheduler;
@@ -200,7 +213,13 @@ public class KurentoHandler {
if (MODE_TEST.equals(msg.optString(TAG_MODE))) {
KTestStream user = getTestByUid(_c.getUid());
switch (cmdId) {
-   case "start":
+   case "wannaRecord":
+   WebSocketHelper.sendClient(_c, 
newTestKurentoMsg()
+   .put("id", "canRecord")
+  

[jira] [Commented] (OPENMEETINGS-1649) HTML5 video need to be implemented

2018-10-04 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1649?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638372#comment-16638372
 ] 

ASF subversion and git services commented on OPENMEETINGS-1649:
---

Commit a09d8d0c1de8fbdca531ceef3ed8483e4c735c8b in openmeetings's branch 
refs/heads/master from [~solomax]
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=a09d8d0 ]

[OPENMEETINGS-1649] test check is improved


> HTML5 video need to be implemented
> --
>
> Key: OPENMEETINGS-1649
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1649
> Project: Openmeetings
>  Issue Type: Bug
>  Components: HTML5/Room
>Affects Versions: 4.0.0
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.0.0
>
>
> Flex video in room should be replaced with HTML5 video



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[openmeetings] branch master updated: [OPENMEETINGS-1649] test check is improved

2018-10-04 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
 new a09d8d0  [OPENMEETINGS-1649] test check is improved
a09d8d0 is described below

commit a09d8d0c1de8fbdca531ceef3ed8483e4c735c8b
Author: Maxim Solodovnik 
AuthorDate: Thu Oct 4 22:17:07 2018 +0700

[OPENMEETINGS-1649] test check is improved
---
 .../main/java/org/apache/openmeetings/core/remote/KurentoHandler.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
index 870e338..2dae1dc 100644
--- 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
+++ 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/KurentoHandler.java
@@ -180,7 +180,7 @@ public class KurentoHandler {
}
 
private boolean validTestPipeline(Map tags) {
-   return kuid.equals(tags.get(TAG_KUID)) && 
MODE_TEST.equals(tags.get(TAG_MODE)) && MODE_TEST.equals(tags.get(TAG_MODE));
+   return kuid.equals(tags.get(TAG_KUID)) && 
MODE_TEST.equals(tags.get(TAG_MODE)) && MODE_TEST.equals(tags.get(TAG_ROOM));
}
 
private MediaPipeline createTestPipeline() {



[jira] [Commented] (OPENMEETINGS-1928) Library versions need to be updated (4.0.6)

2018-10-04 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1928?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16638364#comment-16638364
 ] 

ASF subversion and git services commented on OPENMEETINGS-1928:
---

Commit e087979829fa04b9838446ceb935cbfabed345f7 in openmeetings's branch 
refs/heads/4.0.x from [~solomax]
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=e087979 ]

[OPENMEETINGS-1928] packaging should be fixed


> Library versions need to be updated (4.0.6)
> ---
>
> Key: OPENMEETINGS-1928
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1928
> Project: Openmeetings
>  Issue Type: Task
>  Components: BuildsAndReleases
>Affects Versions: 4.0.6
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 4.0.6
>
>
> Library versions need to be updated



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[openmeetings] branch 4.0.x updated: [OPENMEETINGS-1928] packaging should be fixed

2018-10-04 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch 4.0.x
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/4.0.x by this push:
 new e087979  [OPENMEETINGS-1928] packaging should be fixed
e087979 is described below

commit e087979829fa04b9838446ceb935cbfabed345f7
Author: Maxim Solodovnik 
AuthorDate: Thu Oct 4 22:11:40 2018 +0700

[OPENMEETINGS-1928] packaging should be fixed
---
 LICENSE| 100 ++-
 .../src/main/assembly/components/all.xml   | 182 +++--
 openmeetings-webservice/pom.xml|   4 -
 pom.xml|  14 +-
 4 files changed, 75 insertions(+), 225 deletions(-)

diff --git a/LICENSE b/LICENSE
index f521d06..5e69bbc 100644
--- a/LICENSE
+++ b/LICENSE
@@ -258,55 +258,25 @@ webapps/root/WEB-INF/red5-web.properties
 webapps/root/WEB-INF/red5-web.xml
 webapps/root/WEB-INF/web.xml
 
-webapps/openmeetings/WEB-INF/lib/api-all-*.jar
-webapps/openmeetings/WEB-INF/lib/asterisk-java-2.0.2.jar
-webapps/openmeetings/WEB-INF/lib/caldav4j-*.jar
-webapps/openmeetings/WEB-INF/lib/commons-*.jar
-webapps/openmeetings/WEB-INF/lib/cxf-*.jar
-webapps/openmeetings/WEB-INF/lib/derby*.jar
-webapps/openmeetings/WEB-INF/lib/dom4j-2.1.0.jar
-webapps/openmeetings/WEB-INF/lib/fontbox-2.0.8.jar
-webapps/openmeetings/WEB-INF/lib/gson-*.jar
-webapps/openmeetings/WEB-INF/lib/hazelcast-*.jar
-webapps/openmeetings/WEB-INF/lib/jackrabbit-webdav-2.13.5.jar
-webapps/openmeetings/WEB-INF/lib/jackson-annotations*.jar
-webapps/openmeetings/WEB-INF/lib/jackson-databind*.jar
-webapps/openmeetings/WEB-INF/lib/jettison-1.3.8.jar
-webapps/openmeetings/WEB-INF/lib/jodconverter-core-3.0.1-om.jar
-webapps/openmeetings/WEB-INF/lib/jqplot4java-*.jar
-webapps/openmeetings/WEB-INF/lib/jqplot-*.jar
-webapps/openmeetings/WEB-INF/lib/juh-4.1.2.jar
-webapps/openmeetings/WEB-INF/lib/jurt-4.1.2.jar
-webapps/openmeetings/WEB-INF/lib/log4j-1.2.17.jar
-webapps/openmeetings/WEB-INF/lib/neethi-3.1.1.jar
-webapps/openmeetings/WEB-INF/lib/openjpa-*.jar
-webapps/openmeetings/WEB-INF/lib/openjson-*.jar
-webapps/openmeetings/WEB-INF/lib/org.apache.servicemix.bundles.antlr-2.7.7_5.jar
-webapps/openmeetings/WEB-INF/lib/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar
-webapps/openmeetings/WEB-INF/lib/org.apache.servicemix.bundles.xpp3-1.1.4c_7.jar
-webapps/openmeetings/WEB-INF/lib/owasp-java-html-sanitizer-20171016.1.jar
-webapps/openmeetings/WEB-INF/lib/ridl-4.1.2.jar
-webapps/openmeetings/WEB-INF/lib/simple-xml-2.7.1.jar
-webapps/openmeetings/WEB-INF/lib/stax-1.2.0.jar
-webapps/openmeetings/WEB-INF/lib/stax2-api-3.1.4.jar
-webapps/openmeetings/WEB-INF/lib/unoil-4.1.2.jar
-webapps/openmeetings/WEB-INF/lib/wicket*.jar
-webapps/openmeetings/WEB-INF/lib/woodstox-core-*.jar
-webapps/openmeetings/WEB-INF/lib/wsdl4j-1.6.3.jar
-webapps/openmeetings/WEB-INF/lib/xbean-asm6-shaded-*.jar
-webapps/openmeetings/WEB-INF/lib/xml-apis-*.jar
-webapps/openmeetings/WEB-INF/lib/xml-resolver-1.2.jar
-webapps/openmeetings/WEB-INF/lib/xmlschema-core-2.2.3.jar
+webapps/openmeetings/WEB-INF/lib/*.jar
 
 webapps/openmeetings/screenshare/openmeetings-screenshare-*.jar
 
 lib/apache-mime4j-*.jar
+lib/api-all-*.jar
+lib/asterisk-java-2.0.2.jar
 lib/boilerpipe-1.1.0.jar
+lib/caldav4j-*.jar
 lib/commons-*.jar
 lib/cors-filter-2.6.jar
+lib/cxf-*.jar
+lib/derby*.jar
+lib/dom4j-2.1.0.jar
 lib/ehcache-core-2.6.11.jar
 lib/error_prone_annotations*.jar
+lib/fontbox-2.0.8.jar
 lib/geronimo-jpa_2.0_spec-1.1.jar
+lib/gson-*.jar
 lib/guava*.jar
 lib/httpclient-4.5.3.jar
 lib/httpcore-4.4.6.jar
@@ -314,18 +284,44 @@ lib/httpmime-4.5.6.jar
 lib/httpservices-4.5.5.jar
 lib/isoparser-*.jar
 lib/java-property-utils-1.9.1.jar
-lib/jackson-core*.jar
+lib/jackrabbit-webdav-2.13.5.jar
+lib/jackson-*.jar
 lib/jempbox-1.8.13.jar
+lib/jettison-1.3.8.jar
+lib/jodconverter-core-3.0.1-om.jar
+lib/jqplot4java-*.jar
+lib/jqplot-*.jar
+lib/juh-4.1.2.jar
+lib/jurt-4.1.2.jar
+lib/log4j-1.2.17.jar
 lib/metadata-extractor-2.9.1.jar
 lib/mina-*.jar
+lib/neethi-3.1.1.jar
+lib/openjpa-*.jar
+lib/openjson-*.jar
+lib/org.apache.servicemix.bundles.antlr-2.7.7_5.jar
+lib/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar
+lib/org.apache.servicemix.bundles.xpp3-1.1.4c_7.jar
+lib/owasp-java-html-sanitizer-20171016.1.jar
 lib/pdfbox-*.jar
 lib/quartz-2.3.0.jar
 lib/red5-*.jar
+lib/ridl-4.1.2.jar
 lib/rome-1.5.1.jar
 lib/rome-utils-1.5.1.jar
+lib/simple-xml-2.7.1.jar
 lib/spring-*.jar
+lib/stax-1.2.0.jar
+lib/stax2-api-3.1.4.jar
 lib/tagsoup-1.2.1.jar
 lib/tika-*.jar
+lib/unoil-4.1.2.jar
+lib/woodstox-core-*.jar
+lib/wsdl4j-1.6.3.jar
+lib/xbean-asm6-shaded-*.jar
+lib/xml-apis-*.jar
+lib/xml-resolver-1.2.jar
+lib/xmlschema-core-2.2.3.jar
 
 plugins/tomcat-*.jar
 plugins/tomcatplugin-*.jar
@@ -343,8 +339,8 @@ conditions of the following licenses.
 
 For GlassFish components
 
-webapps/openmeeti

[jira] [Commented] (OPENMEETINGS-1944) Bug various

2018-10-04 Thread Alvaro (JIRA)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1944?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16637946#comment-16637946
 ] 

Alvaro commented on OPENMEETINGS-1944:
--

OM 4.0.6 Snapshot 455

Is fixed the replay video, but when press pause becoam a white window.

This is in Firefox and Chrome.

Please take al look the video:

https://drive.google.com/open?id=118VWREs1J5xcQh_Ed5oPdl1dgStvvQMg

> Bug various
> ---
>
> Key: OPENMEETINGS-1944
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1944
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 4.0.6
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 4.0.6
>
> Attachments: Arrows blink.png, odt file upload error.png
>
>
> Snapshot 451 OM 4.0.6
> 4.0.6-SNAPSHOT 870f381 2018-10-01T15:13:52Z
> 1)
>  --- "Public Conference Room" ---
> # When drop a video (recorded in OM or not) to
> whiteboard, can't play (mp4 or avi).
> # When upload a odt file give an error (attached picture).
> 2) 
>  --- "Public Presentation Room" ---
> # When drop a video to whiteboard can't play.
> # If press wheel configuration (cam and mic), the browser
> become blocked and i must reboot the machine.
> 3)
>  --- "Public Video and Whiteboard Room" ---
> # When drop video to whiteboard only play once. The second
> time do nothing.
> 4)
>  --- "Public Video only Room" ---
> # If drop video to whiteboard do nothing (maybe this is the right?)
> 5)
> In any room the arrows in the top-up center-left blink,
> when i do nothing. (Attached picture).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)