Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xenova/whisper-web
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: kodiks/whisper-web
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 4 commits
  • 11 files changed
  • 1 contributor

Commits on Jan 17, 2024

  1. updated versions

    yavuzKomecoglu committed Jan 17, 2024
    Copy the full SHA
    dec4581 View commit details
  2. export .srt

    yavuzKomecoglu committed Jan 17, 2024
    Copy the full SHA
    07f6d50 View commit details
  3. updated

    yavuzKomecoglu committed Jan 17, 2024
    Copy the full SHA
    ef320a0 View commit details
  4. added dockerfiles

    yavuzKomecoglu committed Jan 17, 2024
    Copy the full SHA
    ac61ec7 View commit details
Showing with 6,573 additions and 5,250 deletions.
  1. +12 −0 .dockerignore
  2. +7 −0 Dockerfile
  3. +8 −0 README.md
  4. +10 −0 docker-compose.yml
  5. +6,372 −5,156 package-lock.json
  6. +48 −48 package.json
  7. +8 −1 src/App.tsx
  8. +1 −0 src/components/AudioManager.tsx
  9. +52 −35 src/components/Transcript.tsx
  10. +47 −10 src/utils/AudioUtils.ts
  11. +8 −0 vite.config.ts
12 changes: 12 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.git
.vscode
.dockerignore
.gitignore
.env
config
build
node_modules
docker-compose.yaml
Dockerfile
README.md
.venv
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM node:alpine
WORKDIR /app
COPY package.json .
RUN yarn
# copy all files
COPY . .
CMD ["yarn", "dev", "--debug"]
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -25,3 +25,11 @@ https://github.com/xenova/whisper-web/assets/26504141/fb170d84-9678-41b5-9248-a1
> Check out [this issue](https://github.com/xenova/whisper-web/issues/8) for more details.

3. Open the link (e.g., [http://localhost:5173/](http://localhost:5173/)) in your browser.


## Running docker

Build & Run

`docker-compose up -d --build`

10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: '3'

services:
whisper-web:
build: .
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
ports:
- 5173:5173
Loading