This file contains hidden or 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> | |
<body> | |
<video id="v" width="300" height="300"></video> | |
<input id="b" type="button" disabled="true" value="Take Picture"></input> | |
<canvas id="c" style="display:none;" width="300" height="300"></canvas> | |
</body> | |
<script> | |
navigator.getUserMedia({video: true}, function(stream) { | |
var video = document.getElementById("v"); | |
var canvas = document.getElementById("c"); |
This file contains hidden or 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
function doVerifyReceipt(cb, options) { | |
navigator.mozApps.getSelf(function(app) { | |
var record = app.receipt; | |
if (!record) { | |
cb({"error": "Application not installed"}); | |
return; | |
} | |
if (typeof cb !== "function") { | |
throw "Callback not provided in doVerifyReceipt"; |
This file contains hidden or 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
diff --git a/content/media/MediaEngineDefault.cpp b/content/media/MediaEngineDefault.cpp | |
--- a/content/media/MediaEngineDefault.cpp | |
+++ b/content/media/MediaEngineDefault.cpp | |
@@ -1,13 +1,19 @@ | |
/* This Source Code Form is subject to the terms of the Mozilla Public | |
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | |
* You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
#include "MediaEngineDefault.h" | |
+#include "nsDOMFile.h" |
This file contains hidden or 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 public "✰"> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>getUserMedia Video Example</title> | |
</head> | |
<body> | |
<button type="button" onclick="toggle()"> | |
Toggle Video | |
</button> |
This file contains hidden or 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
const Cc = Components.classes; | |
const Ci = Components.interfaces; | |
Components.utils.import("resource://gre/modules/Services.jsm"); | |
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); | |
Cc["@mozilla.org/psm;1"].getService(Ci.nsISupports); | |
let gScriptDone = false; |
This file contains hidden or 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
const {classes: Cc, interfaces: Ci, utils: Cu} = Components; | |
Cu.import("resource://gre/modules/NetUtil.jsm"); | |
// Let's enumerate all available files in ~ | |
function getHomeDir() { | |
let home = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile); | |
home.initWithPath("~"); | |
if (!home.isDirectory()) { | |
alert("that seems wrong..."); |
This file contains hidden or 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> | |
<body> | |
<h1>Device Test</h1> | |
<ul id="contents"> | |
</ul> | |
<video id="tehvideo"/> | |
<audio id="tehaudio"/> | |
<script> | |
var devices; | |
var nav = navigator.QueryInterface(Components.interfaces.nsINavigatorUserMedia); |
This file contains hidden or 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
function myGetUserMedia(constraints, cb) | |
{ | |
function errCb(code) | |
{ | |
cb(code, null); | |
} | |
function successCb(stream) | |
{ |
This file contains hidden or 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
/** | |
* Assume we've connected a PeerConnection with a friend - usually with audio | |
* and/or video. For the time being, always at least include a 'fake' audio | |
* stream - this will be fixed soon. | |
* | |
* connectDataConnection is a temporary function that will soon disappear. | |
* The two sides need to use inverted copies of the two numbers (eg. 5000, 5001 | |
* on one side, 5001, 5000 on the other) | |
*/ | |
pc.connectDataConnection(5001, 5000); |
This file contains hidden or 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
function go() { | |
var userId = prompt('Username?', 'Guest'); | |
checkIfUserExists(userId); | |
} | |
var USERS_LOCATION = 'https://SampleChat.firebaseIO-demo.com/users'; | |
function userExistsCallback(userId, exists) { | |
if (exists) { | |
alert('user ' + userId + ' exists!'); |
OlderNewer