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
import gulp from 'gulp'; | |
import gulpLoadPlugins from 'gulp-load-plugins'; | |
import path from 'path'; | |
import del from 'del'; | |
import runSequence from 'run-sequence'; | |
const plugins = gulpLoadPlugins(); | |
const paths = { | |
js: ['./**/*.js', '!dist/**', '!node_modules/**', '!coverage/**'], |
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> | |
<head> | |
<title>WebRTC P2P </title> | |
<script src="https://unpkg.com/[email protected]/dist/peerjs.min.js"></script> | |
</head> | |
<body> | |
<video autoplay="true" id="me" ></video> | |
<br/> |
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> | |
<head> | |
<title>WebRTC P2P Recording</title> | |
<script src="https://unpkg.com/[email protected]/dist/peerjs.min.js"></script> | |
<script src="https://www.WebRTC-Experiment.com/RecordRTC.js"></script> | |
</head> | |
<body> | |
<video autoplay="true" id="me"></video> |
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
{ | |
"accountId": "6b6bf5a8a9e5", | |
"bucketId": "a60b064b5f15eae87a190e15", | |
"bucketInfo": {}, | |
"bucketName": "videostream-s3", | |
"bucketType": "allPublic", | |
"corsRules": [ | |
{ | |
"allowedHeaders": [ | |
"authorization", |
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
import { Injectable } from '@angular/core'; | |
import * as AWS from 'aws-sdk/global'; | |
import * as S3 from 'aws-sdk/clients/s3'; | |
@Injectable({ | |
providedIn: 'root' | |
}) | |
export default class UploadService { | |
constructor() { } |
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
class SinglePackageTitleBlock extends StatelessWidget { | |
var services; | |
SinglePackageTitleBlock(var services) | |
{ | |
this.services = services; | |
} | |
@override | |
Widget build(BuildContext context) { | |
return Container( | |
margin: EdgeInsets.fromLTRB(1, 0, 0, 0), |