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> | |
| <html> | |
| <head> | |
| <title>MQTT signaling</title> | |
| <meta charset="urt-8"/> | |
| <script src="http://git.eclipse.org/c/paho/org.eclipse.paho.mqtt.javascript.git/plain/src/mqttws31.js"></script> | |
| </head> | |
| <body> | |
| <button type="button" onclick="startVideo();">Start video</button> | |
| <button type="button" onclick="stopVideo();">Stop 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
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using iText.Kernel.Pdf; | |
| using iText.Kernel.Pdf.Canvas.Parser; | |
| using iText.Kernel.Pdf.Canvas.Parser.Listener; | |
| using iText.Kernel.Pdf.Canvas.Parser.Data; | |
| using iText.Kernel.Pdf.Canvas; |
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 React, { useEffect, useState } from 'react'; | |
| import { ActivityIndicator, View } from 'react-native'; | |
| import { WebView } from 'react-native-webview'; | |
| import { AuthHeaders, getCognitoHeaders } from '@root/cognito/cognitoSessionInfo'; | |
| import { useAppSelector } from '@hooks/hooks'; | |
| export interface IAuthenticatedWebviewProps { | |
| url: string; | |
| injectedJavaScript?: any; | |
| onShouldStartLoadWithRequest: any; |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using Amazon.Polly; //nuget AWSSDK.Core AWSSDK.Polly | |
| using Amazon.Polly.Model; | |
| using NAudio.Wave; //nuget NAudio | |
| public class SpeechGenerator | |
| { | |
| public string awsAccessKey = ""; |