From 985328ce80f0b7ee6f50622d968f210c1a005d63 Mon Sep 17 00:00:00 2001 From: Luigi Maiorano Date: Fri, 28 Nov 2025 12:26:17 +0100 Subject: [PATCH] whisper webui notebook --- Interviews_Transcription.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Interviews_Transcription.py diff --git a/Interviews_Transcription.py b/Interviews_Transcription.py new file mode 100644 index 0000000..1f0dc46 --- /dev/null +++ b/Interviews_Transcription.py @@ -0,0 +1,24 @@ +import marimo + +__generated_with = "0.18.0" +app = marimo.App(width="medium") + + +@app.cell +def _(): + import marimo as mo + return (mo,) + + +@app.cell(hide_code=True) +def _(mo): + mo.md(r""" + # Interview Audio Transcription + + Use Whisper-Webui: http://whisper-webui.tail44fa00.ts.net:7860 + """) + return + + +if __name__ == "__main__": + app.run()