This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test getusermedia</title> | |
</head> | |
<body> | |
<div id="result"></div> | |
<script> | |
navigator.mediaDevices.getUserMedia({audio:true,video:true}).then( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.priologic.easyrtcMedia; | |
import android.opengl.GLES11Ext; | |
import android.opengl.GLES20; | |
import java.nio.ByteBuffer; | |
import java.nio.FloatBuffer; | |
import org.webrtc.*; | |
/** | |
* Class for converting OES textures RGBA. It should be constructed on a thread with | |
* an active EGL context, and only be used from that thread. It is used by the EasyrtcSingleFrameCapturer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Note: lines beginning with # are comments I typed in at the command line at the time. | |
# | |
Script started on Fri 10 Mar 2017 04:17:29 PM PST | |
[ESC]]0;root@eric-linux: ~root@eric-linux:~# /opt/janus/bin/janus | |
/opt/janus/bin/janus: /usr/local/lib/libldap_r-2.4.so.2: no version information available (required by /usr/lib/x86_64-linux-gnu/libcurl.so.4) | |
/opt/janus/bin/janus: /usr/local/lib/liblber-2.4.so.2: no version information available (required by /usr/lib/x86_64-linux-gnu/libcurl.so.4) | |
--------------------------------------------------- | |
Starting Meetecho Janus (WebRTC Gateway) v0.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global define, module, require */ | |
/*! | |
Script: easyrtc_lang.js | |
Provides lang file. | |
About: License | |
Copyright (c) 2016, Priologic Software Inc. | |
All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global define, module, require */ | |
/*! | |
Script: easyrtc_lang.js | |
Provides lang file. | |
About: License | |
Copyright (c) 2016, Priologic Software Inc. | |
All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Event listeners used by EasyRTC. Many of these can be overridden using server options. | |
* | |
* @module easyrtc_default_event_listeners | |
* @author Priologic Software, [email protected] | |
* @copyright Copyright 2015 Priologic Software. All rights reserved. | |
* @license BSD v2, see LICENSE file in module root folder. | |
*/ | |
var util = require("util"); // General utility functions core module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<select id="xx"> | |
<option value="volvo">Volvo</option> | |
<option value="saab">Saab</option> | |
<option value="opel">Opel</option> | |
<option value="audi">Audi</option> | |
</select> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var selfEasyrtcid = ""; | |
function connect() { | |
easyrtc.setVideoDims(640,480); | |
easyrtc.setRoomOccupantListener(convertListToButtons); | |
easyrtc.easyApp("easyrtc.audioVideoSimple", "selfVideo", ["callerVideo"], loginSuccess, loginFailure); | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--skip--> | |
<title>EasyRTC Demo: Data Channel File-sharing</title> | |
<link rel="stylesheet" type="text/css" href="css/landing.css" /> | |
<link rel="stylesheet" type="text/css" href="/easyrtc/easyrtc.css" /> | |
<!--hide--> | |
<!-- Prettify Code --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title> child</title> | |
</head> | |
<script type="text/javascript"> | |
function dumpit() { | |
var div = document.getElementById("dumpzone"); | |
var parentUrl; | |
if (parent !== window){ |
NewerOlder