add option to use collabora server

This commit is contained in:
makaveli10
2023-07-13 00:59:48 +05:30
parent 7accea1fdf
commit a634a6d6d3
10 changed files with 109 additions and 13 deletions
+3 -4
View File
@@ -1,4 +1,3 @@
console.log("Content script injected.");
let socket = null;
let isCapturing = false;
let mediaStream = null;
@@ -39,8 +38,8 @@ function resampleTo16kHZ(audioData, origSampleRate = 44100) {
return resampledData;
}
function startRecording() {
socket = new WebSocket("ws://localhost:9090/");
function startRecording(host, port) {
socket = new WebSocket(`ws://${host}:${port}/`);
socket.onopen = function(e) {
socket.send("handshake");
};
@@ -210,7 +209,7 @@ browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
const { action, data } = request;
if (action === "startCapture") {
isCapturing = true;
startRecording();
startRecording(data.host, data.port);
} else if (action === "stopCapture") {
isCapturing = false;
@@ -4,6 +4,7 @@
"version": "1.0",
"description": "Transcribe audio from any webpage.",
"permissions": [
"storage",
"activeTab",
"<all_urls>"
],
+4
View File
@@ -11,5 +11,9 @@
<div class="button" id="startCapture">Start Capture</div>
<div class="button" id="stopCapture" disabled>Stop Capture</div>
</div>
<div class="checkbox-container">
<input type="checkbox" id="useServerCheckbox">
<label for="useServerCheckbox">Use Collabora Whisper-Live Server</label>
</div>
</body>
</html>
+53 -3
View File
@@ -2,11 +2,49 @@ document.addEventListener("DOMContentLoaded", function() {
var startButton = document.getElementById("startCapture");
var stopButton = document.getElementById("stopCapture");
const useServerCheckbox = document.getElementById("useServerCheckbox");
browser.storage.local.get("capturingState")
.then(function(result) {
var capturingState = result.capturingState;
if (capturingState && capturingState.isCapturing) {
toggleCaptureButtons(true);
} else {
toggleCaptureButtons(false);
}
// Enable the startButton
startButton.disabled = false;
})
.catch(function(error) {
console.error("Error retrieving capturing state:", error);
// Enable the startButton
startButton.disabled = false;
});
browser.storage.local.get("useServerState", ({ useServerState }) => {
if (useServerState !== undefined) {
useServerCheckbox.checked = useServerState;
}
});
startButton.addEventListener("click", function() {
let host = "localhost";
let port = "9090";
const useCollaboraServer = useServerCheckbox.checked;
if (useCollaboraServer){
host = "transcription.kurg.org"
port = "7090"
}
browser.tabs.query({ active: true, currentWindow: true })
.then(function(tabs) {
browser.tabs.sendMessage(tabs[0].id, { action: "startCapture" });
browser.tabs.sendMessage(
tabs[0].id, { action: "startCapture", data: {host, port} });
toggleCaptureButtons(true);
browser.storage.local.set({ capturingState: { isCapturing: true } })
.catch(function(error) {
console.error("Error storing capturing state:", error);
});
})
.catch(function(error) {
console.error("Error sending startCapture message:", error);
@@ -18,8 +56,11 @@ document.addEventListener("DOMContentLoaded", function() {
.then(function(tabs) {
browser.tabs.sendMessage(tabs[0].id, { action: "stopCapture" })
.then(function(response) {
console.log(response);
toggleCaptureButtons(false);
browser.storage.local.set({ capturingState: { isCapturing: false } })
.catch(function(error) {
console.error("Error storing capturing state:", error);
});
})
.catch(function(error) {
console.error("Error sending stopCapture message:", error);
@@ -34,5 +75,14 @@ document.addEventListener("DOMContentLoaded", function() {
function toggleCaptureButtons(isCapturing) {
startButton.disabled = isCapturing;
stopButton.disabled = !isCapturing;
useServerCheckbox.disabled = isCapturing; // Disable checkbox if capturing
startButton.classList.toggle("disabled", isCapturing);
stopButton.classList.toggle("disabled", !isCapturing);
}
});
// Save the checkbox state when it's toggled
useServerCheckbox.addEventListener("change", () => {
const useServerState = useServerCheckbox.checked;
browser.storage.local.set({ useServerState });
});
});
+4
View File
@@ -101,3 +101,7 @@ label {
width: 30px;
text-align: center;
}
.checkbox-container {
padding: 10px;
}