mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b6276b005e | |||
| 8f2024df14 | |||
| 0f548b3012 | |||
| 7fbf0c59d1 | |||
| ef20a08d9f | |||
| 9a3f84efc8 | |||
| 6813b45c80 | |||
| 773e8b471c | |||
| 013c9b5f2c | |||
| 18e791d56e | |||
| 1ed386fcf4 | |||
| c98d7761b2 | |||
| d09b75a6cd | |||
| 0427056f65 | |||
| 8076fe92f5 | |||
| c2e6c4a186 | |||
| 826381d858 | |||
| 4ac59e7597 | |||
| b5d374498f | |||
| 567ec0aa1b | |||
| 906929169e | |||
| df5ac8913d | |||
| 30ef4d4738 | |||
| 9696434145 | |||
| d84d4f6dee | |||
| 862d4b7a96 | |||
| 97075e79a6 | |||
| 9fc44bea63 | |||
| 9d5b71e2c7 | |||
| fdfbdec75a | |||
| 977f2f8244 | |||
| ecece5009e | |||
| 66762b8251 | |||
| 6f722b68e1 |
@@ -10,7 +10,144 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Manage document types</h1>
|
||||
|
||||
<label for="existingDocs">Vorhandene Dokumententypen auswählen (optional):</label>
|
||||
<!--Drop Down-->
|
||||
<select name="existingDocs" id="existingDocs">
|
||||
<option value="newDoc">-- Neuen Dokumententyp erstellen --</option>
|
||||
</select>
|
||||
|
||||
<div id="docNameWrapper">
|
||||
<label for="docName">Name des Dokumententyps:</label>
|
||||
<input type="text" id="docName" placeholder="Gib hier den Namen für den Dokumententyp ein">
|
||||
</div>
|
||||
|
||||
<label for="prompt">Dein Prompt:</label>
|
||||
<textarea id="prompt" placeholder="Schreibe hier den Prompt für dein Dokumententyp..."></textarea>
|
||||
|
||||
<div class="buttons">
|
||||
<a href="index.html">
|
||||
<button id="goBackBtn">Abbrechen</button>
|
||||
</a>
|
||||
<button id="deleteBtn">Dokumententyp löschen</button>
|
||||
<button id="generateBtn">Dokumententyp speichern</button>
|
||||
</div>
|
||||
|
||||
<div id="result"></div>
|
||||
</div>
|
||||
|
||||
<script src="languages.js"></script>
|
||||
<script>
|
||||
const goBackBtn = document.getElementById("goBackBtn");
|
||||
const generateBtn = document.getElementById("generateBtn");
|
||||
const deleteBtn = document.getElementById("deleteBtn");
|
||||
const existingDocs = document.getElementById("existingDocs");
|
||||
const docNameInput = document.getElementById("docName");
|
||||
const promptInput = document.getElementById("prompt");
|
||||
const resultDiv = document.getElementById("result");
|
||||
const exampleText = "";
|
||||
|
||||
// dokumente speichern
|
||||
generateBtn.addEventListener("click", () => {
|
||||
const name = docNameInput.value.trim();
|
||||
const content = promptInput.value.trim();
|
||||
if (!name || !content) {
|
||||
resultDiv.textContent = "Bitte Name des Dokumententyps und Prompt ausfüllen.";
|
||||
setTimeout(() => {
|
||||
resultDiv.textContent = "";
|
||||
}, 3000);
|
||||
return;
|
||||
}
|
||||
window.api.saveTxtFile(name, content).then();
|
||||
resultDiv.textContent = "Dokumententyp erfolgreich gespeichert!";
|
||||
setTimeout(() => {
|
||||
resultDiv.textContent = "";
|
||||
}, 3000);
|
||||
reloadDocuments();
|
||||
|
||||
});
|
||||
|
||||
// dokumente löschen
|
||||
deleteBtn.addEventListener("click", () => {
|
||||
const name = docNameInput.value.trim();
|
||||
|
||||
if (!name) {
|
||||
resultDiv.textContent = "Bitte Name des Dokumententyps angeben.";
|
||||
setTimeout(() => {
|
||||
resultDiv.textContent = "";
|
||||
}, 3000);
|
||||
return;
|
||||
}
|
||||
|
||||
const confirmDelete = confirm(
|
||||
`Möchtest du den Dokumententyp "${name}" wirklich löschen?`
|
||||
);
|
||||
|
||||
if (!confirmDelete) return;
|
||||
|
||||
window.api.deleteTxtFile(name).then((success) => {
|
||||
if (success) {
|
||||
resultDiv.textContent = "Dokumententyp erfolgreich gelöscht!";
|
||||
reloadDocuments();
|
||||
existingDocs.value = "newDoc";
|
||||
existingDocs.dispatchEvent(new Event("change"));
|
||||
} else {
|
||||
resultDiv.textContent = "Dokumententyp konnte nicht gelöscht werden.";
|
||||
}
|
||||
|
||||
setTimeout(() => {
|
||||
resultDiv.textContent = "";
|
||||
}, 3000);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
//function to load existingDoc options to the drop down list
|
||||
const select = document.getElementById('existingDocs');
|
||||
|
||||
window.api.getTxtFiles().then(files => {
|
||||
reloadDocuments();
|
||||
});
|
||||
|
||||
//content anzeigen
|
||||
const docNameWrapper = document.getElementById("docNameWrapper");
|
||||
|
||||
existingDocs.addEventListener("change", async () => {
|
||||
const selected = existingDocs.value;
|
||||
|
||||
if (selected === "newDoc") {
|
||||
docNameWrapper.classList.remove("hidden");
|
||||
docNameInput.value = "";
|
||||
promptInput.value = exampleText;
|
||||
return;
|
||||
}
|
||||
docNameWrapper.classList.add("hidden");
|
||||
|
||||
const content = await window.api.readTxtFile(selected);
|
||||
promptInput.value = content;
|
||||
docNameInput.value = selected.replace(".txt", "");
|
||||
});
|
||||
|
||||
//reload drop down
|
||||
function reloadDocuments() {
|
||||
[...existingDocs.querySelectorAll('option:not([value="newDoc"])')]
|
||||
.forEach(o => o.remove());
|
||||
|
||||
window.api.getTxtFiles().then(files => {
|
||||
files.forEach(file => {
|
||||
const option = document.createElement('option');
|
||||
option.value = file;
|
||||
option.textContent = file
|
||||
.replace('.txt', '') // Endung entfernen
|
||||
.replace(/_/g, ' ') // Leerzeichen ersetzen
|
||||
.replace(/\b\w/g, c => c.toUpperCase()) // ersten Buchstaben groß
|
||||
existingDocs.appendChild(option);
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
@@ -0,0 +1,320 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Anleitung</title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background: #f0f2f5;
|
||||
margin: 0;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* ===== CONTAINER ===== */
|
||||
.container {
|
||||
background: white;
|
||||
width: 90%;
|
||||
max-width: 800px;
|
||||
height: 85vh;
|
||||
/* feste Höhe */
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* ===== FIXER TOP-BEREICH ===== */
|
||||
.top-bar {
|
||||
padding: 15px 20px;
|
||||
border-bottom: 1px solid #eee;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
.back-btn,
|
||||
.toc-toggle {
|
||||
background: #007BFF;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 8px 14px;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.back-btn:hover,
|
||||
.toc-toggle:hover {
|
||||
background: #0056b3;
|
||||
}
|
||||
|
||||
/* ===== TOC ===== */
|
||||
.toc-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.toc {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 45px;
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
||||
padding: 10px;
|
||||
min-width: 220px;
|
||||
display: none;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.toc a {
|
||||
display: block;
|
||||
padding: 8px 10px;
|
||||
color: #007BFF;
|
||||
text-decoration: none;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.toc a:hover {
|
||||
background: #f0f2f5;
|
||||
}
|
||||
|
||||
.toc.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* ===== SCROLLBEREICH ===== */
|
||||
.content {
|
||||
padding: 30px;
|
||||
overflow-y: auto;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* Inhalt */
|
||||
h1 {
|
||||
text-align: center;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.step {
|
||||
margin-bottom: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.step h2 {
|
||||
color: #0056b3;
|
||||
}
|
||||
|
||||
.step h3 {
|
||||
color: #555;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.step p {
|
||||
color: #555;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.step img {
|
||||
width: 100%;
|
||||
max-height: 350px;
|
||||
object-fit: contain;
|
||||
border-radius: 8px;
|
||||
margin-top: 15px;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<!-- FIXER OBERER TEIL -->
|
||||
<div class="top-bar">
|
||||
<a href="index.html">
|
||||
<button class="back-btn">Zurück</button>
|
||||
</a>
|
||||
|
||||
<h1>Programm Anleitung</h1>
|
||||
|
||||
|
||||
<div class="toc-wrapper">
|
||||
<button class="toc-toggle" onclick="toggleTOC()">Inhaltsverzeichnis</button>
|
||||
<div class="toc" id="toc">
|
||||
<a href="#convertVid" onclick="closeTOC()">Video zu Dokument umwandeln</a>
|
||||
<a href="#firstStep" onclick="closeTOC()">Schritt 1 - Video auswählen</a>
|
||||
<a href="#secondStep" onclick="closeTOC()">Schritt 2 - Konfiguration</a>
|
||||
<a href="#thirdStep" onclick="closeTOC()">Schritt 3 - Dokumententyp auswählen</a>
|
||||
<a href="#fourthStep" onclick="closeTOC()">Schritt 4 - Bestätigen</a>
|
||||
<a href="#fifthStep" onclick="closeTOC()">Schritt 5 - Sprecher identifizieren</a>
|
||||
<a href="#sixthStep" onclick="closeTOC()">Schritt 6 - Dokument speichern</a>
|
||||
<a href="#createDoc" onclick="closeTOC()">Dokumententyp erstellen</a>
|
||||
<a href="#editDoc" onclick="closeTOC()">Dokumententyp bearbeiten</a>
|
||||
<a href="#deleteDoc" onclick="closeTOC()">Dokumententyp löschen</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- NUR DIESER TEIL SCROLLT -->
|
||||
<div class="content">
|
||||
|
||||
<div class="step" id="convertVid">
|
||||
<h2>Video in ein Dokument umwandeln.</h2>
|
||||
|
||||
<div class="step" id="firstStep">
|
||||
<h3>Schritt 1 - Video auswählen</h3>
|
||||
<p id="firstStep">
|
||||
- Ziehe eine Videodatei in das Drag-and-Drop-Feld oder klicke auf <strong>„Video
|
||||
suchen“</strong>,<br>
|
||||
um eine Datei über deinen Dateibrowser auszuwählen.<br>
|
||||
- Klicke anschließend auf <strong>Schritt 2</strong> oder auf den blauen Pfeil rechts, um
|
||||
fortzufahren.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step" id="secondStep">
|
||||
<h3>Schritt 2 - Konfiguration</h3>
|
||||
<p>
|
||||
- Wähle im ersten Auswahlmenü die zu verwendende <strong>KI</strong>.<br>
|
||||
- Wähle im zweiten Auswahlmenü das zu verwendende <strong>Transkriptions-Tool</strong>.<br>
|
||||
- Wähle im dritten Auswahlmenü das <strong>Dateiformat</strong> des zu erstellenden
|
||||
Dokuments.<br>
|
||||
- Wähle im vierten Auswahlmenü die <strong>Sprache</strong> des zu erstellenden Dokuments.<br>
|
||||
- Klicke anschließend auf <strong>Schritt 3</strong> oder auf den blauen Pfeil rechts, um
|
||||
fortzufahren.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step" id="thirdStep">
|
||||
<h3>Schritt 3 - Dokumententyp auswählen</h3>
|
||||
<p>
|
||||
- Wähle einen Dokumententyp über die Checkbox oder einen zuvor erstellten Dokumententyp aus dem
|
||||
Dropdown-Menü aus.<br>
|
||||
- Klicke anschließend auf <strong>Schritt 4</strong> oder auf den blauen Pfeil rechts, um
|
||||
fortzufahren.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step" id="fourthStep">
|
||||
<h3>Schritt 4 - Bestätigen</h3>
|
||||
<p>
|
||||
Klicke auf <strong>„Submit“</strong>, um die Dokumentengenerierung zu starten.<br>
|
||||
Während der Verarbeitung werden vier Statuspunkte angezeigt, die sich schrittweise von rot zu
|
||||
grün färben und den aktuellen Fortschritt darstellen:
|
||||
<br><br>
|
||||
Punkt 1: Upload und Vorbereitung der Videodatei.<br>
|
||||
Punkt 2: Transkription des Videoinhalts.<br>
|
||||
Punkt 3: KI-gestützte Verarbeitung und Dokumentenerstellung.<br>
|
||||
Punkt 4: Abschluss der Generierung und Bereitstellung des Dokuments.
|
||||
<br><br>
|
||||
Nach erfolgreichem Abschluss klicke auf <strong>Schritt 5</strong> oder auf den blauen Pfeil
|
||||
rechts, um fortzufahren.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step" id="fifthStep">
|
||||
<h3>Schritt 5 - Sprecher identifizieren</h3>
|
||||
<p>
|
||||
Im Auswahlmenü kannst du einen erkannten Sprecher auswählen.<br>
|
||||
Über den Play-Button lässt sich ein gesprochener Satz anhören, um den Sprecher eindeutig zu
|
||||
identifizieren.<br>
|
||||
Mit dem Lautsprecher-Symbol kannst du die Lautstärke anpassen.<br>
|
||||
Über das Drei-Punkte-Menü lässt sich die Wiedergabegeschwindigkeit einstellen.<br><br>
|
||||
|
||||
Im Textfeld <strong>„Write name“</strong> gibst du den tatsächlichen Namen des Sprechers ein,
|
||||
damit dieser im Dokument
|
||||
anstelle von Platzhaltern wie z. B. „Sprecher A“ angezeigt wird.<br>
|
||||
Bestätige die Eingabe mit <strong>„Rename Speaker“</strong>.<br><br>
|
||||
|
||||
Mit dem Button <strong>„Rewrite Document“</strong> werden anschließend alle
|
||||
Sprecherbezeichnungen im Dokument ersetzt.<br><br>
|
||||
|
||||
Klicke danach auf <strong>Schritt 6</strong> oder auf den blauen Pfeil rechts, um fortzufahren.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step" id="sixthStep">
|
||||
<h3>Schritt 6 - Dokument speichern</h3>
|
||||
<p>
|
||||
Klicke auf <strong>„Download“</strong>, um das Dokument zu speichern.<br>
|
||||
Es öffnet sich anschließend ein Dateiexplorer, in dem du den gewünschten Speicherort auswählen
|
||||
kannst.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="step" id="createDoc">
|
||||
<h2>Dokumententyp erstellen</h2>
|
||||
<p>
|
||||
- Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
||||
verwalten“</strong>.<br>
|
||||
- Wähle anschließend im Auswahlmenü die Option <strong>„-- Neuen Dokumententyp erstellen
|
||||
--“</strong>.<br>
|
||||
- Vergib einen aussagekräftigen Namen für den neuen Dokumententyp.<br>
|
||||
- Formuliere den Prompt für die KI-gestützte Verarbeitung sorgfältig.<br>
|
||||
- Klicke auf <strong>Dokumententyp speichern</strong>.<br><br>
|
||||
<strong>Hinweis:</strong> <br>Der eingegebene Prompt wird unverändert an einen KI-Dienst
|
||||
übermittelt.
|
||||
Achte daher unbedingt auf die Einhaltung der geltenden Datenschutzrichtlinien und gib keine
|
||||
sensiblen oder personenbezogenen Daten ein.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="step" id="editDoc">
|
||||
<h2>Dokumententyp bearbeiten</h2>
|
||||
<p>
|
||||
- Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
||||
verwalten“</strong>.<br>
|
||||
- Wähle anschließend im Auswahlmenü den zu bearbeitenden Dokumententyp aus.<br>
|
||||
- Überarbeite den bestehenden KI-Prompt oder formuliere einen neuen Prompt.<br>
|
||||
- Klicke abschließend auf <strong>„Dokumententyp speichern“</strong>.<br><br>
|
||||
|
||||
<strong>Hinweis:</strong><br>
|
||||
Der eingegebene Prompt wird unverändert an einen KI-Dienst übermittelt.
|
||||
Achte daher unbedingt auf die Einhaltung der geltenden Datenschutzrichtlinien und gib keine
|
||||
sensiblen oder personenbezogenen Daten ein.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="step" id="deleteDoc">
|
||||
<h2>Dokumententyp löschen</h2>
|
||||
<p> - Öffne oben links das Burgermenü und wähle den Punkt <strong>„Dokumententypen
|
||||
verwalten“</strong>.<br>
|
||||
- Wähle anschließend im Auswahlmenü den zu löschenden Dokumententyp aus.<br>
|
||||
- Klicke abschließend auf <strong>„Dokumententyp löschen“</strong>.<br><br>
|
||||
|
||||
<strong>Hinweis:</strong><br>
|
||||
Nach Bestätigung des Löschvorgangs kann der Dokumententyp nicht wiederhergestellt werden.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleTOC() {
|
||||
document.getElementById("toc").classList.toggle("show");
|
||||
}
|
||||
|
||||
function closeTOC() {
|
||||
document.getElementById("toc").classList.remove("show");
|
||||
}
|
||||
|
||||
document.addEventListener("click", function (e) {
|
||||
const toc = document.getElementById("toc");
|
||||
const toggle = document.querySelector(".toc-toggle");
|
||||
|
||||
if (!toc.contains(e.target) && !toggle.contains(e.target)) {
|
||||
toc.classList.remove("show");
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 154 KiB |
+188
-64
@@ -1,14 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title id="title">Video to document</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lc-select@1.3.0/themes/light.css">
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/lc-select@1.3.0/themes/light.css"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<body>
|
||||
<div id="h1-wrapper">
|
||||
<section class="p-menu1">
|
||||
<nav id="navbar" class="navigation" role="navigation">
|
||||
@@ -20,7 +23,9 @@
|
||||
</label>
|
||||
|
||||
<nav class="menu1">
|
||||
<button id="customDocBtn" onclick="showCD()">Manage document types</button>
|
||||
<button id="customDocBtn" onclick="showCD()">
|
||||
Manage document types
|
||||
</button>
|
||||
<a href="help_page.html" class="li1">Help</a>
|
||||
</nav>
|
||||
</nav>
|
||||
@@ -29,10 +34,8 @@
|
||||
<h1 id="h1">Video to document</h1>
|
||||
|
||||
<div class="gui-language">
|
||||
<!-- to do: Ausprobieren mit li, a oder button, im Notfall ohne Flaggen Icons, kein hover-->
|
||||
<select name="language_option" id="language_option"></select>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="step-nav">
|
||||
@@ -49,24 +52,34 @@
|
||||
|
||||
<!-- Visible middle part-->
|
||||
<div class="mitte" id="mitte">
|
||||
|
||||
<!--Costum document section-->
|
||||
<div class="container" id="cdContainer" style="display:none;">
|
||||
<div class="container" id="cdContainer" style="display: none">
|
||||
<h1 id="cd_h1">Manage document types</h1>
|
||||
|
||||
<label for="existingDocs" id="cd_existingDocs">Select existing documents (optional):</label>
|
||||
<label for="existingDocs" id="cd_existingDocs"
|
||||
>Select existing documents (optional):</label
|
||||
>
|
||||
<!--Drop Down-->
|
||||
<select name="existingDocs" id="existingDocs">
|
||||
<option value="newDoc" id="newDoc">-- Create new document --</option>
|
||||
<option value="newDoc" id="newDoc">
|
||||
-- Create new document --
|
||||
</option>
|
||||
</select>
|
||||
|
||||
<div id="docNameWrapper">
|
||||
<label for="docName" id="cd_docName">Document name:</label>
|
||||
<input type="text" id="docName" placeholder="Enter the document name here">
|
||||
<input
|
||||
type="text"
|
||||
id="docName"
|
||||
placeholder="Enter the document name here"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<label for="prompt" id="cd_promt">Your prompt:</label>
|
||||
<textarea id="prompt" placeholder="Type the prompt for your document here..."></textarea>
|
||||
<textarea
|
||||
id="prompt"
|
||||
placeholder="Type the prompt for your document here..."
|
||||
></textarea>
|
||||
|
||||
<div class="buttons">
|
||||
<button id="goBackBtn">Return</button>
|
||||
@@ -82,20 +95,22 @@
|
||||
<h2 class="h2">Upload your video here:</h2>
|
||||
<div class="upload-container" id="uploadContainer">
|
||||
<p id="p1">Drag and drop video file</p>
|
||||
<video id="previewThumbnail" autoplay="false">
|
||||
</video>
|
||||
<video id="previewThumbnail" autoplay="false"></video>
|
||||
<div class="file-name" id="fileName">No video chosen</div>
|
||||
<div id="thumbnailContainer">
|
||||
<img id="thumbnailImage" style="display:none;">
|
||||
<img id="thumbnailImage" style="display: none" />
|
||||
</div>
|
||||
<button class="custom-btn" id="manualUploadBtn">Search video</button>
|
||||
<input type="file" id="videoUpload" accept="video/*">
|
||||
<button class="custom-btn" id="manualUploadBtn">
|
||||
Search video
|
||||
</button>
|
||||
<input type="file" id="videoUpload" accept="video/*" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Here starts code from step 2-->
|
||||
<div class="step" id="step2" style="display:none;">
|
||||
<div class="step" id="step2" style="display: none">
|
||||
<h2 class="h2">Choose your preferences:</h2>
|
||||
<div class="step2-form">
|
||||
<div class="KI-wrapper">
|
||||
<label id="labelKI">Select ki:</label>
|
||||
<select name="ai_type" id="ai_type"></select>
|
||||
@@ -118,95 +133,204 @@
|
||||
<div class="language-wrapper">
|
||||
<label id="labelLanguage">Select language:</label>
|
||||
|
||||
<select name="document_language_option" id="document_language_option">
|
||||
|
||||
</select>
|
||||
<select
|
||||
name="document_language_option"
|
||||
id="document_language_option"
|
||||
></select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Here starts code from step 3-->
|
||||
|
||||
<!-- Hover Effekt für Dokumentenvorschau, Fragezeichen hinter Text, drüber hoven zeigt Beispieldokument -->
|
||||
<div class="step" id="step3" style="display:none;">
|
||||
<div class="step" id="step3" style="display: none">
|
||||
<div class="checkbox-group">
|
||||
<h2 class="h2">Choose prefered document style:</h2>
|
||||
<div class="checkbox-container">
|
||||
<input type="checkbox" name ="docFormat" id="docFormat" value="followup-report">
|
||||
<input
|
||||
type="checkbox"
|
||||
name="docFormat"
|
||||
id="docFormat"
|
||||
value="followup-report"
|
||||
/>
|
||||
<label id="label_format" for="docFormat">Follow-up Report</label>
|
||||
<div class="figure1">
|
||||
<img
|
||||
class="img-icon"
|
||||
src="icons/question-mark-button-icon--free-clip-art-30.png"
|
||||
/>
|
||||
<img
|
||||
class="img-hover1"
|
||||
src="flags/germany-flag-png-large.jpg"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="checkbox-container">
|
||||
<input type="checkbox" name="docFormat" id="docFormatSummary1" value="agenda">
|
||||
<input
|
||||
type="checkbox"
|
||||
name="docFormat"
|
||||
id="docFormatSummary1"
|
||||
value="agenda"
|
||||
/>
|
||||
<label id="label_summary" for="docFormatSummary">Agenda</label>
|
||||
<div class="figure2">
|
||||
<img
|
||||
class="img-icon"
|
||||
src="icons/question-mark-button-icon--free-clip-art-30.png"
|
||||
/>
|
||||
<img class="img-hover2" src="flags/india-flag-png-large.png" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="checkbox-container">
|
||||
<input type="checkbox" name="docFormat" id="docFormatSummary2" value="result-protocol">
|
||||
<label id="label_summary" for="docFormatSummary">Resultprotocol</label>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="docFormat"
|
||||
id="docFormatSummary2"
|
||||
value="result-protocol"
|
||||
/>
|
||||
<label id="label_summary" for="docFormatSummary"
|
||||
>Resultprotocol</label
|
||||
>
|
||||
<div class="figure3">
|
||||
<img
|
||||
class="img-icon"
|
||||
src="icons/question-mark-button-icon--free-clip-art-30.png"
|
||||
/>
|
||||
<img
|
||||
class="img-hover3"
|
||||
src="flags/united-kingdom-flag-png-large.jpg"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="checkbox-container">
|
||||
<input type="checkbox" name="docFormat" id="docFormatSummary3" value="sprint-planning">
|
||||
<label id="label_summary" for="docFormatSummary">Sprint Planning Note</label>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="docFormat"
|
||||
id="docFormatSummary3"
|
||||
value="sprint-planning"
|
||||
/>
|
||||
<label id="label_summary" for="docFormatSummary"
|
||||
>Sprint Planning Note</label
|
||||
>
|
||||
<div class="figure4">
|
||||
<img
|
||||
class="img-icon"
|
||||
src="icons/question-mark-button-icon--free-clip-art-30.png"
|
||||
/>
|
||||
<img
|
||||
class="img-hover4"
|
||||
src="flags/germany-flag-png-large.jpg"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="checkbox-container">
|
||||
<input type="checkbox" name="docFormat" id="docFormatCustom" value="custom">
|
||||
<select name="customDocumentTypes" id="customDocumentTypes">
|
||||
</select>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="docFormat"
|
||||
id="docFormatCustom"
|
||||
value="custom"
|
||||
/>
|
||||
<select
|
||||
name="customDocumentTypes"
|
||||
id="customDocumentTypes"
|
||||
></select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Here starts code from step 4-->
|
||||
<div class="step" id="step4" style="display:none;">
|
||||
<h2 class="h2">Klick to submit:</h2>
|
||||
<button class="submit-btn" id="submitButton" onclick="checkBoxes()" disabled>Submit</button>
|
||||
<div class="step" id="step4" style="display: none">
|
||||
<h2 class="h2">Click to submit:</h2>
|
||||
<button
|
||||
class="submit-btn"
|
||||
id="submitButton"
|
||||
onclick="checkBoxes()"
|
||||
disabled
|
||||
>
|
||||
Submit
|
||||
</button>
|
||||
|
||||
<div class="testy" id="testy">
|
||||
<div class="box2" id="box1">
|
||||
</div>
|
||||
<div class="box2" id="box1"></div>
|
||||
<p id="box1_p1">---Starting---</p>
|
||||
<div class="box2" id="box2">
|
||||
</div>
|
||||
<div class="box2" id="box2"></div>
|
||||
<p id="box2_p2">---Transkribing---</p>
|
||||
<div class="box2" id="box3">
|
||||
</div>
|
||||
<div class="box2" id="box3"></div>
|
||||
<p id="box3_p3">---Document creation---</p>
|
||||
<div class="box2" id="box4">
|
||||
</div>
|
||||
<div class="box2" id="box4"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Here starts code from step 5-->
|
||||
<div class="step" id="step5" style="display:none;">
|
||||
<div class="step" id="step5" style="display: none">
|
||||
<h2 class="h2">Change names of the speakers:</h2>
|
||||
<div class="speakerView" id="speakerView">
|
||||
<label id="labelSpeaker">Select Speaker:</label>
|
||||
<select name="cur_speaker" id="cur_speaker">
|
||||
</select>
|
||||
</div>
|
||||
<div class="speakerAudio" id="speakerAutio">
|
||||
<label id="labelSpeakerAudio">Selected Speaker:</label>
|
||||
|
||||
<div class="speaker-container">
|
||||
<table class="speaker-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="label-cell">
|
||||
<label id="labelSpeaker" for="cur_speaker"
|
||||
>Select Speaker:</label
|
||||
>
|
||||
</td>
|
||||
<td class="input-cell">
|
||||
<select name="cur_speaker" id="cur_speaker"></select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label-cell">
|
||||
<label id="labelSpeakerAudio">Speaker Audio:</label>
|
||||
</td>
|
||||
<td class="input-cell">
|
||||
<audio controls id="speakerAudioViewer">
|
||||
Currently there is no audio file here.
|
||||
</audio>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label-cell">
|
||||
<label id="labelSpeakerWriter" for="newSpeaker"
|
||||
>New Name:</label
|
||||
>
|
||||
</td>
|
||||
<td class="input-cell">
|
||||
<input
|
||||
type="text"
|
||||
id="newSpeaker"
|
||||
placeholder="Enter new speaker name"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="speaker-button-group">
|
||||
<button id="speakerLocker" onclick="rewriteSpeakerName()">
|
||||
Rename Speaker
|
||||
</button>
|
||||
<button id="speakerResender" onclick="sendSpeakerPackages()">
|
||||
Rewrite Document
|
||||
</button>
|
||||
</div>
|
||||
<div class="speakerWrite" id="speakerWrite">
|
||||
<label id="labelSpeakerWriter">Write name:</label>
|
||||
<input type="text" id="newSpeaker">
|
||||
</div>
|
||||
<div class="speakerButton-group">
|
||||
<button id="speakerLocker" onclick="rewriteSpeakerName()">Rename Speaker</button>
|
||||
<button id="speakerResender" onclick="sendSpeakerPackages()">Rewrite document</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Here starts code from step 6-->
|
||||
<div class="step" id="step6" style="display:none;">
|
||||
<h2 class="h2">Klick to download your document:</h2>
|
||||
<button class="download-btn" id="downloadButton" onclick="fileDownload()">Download</button>
|
||||
<div class="step" id="step6" style="display: none">
|
||||
<h2 class="h2">Click to download your document:</h2>
|
||||
<button
|
||||
class="download-btn"
|
||||
id="downloadButton"
|
||||
onclick="fileDownload()"
|
||||
>
|
||||
Download
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button id="nextBtn" class="navBtn">→</button>
|
||||
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/lc-select@1.3.0/lc_select.min.js"></script>
|
||||
<script src="languages.js"></script>
|
||||
|
||||
+22
-22
@@ -1,7 +1,7 @@
|
||||
var languageOptions = {
|
||||
"eng":{
|
||||
"flagPath": "flags/united-kingdom-flag-png-large.jpg",
|
||||
"labelKI": "Select ki:",
|
||||
"labelKI": "Select AI:",
|
||||
"labelTranscription": "Select transcription:",
|
||||
"labelLanguage": "Select language:",
|
||||
"title": "Video to document",
|
||||
@@ -9,7 +9,7 @@ var languageOptions = {
|
||||
"p1": "Drag and drop video file",
|
||||
"fileName": "No video chosen",
|
||||
"manualUploadBtn": "Search video",
|
||||
"checkbox_group": "Choose prefered document style:",
|
||||
"checkbox_group": "Choose preferred document style:",
|
||||
"label_format": "Meeting report",
|
||||
"label_summary": "Summary with timestamps",
|
||||
"submitButton": "Submit",
|
||||
@@ -27,7 +27,7 @@ var languageOptions = {
|
||||
"speakerResender": "Rewrite document",
|
||||
"downloadButton": "Download",
|
||||
"box1_p1": "---Starting---",
|
||||
"box2_p2": "---Transkribing---",
|
||||
"box2_p2": "---Transcribing---",
|
||||
"box3_p3": "---Document creation---",
|
||||
"labelType": "Select document type:",
|
||||
|
||||
@@ -46,13 +46,13 @@ var languageOptions = {
|
||||
},
|
||||
"de":{
|
||||
"flagPath": "flags/germany-flag-png-large.jpg",
|
||||
"labelKI": "Waehle KI:",
|
||||
"labelTranscription": "Waehle Transkription:",
|
||||
"labelLanguage": "Waehle Sprache:",
|
||||
"labelKI": "Wähle KI:",
|
||||
"labelTranscription": "Wähle Transkription:",
|
||||
"labelLanguage": "Wähle Sprache:",
|
||||
"title": "Video zu Dokument",
|
||||
"h1": "Video zu Dokument",
|
||||
"p1": "Video per Drag & Drop ablegen",
|
||||
"fileName": "Kein Video ausgewaehlt",
|
||||
"fileName": "Kein Video ausgewählt",
|
||||
"manualUploadBtn": "Video suchen",
|
||||
"checkbox_group": "Bevorzugte Dokumentvarianten:",
|
||||
"label_format": "Meeting Bericht",
|
||||
@@ -64,7 +64,7 @@ var languageOptions = {
|
||||
"step_nav4": "Schritt 4",
|
||||
"step_nav5": "Schritt 5",
|
||||
"step_nav6": "Schritt 6",
|
||||
"h2": "Uploade dein Video hier:",
|
||||
"h2": "Lade dein Video hier hoch:",
|
||||
"labelSpeaker": "Wähle Sprecher:",
|
||||
"labelSpeakerAudio": "Ausgewählter Sprecher:",
|
||||
"labelSpeakerWriter": "Schreib Namen:",
|
||||
@@ -72,27 +72,27 @@ var languageOptions = {
|
||||
"speakerResender": "Überschreibe Dokument",
|
||||
"downloadButton": "Download",
|
||||
"box1_p1": "---Startet---",
|
||||
"box2_p2": "---Transkribing---",
|
||||
"box3_p3": "---Dokument kreieren---",
|
||||
"labelType": "Wähle Dokumenttype:",
|
||||
"box2_p2": "---Transkribierung---",
|
||||
"box3_p3": "---Dokument erstellen---",
|
||||
"labelType": "Wähle Dokumenttyp:",
|
||||
|
||||
"customDocBtn": "Dokumenttypen verwalten",
|
||||
"cd_h1": "Dokumenttypen verwalten",
|
||||
"cd_existingDocs": "Vorhandene Dokumente auswählen (optional):",
|
||||
"cd_docName": "Dokument Name",
|
||||
"cd_docName": "Dokumentname",
|
||||
"docName": "Geben Sie hier den Dokumentnamen ein",
|
||||
"cd_promt": "Ihr Prompt:",
|
||||
"prompt": "Geben Sie hier die Eingabeaufforderung für Ihr Dokument ein...",
|
||||
"goBackBtn": "Zurück",
|
||||
"deleteBtn": "Lösche Dokument",
|
||||
"generateBtn": "Speicher Dokument",
|
||||
"generateBtn": "Speichere Dokument",
|
||||
"newDoc": "-- Neues Dokument erstellen --"
|
||||
},
|
||||
"in":{
|
||||
"flagPath": "flags/india-flag-png-large.png",
|
||||
"labelKI": "की का चयन करें:",
|
||||
"labelKI": "KI का चयन करें:",
|
||||
"labelTranscription": "प्रतिलेखन चुनें:",
|
||||
"labelLanguage": "भाषा चुने:",
|
||||
"labelLanguage": "भाषा चुनें:",
|
||||
"title": "दस्तावेज़ के लिए वीडियो",
|
||||
"h1": "दस्तावेज़ के लिए वीडियो",
|
||||
"p1": "वीडियो फ़ाइल खींचें और छोड़ें",
|
||||
@@ -101,7 +101,7 @@ var languageOptions = {
|
||||
"checkbox_group": "पसंदीदा दस्तावेज़ शैली चुनें:",
|
||||
"label_format": "बैठक रिपोर्ट",
|
||||
"label_summary": "टाइमस्टैम्प के साथ सारांश",
|
||||
"submitButton": "जमा करना",
|
||||
"submitButton": "जमा करें",
|
||||
"step_nav1": "स्टेप 1",
|
||||
"step_nav2": "स्टेप 2",
|
||||
"step_nav3": "स्टेप 3",
|
||||
@@ -110,11 +110,11 @@ var languageOptions = {
|
||||
"step_nav6": "स्टेप 6",
|
||||
"h2": "अपना वीडियो यहां अपलोड करें:",
|
||||
"labelSpeaker": "स्पीकर चुनें:",
|
||||
"labelSpeakerAudio": "चयनित वक्ता:",
|
||||
"labelSpeakerAudio": "चयनित स्पीकर:",
|
||||
"labelSpeakerWriter": "नाम लिखें:",
|
||||
"speakerLocker": "स्पीकर का नाम बदलें",
|
||||
"speakerResender": "दस्तावेज़ पुनः लिखें",
|
||||
"downloadButton": "डाउनलोड करना",
|
||||
"speakerResender": "दस्तावेज़ फिर से लिखें",
|
||||
"downloadButton": "डाउनलोड करें",
|
||||
"box1_p1": "---प्रारंभ---",
|
||||
"box2_p2": "---प्रतिलेखन---",
|
||||
"box3_p3": "---दस्तावेज़ निर्माण---",
|
||||
@@ -127,10 +127,10 @@ var languageOptions = {
|
||||
"docName": "यहां दस्तावेज़ का नाम दर्ज करें",
|
||||
"cd_promt": "आपका संकेत:",
|
||||
"prompt": "अपने दस्तावेज़ के लिए प्रॉम्प्ट यहां टाइप करें...",
|
||||
"goBackBtn": "वापस करना",
|
||||
"deleteBtn": "दस्तावेज़ हटाएँ",
|
||||
"goBackBtn": "वापस जाएं",
|
||||
"deleteBtn": "दस्तावेज़ हटाएं",
|
||||
"generateBtn": "दस्तावेज़ सहेजें",
|
||||
"newDoc": "-- नया दस्तावेज़ बनाएँ --"
|
||||
"newDoc": "-- नया दस्तावेज़ बनाएं --"
|
||||
|
||||
}
|
||||
|
||||
|
||||
+37
-13
@@ -264,7 +264,7 @@ Functions used in Step 4
|
||||
|
||||
*/
|
||||
|
||||
//function to check if one checkbox is at least klicked. Final controll function before sending the input to the generation
|
||||
//function to check if one checkbox is at least clicked. Final controll function before sending the input to the generation
|
||||
function checkBoxes() {
|
||||
try {
|
||||
const checkboxes = document.querySelectorAll('input[name="docFormat"]');
|
||||
@@ -308,6 +308,7 @@ function checkBoxes() {
|
||||
const outputType = document.getElementById("output_type");
|
||||
const transcriptionType = document.getElementById("transkript_type");
|
||||
const aiType = document.getElementById("ai_type");
|
||||
const docLanguage = document.getElementById("document_language_option");
|
||||
const sendingPackage = {
|
||||
"video": {
|
||||
"module": "extraction-video-to-audio",
|
||||
@@ -319,9 +320,11 @@ function checkBoxes() {
|
||||
"document": {
|
||||
"module": aiType.value,
|
||||
"type": typeCheckbox,
|
||||
"outputType": outputType.value
|
||||
"outputType": outputType.value,
|
||||
"outputLanguage": docLanguage.value
|
||||
}
|
||||
};
|
||||
console.log(docLanguage.value);
|
||||
window.submit.submit(sendingPackage)
|
||||
} else {
|
||||
alert('The given file is not compatible. These are the available types: [".mp4", ".mov", ".avi", ".mkv"].');
|
||||
@@ -429,19 +432,30 @@ function setSpeakerAudiosValue(valy) {
|
||||
//Function to rewrite the speaker name in the json
|
||||
function rewriteSpeakerName() {
|
||||
try {
|
||||
var tempy = document.getElementById("cur_speaker").value;
|
||||
speakerAudios[tempy].name = document.getElementById("newSpeaker").value;
|
||||
loadSpeakerOptions(speakerAudios);
|
||||
} catch (error) {
|
||||
console.log("\n\n\n" + error + "\n\n\n")
|
||||
const select = document.getElementById("cur_speaker");
|
||||
const newName = document.getElementById("newSpeaker").value.trim();
|
||||
|
||||
if (!newName) {
|
||||
alert("Please enter a new speaker name");
|
||||
return;
|
||||
}
|
||||
}
|
||||
//Function to send the json with the given names back to the program to rewrite the document file
|
||||
function sendSpeakerPackages() {
|
||||
try {
|
||||
window.submitSpeaker.speaker_submit(speakerAudios);
|
||||
|
||||
const selectedIndex = select.selectedIndex;
|
||||
const selectedValue = select.value;
|
||||
|
||||
// Update speakerAudios data
|
||||
speakerAudios[selectedValue].name = newName;
|
||||
|
||||
// Update the specific option text and keep value
|
||||
select.options[selectedIndex].text = newName;
|
||||
select.options[selectedIndex].value = selectedValue;
|
||||
|
||||
// Keep it selected
|
||||
select.selectedIndex = selectedIndex;
|
||||
|
||||
console.log("Speaker renamed:", newName);
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
console.log("Error renaming speaker:", error);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -486,3 +500,13 @@ function reloadDocuments() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function sendSpeakerPackages() {
|
||||
try {
|
||||
window.submitSpeaker.speaker_submit(speakerAudios);
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
|
||||
window.sendSpeakerPackages = sendSpeakerPackages;
|
||||
+235
-28
@@ -11,12 +11,12 @@ body {
|
||||
}
|
||||
|
||||
#h1 {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
position: static;
|
||||
transform: none;
|
||||
margin: 0;
|
||||
z-index: 20;
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#h1-wrapper {
|
||||
@@ -30,6 +30,26 @@ body {
|
||||
margin-bottom: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.gui-language {
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
z-index: 100;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
#language_option {
|
||||
padding: 8px 12px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #ccc;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.upload-container {
|
||||
@@ -85,7 +105,6 @@ body {
|
||||
#previewThumbnail {
|
||||
width: 150px;
|
||||
height: 100px;
|
||||
/*border: 1px dashed black;*/
|
||||
}
|
||||
|
||||
.custom-btn {
|
||||
@@ -108,8 +127,9 @@ body {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
|
||||
#step2 {
|
||||
gap: 25px;
|
||||
.step h2 {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.KI-wrapper {
|
||||
@@ -186,6 +206,100 @@ input[type="file"] {
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
/* Hover effects for all different document options (with placeholders)*/
|
||||
|
||||
.figure1 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.img-hover1 {
|
||||
position: absolute;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
top: 0;
|
||||
right: 40%;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
object-fit: contain;
|
||||
display: none;
|
||||
transition: opacity .2s;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.figure1:hover .img-hover1 {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.figure2 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.img-hover2 {
|
||||
position: absolute;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
top: 0;
|
||||
right: 40%;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
object-fit: contain;
|
||||
display: none;
|
||||
transition: opacity .2s;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.figure2:hover .img-hover2 {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.figure3 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.img-hover3 {
|
||||
position: absolute;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
top: 0;
|
||||
right: 40%;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
object-fit: contain;
|
||||
display: none;
|
||||
transition: opacity .2s;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.figure3:hover .img-hover3 {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.figure4 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.img-hover4 {
|
||||
position: absolute;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
top: 0;
|
||||
right: 40%;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
object-fit: contain;
|
||||
display: none;
|
||||
transition: opacity .2s;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.figure4:hover .img-hover4 {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.img-icon {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
.submit-btn {
|
||||
display: flex;
|
||||
@@ -211,7 +325,7 @@ input[type="file"] {
|
||||
background-color: #FFF;
|
||||
display: flex;
|
||||
width: 780px;
|
||||
height: 500px;
|
||||
height: 550px;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
@@ -220,6 +334,7 @@ input[type="file"] {
|
||||
border-style: solid;
|
||||
border-radius: 6px;
|
||||
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.progressbar {
|
||||
@@ -261,7 +376,10 @@ input[type="file"] {
|
||||
#ai_type,
|
||||
#transkript_type,
|
||||
#language_option {
|
||||
padding: 3px;
|
||||
padding: 8px 12px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #ccc;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.labelDiv {
|
||||
@@ -308,7 +426,7 @@ input[type="file"] {
|
||||
/*panels*/
|
||||
.step {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;;
|
||||
margin-bottom: 40px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 425px;
|
||||
@@ -451,7 +569,14 @@ li {
|
||||
-webkit-transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.menu1 a:first-child {
|
||||
#customDocBtn {
|
||||
border: none;
|
||||
background-color:#1C3B69;
|
||||
font: 700 20px 'Oswald', sans-serif;
|
||||
border-radius: 0%;
|
||||
}
|
||||
|
||||
.menu1 button:first-child {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
@@ -468,7 +593,7 @@ li {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.li1:hover {
|
||||
.li1:hover, #customDocBtn:hover{
|
||||
background-color: #FFF;
|
||||
color: rgb(61, 61, 61);
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
@@ -476,7 +601,27 @@ li {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
#step2,
|
||||
|
||||
|
||||
#step2 {
|
||||
font-size: larger;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.step2-form {
|
||||
width: 100%;
|
||||
max-width: 420px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 24px; /* DAS ist dein Spacing */
|
||||
}
|
||||
|
||||
.step2-row {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
#step3,
|
||||
#step5 {
|
||||
font-size: larger;
|
||||
@@ -487,7 +632,7 @@ li {
|
||||
}
|
||||
|
||||
#step5 {
|
||||
align-items: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.button-group {
|
||||
@@ -511,35 +656,91 @@ li {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.h2 {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
|
||||
.speaker-container {
|
||||
width: 100%;
|
||||
max-width: 700px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.speaker-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.speaker-table tbody tr {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
margin-bottom: 25px;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.label-cell {
|
||||
flex: 0 0 150px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.label-cell label {
|
||||
font-weight: 400;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.input-cell {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
#cur_speaker,
|
||||
#newSpeaker {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #ccc;
|
||||
font-size: 14px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#speakerAudioViewer {
|
||||
width: 100%;
|
||||
height: 35px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.speaker-button-group {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
justify-content: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#speakerLocker,
|
||||
#speakerResender {
|
||||
padding: 10px 20px;
|
||||
margin: 20px auto;
|
||||
padding: 12px 25px;
|
||||
background-color: #007BFF;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.h2 {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
.speakerView,
|
||||
.speakerAudio,
|
||||
.speakerWrite {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
#speakerLocker:hover,
|
||||
#speakerResender:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
|
||||
.container {
|
||||
background: white;
|
||||
padding: 30px;
|
||||
margin-top: 50px;
|
||||
padding: 10px;
|
||||
margin-top: 30px;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
||||
width: 90%;
|
||||
max-width: 650px;
|
||||
}
|
||||
@@ -601,3 +802,9 @@ button:hover {
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.container input,
|
||||
.container textarea,
|
||||
.container select {
|
||||
width: 100%;
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
// Last modified: 2024-06-11 12:28:00
|
||||
// Loading required packages
|
||||
require("./requires.js");
|
||||
console.log(start);
|
||||
@@ -110,9 +111,18 @@ electron.ipcMain.handle('get-module-names', async () => {
|
||||
"ai_modules":[],
|
||||
"transcription_modules":[]
|
||||
}
|
||||
});
|
||||
mapFunctions.forEach(e => {
|
||||
switch(e.type){
|
||||
case "llm":
|
||||
module_array.ai_modules.push({"name": e.name, "displayname": e.displayname})
|
||||
break;
|
||||
case "transcription":
|
||||
module_array.transcription_modules.push({"name": e.name, "displayname": e.displayname})
|
||||
break;
|
||||
}
|
||||
})
|
||||
// console.log(module_array);
|
||||
return module_array;
|
||||
return module_array
|
||||
});
|
||||
|
||||
// electron.ipcMain.on("get_modules", async (event, args) => {
|
||||
@@ -158,9 +168,39 @@ electron.ipcMain.on("file_submit", async (event, args) => {
|
||||
throw new Error("Unknown document type: " + args.document.type);
|
||||
}
|
||||
|
||||
console.log(args);
|
||||
let audiopath = "";
|
||||
let transcriptpath = "";
|
||||
electron.ipcMain.on("file_download", async (event) => {
|
||||
try {
|
||||
if (!globalFinalHtmlPath) {
|
||||
throw new Error("No document generated yet");
|
||||
}
|
||||
|
||||
const format = String(globalArgs?.document?.outputType || "")
|
||||
.replace('.', '')
|
||||
.toLowerCase();
|
||||
|
||||
if (!format) {
|
||||
throw new Error("No output format selected");
|
||||
}
|
||||
|
||||
const outputPath = await mapFunctions
|
||||
.get("htmlDocumentConverter")
|
||||
.convert({
|
||||
inputPath: globalFinalHtmlPath,
|
||||
format,
|
||||
showDialog: true
|
||||
});
|
||||
|
||||
event.sender.send("download_success", {
|
||||
path: outputPath,
|
||||
format
|
||||
});
|
||||
|
||||
} catch (err) {
|
||||
console.error("file_download failed:", err);
|
||||
|
||||
event.sender.send("error", err.message || String(err));
|
||||
}
|
||||
});
|
||||
|
||||
console.log("\n\n Running the Video to Audio Extractor");
|
||||
// This code handles the Video to Audio extraction module call
|
||||
@@ -186,6 +226,29 @@ electron.ipcMain.on("file_submit", async (event, args) => {
|
||||
});
|
||||
|
||||
|
||||
console.log("\n\n Running the Audio to Transcription module");
|
||||
// TODO implement transcription module
|
||||
// This code handles the Audio to Text transcription module call
|
||||
await mapFunctions
|
||||
.get("module-handler")
|
||||
.function(args.transcription.module, audiopath)
|
||||
.then((resp) => {
|
||||
console.log(resp);
|
||||
transcriptpath = resp;
|
||||
curstep++;
|
||||
mainWindow.webContents.send("progress", {
|
||||
curstep: curstep,
|
||||
totalsteps: totalsteps,
|
||||
});
|
||||
})
|
||||
.catch((err) => {
|
||||
mainWindow.webContents.send("error", err);
|
||||
console.log(err);
|
||||
return;
|
||||
});
|
||||
|
||||
|
||||
|
||||
console.log("\n\n Running the Transcription Summarizer module");
|
||||
// This code summarises the transcript, so that it can be used by an llm
|
||||
// await mapFunctions.get("summarize-transcription").function('A:\\programing\\@projects\\video2document\\storage\\transcripts\\IMG_2978.json').then(resp => {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const puppeteer = require('puppeteer');
|
||||
const htmlToDocx = require('html-to-docx');
|
||||
const { execSync } = require('child_process');
|
||||
const os = require('os');
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const puppeteer = require("puppeteer");
|
||||
const htmlToDocx = require("html-to-docx");
|
||||
const { execSync } = require("child_process");
|
||||
const os = require("os");
|
||||
|
||||
const outputDir = path.join(__dirname, "../../../storage/documents");
|
||||
|
||||
@@ -14,7 +14,7 @@ if (!fs.existsSync(outputDir)) {
|
||||
async function showSaveDialog(defaultName, format) {
|
||||
const platform = os.platform();
|
||||
|
||||
if (platform === 'darwin') {
|
||||
if (platform === "darwin") {
|
||||
// macOS
|
||||
const applescript = `
|
||||
set defaultName to "${defaultName}.${format}"
|
||||
@@ -23,13 +23,15 @@ async function showSaveDialog(defaultName, format) {
|
||||
`;
|
||||
|
||||
try {
|
||||
const result = execSync(`osascript -e '${applescript}'`, { encoding: 'utf8' });
|
||||
const result = execSync(`osascript -e '${applescript}'`, {
|
||||
encoding: "utf8",
|
||||
});
|
||||
return result.trim();
|
||||
} catch (err) {
|
||||
if (err.status === 1) return null; // User canceled
|
||||
throw err;
|
||||
}
|
||||
} else if (platform === 'win32') {
|
||||
} else if (platform === "win32") {
|
||||
const safeName = decodeURIComponent(defaultName);
|
||||
|
||||
const powershell = `
|
||||
@@ -44,8 +46,8 @@ async function showSaveDialog(defaultName, format) {
|
||||
|
||||
try {
|
||||
const result = execSync(
|
||||
`powershell -NoProfile -Command "${powershell.replace(/\r?\n/g, ' ')}"`,
|
||||
{ encoding: 'utf8' }
|
||||
`powershell -NoProfile -Command "${powershell.replace(/\r?\n/g, " ")}"`,
|
||||
{ encoding: "utf8" },
|
||||
);
|
||||
return result.trim() || null;
|
||||
} catch (err) {
|
||||
@@ -57,19 +59,19 @@ async function showSaveDialog(defaultName, format) {
|
||||
try {
|
||||
const result = execSync(
|
||||
`zenity --file-selection --save --confirm-overwrite --filename="${defaultName}.${format}"`,
|
||||
{ encoding: 'utf8' }
|
||||
{ encoding: "utf8" },
|
||||
);
|
||||
return result.trim();
|
||||
} catch (err) {
|
||||
try {
|
||||
const result = execSync(
|
||||
`kdialog --getsavefilename . "${defaultName}.${format}"`,
|
||||
{ encoding: 'utf8' }
|
||||
{ encoding: "utf8" },
|
||||
);
|
||||
return result.trim();
|
||||
} catch (err2) {
|
||||
// Fallback
|
||||
return path.join(os.homedir(), 'Downloads', `${defaultName}.${format}`);
|
||||
return path.join(os.homedir(), "Downloads", `${defaultName}.${format}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -89,7 +91,12 @@ const module_exports = {
|
||||
* @param {string} [options.outputName] - Optional output filename (without extension)
|
||||
* @param {boolean} [options.showDialog] - Show save dialog (default: false in module mode, true in CLI mode)
|
||||
*/
|
||||
async convert({ inputPath, format = 'pdf', outputName, showDialog = false }) {
|
||||
async convert({ inputPath, format = "pdf", outputName, showDialog = false }) {
|
||||
format = format.toLowerCase().replace(".", ""); // <-- FIX
|
||||
|
||||
if (!["pdf", "docx", "html", "txt"].includes(format)) {
|
||||
throw new Error(`Unsupported format: ${format}`);
|
||||
}
|
||||
if (!fs.existsSync(inputPath)) {
|
||||
throw new Error(`Input file not found: ${inputPath}`);
|
||||
}
|
||||
@@ -103,7 +110,7 @@ const module_exports = {
|
||||
// Zeige nativen Dialog
|
||||
outputFile = await showSaveDialog(baseName, format);
|
||||
if (!outputFile) {
|
||||
console.log('Speichervorgang abgebrochen.');
|
||||
console.log("Speichervorgang abgebrochen.");
|
||||
return null;
|
||||
}
|
||||
} else {
|
||||
@@ -111,23 +118,23 @@ const module_exports = {
|
||||
outputFile = path.join(outputDir, `${baseName}.${format.toLowerCase()}`);
|
||||
}
|
||||
|
||||
let htmlContent = fs.readFileSync(inputPath, 'utf8');
|
||||
let htmlContent = fs.readFileSync(inputPath, "utf8");
|
||||
|
||||
// Remove <think> tags if present
|
||||
htmlContent = htmlContent.replace(/<think>[\s\S]*?<\/think>/gi, '');
|
||||
htmlContent = htmlContent.replace(/<think>[\s\S]*?<\/think>/gi, "");
|
||||
|
||||
switch (format.toLowerCase()) {
|
||||
case 'html':
|
||||
fs.writeFileSync(outputFile, htmlContent, 'utf8');
|
||||
case "html":
|
||||
fs.writeFileSync(outputFile, htmlContent, "utf8");
|
||||
break;
|
||||
case 'pdf':
|
||||
case "pdf":
|
||||
await this.htmlToPDF(htmlContent, outputFile);
|
||||
break;
|
||||
case 'docx':
|
||||
case "docx":
|
||||
await this.htmlToDOCX(htmlContent, outputFile);
|
||||
break;
|
||||
case 'txt':
|
||||
fs.writeFileSync(outputFile, this.htmlToTXT(htmlContent), 'utf8');
|
||||
case "txt":
|
||||
fs.writeFileSync(outputFile, this.htmlToTXT(htmlContent), "utf8");
|
||||
break;
|
||||
default:
|
||||
throw new Error(`Unsupported format: ${format}`);
|
||||
@@ -139,31 +146,61 @@ const module_exports = {
|
||||
|
||||
// HTML → PDF
|
||||
async htmlToPDF(html, outputPath) {
|
||||
const browser = await puppeteer.launch({
|
||||
let browser;
|
||||
try {
|
||||
browser = await puppeteer.launch({
|
||||
headless: true,
|
||||
args: ['--no-sandbox', '--disable-setuid-sandbox']
|
||||
args: ["--no-sandbox", "--disable-setuid-sandbox"],
|
||||
});
|
||||
|
||||
const page = await browser.newPage();
|
||||
await page.setContent(html, { waitUntil: 'networkidle0' });
|
||||
await page.setContent(html, { waitUntil: "networkidle0" });
|
||||
await page.pdf({
|
||||
path: outputPath,
|
||||
format: 'A4',
|
||||
format: "A4",
|
||||
printBackground: true,
|
||||
margin: { top: '20mm', right: '20mm', bottom: '20mm', left: '20mm' }
|
||||
margin: {
|
||||
top: "20mm",
|
||||
right: "20mm",
|
||||
bottom: "20mm",
|
||||
left: "20mm",
|
||||
},
|
||||
});
|
||||
} finally {
|
||||
if (browser) {
|
||||
await browser.close();
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// HTML → DOCX
|
||||
async htmlToDOCX(html, outputPath) {
|
||||
const buffer = await htmlToDocx(html);
|
||||
try {
|
||||
// html‑to‑docx library converts HTML string into a Word .docx buffer
|
||||
// Usage from html‑to‑docx docs:
|
||||
// await HTMLtoDOCX(htmlString, headerHTMLString, documentOptions, footerHTMLString) [oai_citation:0‡GitHub](https://github.com/privateOmega/html-to-docx?utm_source=chatgpt.com)
|
||||
const buffer = await htmlToDocx(html, null, {
|
||||
table: { row: { cantSplit: true } },
|
||||
});
|
||||
fs.writeFileSync(outputPath, buffer);
|
||||
} catch (err) {
|
||||
throw new Error(`DOCX conversion failed: ${err.message}`);
|
||||
}
|
||||
},
|
||||
|
||||
// HTML → TXT (rudimentär)
|
||||
// HTML → TXT
|
||||
htmlToTXT(html) {
|
||||
return html.replace(/<[^>]*>/g, '').replace(/\s+\n/g, '\n').trim();
|
||||
}
|
||||
// A decent plain text conversion: strip tags and collapse whitespace
|
||||
// If you want more advanced extraction consider using a library like `html-to-text` or `strip-html` [oai_citation:1‡GitHub](https://github.com/html-to-text/node-html-to-text?utm_source=chatgpt.com)
|
||||
return (
|
||||
html
|
||||
// Remove all tags
|
||||
.replace(/<[^>]+>/g, "")
|
||||
// Convert multiple whitespace into single spaces
|
||||
.replace(/\s+/g, " ")
|
||||
.trim()
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = module_exports;
|
||||
@@ -173,24 +210,26 @@ if (require.main === module) {
|
||||
(async () => {
|
||||
const args = process.argv.slice(2);
|
||||
if (args.length < 1) {
|
||||
console.log('Usage: node htmlDocumentConverter.js <input.html> [format]');
|
||||
console.log('Formats: pdf (default), docx, html, txt');
|
||||
console.log('');
|
||||
console.log('Ein nativer "Speichern unter" Dialog wird automatisch geöffnet.');
|
||||
console.log("Usage: node htmlDocumentConverter.js <input.html> [format]");
|
||||
console.log("Formats: pdf (default), docx, html, txt");
|
||||
console.log("");
|
||||
console.log(
|
||||
'Ein nativer "Speichern unter" Dialog wird automatisch geöffnet.',
|
||||
);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
const inputPath = args[0];
|
||||
const format = args[1] || 'pdf';
|
||||
const format = args[1] || "pdf";
|
||||
|
||||
try {
|
||||
await module_exports.convert({
|
||||
inputPath,
|
||||
format,
|
||||
showDialog: true
|
||||
showDialog: true,
|
||||
});
|
||||
} catch (err) {
|
||||
console.error('Konvertierung fehlgeschlagen:', err.message);
|
||||
console.error("Konvertierung fehlgeschlagen:", err.message);
|
||||
process.exit(1);
|
||||
}
|
||||
})();
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
// -----------------------------------------------------------
|
||||
// Parakeet (Step 3A: spawn Python minimal integration)
|
||||
// -----------------------------------------------------------
|
||||
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const { spawn } = require("child_process");
|
||||
|
||||
module.exports = {
|
||||
name: "parakeet",
|
||||
type: "transcription",
|
||||
displayname: "NVIDIA Parakeet",
|
||||
|
||||
async function(audioFilePath) {
|
||||
console.log("🦜 [Parakeet] Starting test integration (spawn only)...");
|
||||
console.log("🦜 Input audio:", audioFilePath);
|
||||
|
||||
// Check audio exists
|
||||
if (!fs.existsSync(audioFilePath)) {
|
||||
throw new Error("Audio file does not exist: " + audioFilePath);
|
||||
}
|
||||
|
||||
// Output path in storage/transcripts
|
||||
const sessionId = path.basename(audioFilePath).replace(/\.[^.]+$/, "");
|
||||
const outputDir = path.join(__dirname, "../../../storage/transcripts");
|
||||
fs.mkdirSync(outputDir, { recursive: true });
|
||||
|
||||
const outputPath = path.join(outputDir, `${sessionId}.json`);
|
||||
|
||||
// -------------------------------------------------------
|
||||
// SPAWN PYTHON SCRIPT (step 3A — dummy script)
|
||||
// -------------------------------------------------------
|
||||
return new Promise((resolve, reject) => {
|
||||
const python310 = "C:\\Users\\smith\\AppData\\Local\\Programs\\Python\\Python310\\python.exe";
|
||||
const py = spawn(python310, [
|
||||
path.join(__dirname, "parakeet_transcribe.py"),
|
||||
audioFilePath,
|
||||
outputPath
|
||||
]);
|
||||
|
||||
py.stdout.on("data", data => console.log("🦜 [Python]", data.toString().trim()));
|
||||
py.stderr.on("data", data => console.error("🦜 [Python ERR]", data.toString().trim()));
|
||||
|
||||
py.on("close", code => {
|
||||
if (code === 0) {
|
||||
console.log("🦜 [Parakeet] Done (spawn test). Output:", outputPath);
|
||||
resolve(outputPath);
|
||||
} else {
|
||||
reject(new Error("Python script failed with exit code " + code));
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -1,71 +0,0 @@
|
||||
# -----------------------------------------------------------
|
||||
# Parakeet Real Transcriber (NVIDIA NeMo + PyTorch GPU)
|
||||
# -----------------------------------------------------------
|
||||
|
||||
import sys
|
||||
import json
|
||||
import soundfile as sf
|
||||
import torch
|
||||
from nemo.collections.asr.models import ASRModel
|
||||
|
||||
# Args:
|
||||
# sys.argv[1] = input audio path
|
||||
# sys.argv[2] = output JSON path
|
||||
|
||||
audio_path = sys.argv[1]
|
||||
output_path = sys.argv[2]
|
||||
|
||||
print("🔥 Starting Parakeet model...")
|
||||
device = "cuda" if torch.cuda.is_available() else "cpu"
|
||||
print("🔥 Using device:", device)
|
||||
|
||||
# -----------------------------------------------------------
|
||||
# Load Parakeet model (NVIDIA pretrained ASR)
|
||||
# -----------------------------------------------------------
|
||||
model = ASRModel.from_pretrained(model_name="nvidia/parakeet-ctc-0.6b")
|
||||
model = model.to(device)
|
||||
model.eval()
|
||||
|
||||
# -----------------------------------------------------------
|
||||
# Load audio
|
||||
# -----------------------------------------------------------
|
||||
print("🎧 Loading audio:", audio_path)
|
||||
audio, sr = sf.read(audio_path)
|
||||
|
||||
# model expects mono float32
|
||||
if len(audio.shape) > 1:
|
||||
audio = audio.mean(axis=1)
|
||||
|
||||
audio = audio.astype("float32")
|
||||
|
||||
# -----------------------------------------------------------
|
||||
# Run inference
|
||||
# -----------------------------------------------------------
|
||||
print("🧠 Running inference...")
|
||||
with torch.no_grad():
|
||||
hyp = model.transcribe([audio])[0]
|
||||
|
||||
# Extract only the text
|
||||
if hasattr(hyp, "text"):
|
||||
transcript = hyp.text
|
||||
else:
|
||||
# fallback: convert to string (rare)
|
||||
transcript = str(hyp)
|
||||
|
||||
print("📄 Transcript:", transcript)
|
||||
|
||||
# -----------------------------------------------------------
|
||||
# Save JSON format compatible with V2D pipeline
|
||||
# -----------------------------------------------------------
|
||||
result = {
|
||||
"id": output_path.split("/")[-1].replace(".json", ""),
|
||||
"tool": "nemo_parakeet",
|
||||
"status": "completed",
|
||||
"text": transcript,
|
||||
"words": [] # Parakeet XS doesn’t return word timestamps
|
||||
}
|
||||
|
||||
with open(output_path, "w", encoding="utf-8") as f:
|
||||
json.dump(result, f, indent=2, ensure_ascii=False)
|
||||
|
||||
print("✔ JSON saved at:", output_path)
|
||||
Reference in New Issue
Block a user