Skip to content

Commit

Permalink
Merge branch 'master' into toastSignIn
Browse files Browse the repository at this point in the history
  • Loading branch information
zakialvi-e64 committed Nov 29, 2023
2 parents 8f95b04 + 8d68ba5 commit 3a5e10a
Show file tree
Hide file tree
Showing 11 changed files with 2,733 additions and 1,116 deletions.
20 changes: 10 additions & 10 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = tab
indent_size = 4
tab_width = 4
# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
tab_width = 4
58 changes: 36 additions & 22 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,23 +1,37 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": { "node": true },
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
"@typescript-eslint/ban-ts-comment": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/no-empty-function": "off"
}
}
"root": true,
"parser": "@typescript-eslint/parser",
"env": {
"node": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-unused-vars": 1,
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "none"
}
],
"@typescript-eslint/ban-ts-comment": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/no-empty-function": "off"
}
}
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# Obsidian Transcription

Transcription 3.0, with [Swiftink.io](https://wwww.swiftink.io/) domain-aware speech-to-text! Create high-quality text transcriptions from any media file, on any device. Best-in-class ASR via [OpenAI Whisper](https://openai.com/blog/whisper/).
Transcription 3.0, with [Swiftink.io](https://www.swiftink.io/) domain-aware speech-to-text! Create high-quality text transcriptions from any media file, on any device. Best-in-class ASR via [OpenAI Whisper](https://openai.com/blog/whisper/).

![Demo](media/demo.gif)

## Features

- Wide range of audio and video file formats supported via [ffmpeg](https://ffmpeg.org/).
- Flexible transcription engines - cloud or local
- [Swiftink.io](https://www.swiftink.io/) - free, high-quality, domain-aware speech-to-text
- [Whisper ASR](https://github.com/ahmetoner/whisper-asr-webservice) - local, open-source
- Start and end timestamps for each line of the transcription
- Transcribe multiple files at once
- Transcribe files in the background
- Summaries, outlines, and notes for each transcription with [Swiftink.io](https://www.swiftink.io/)
- Wide range of audio and video file formats supported via [ffmpeg](https://ffmpeg.org/).
- Flexible transcription engines - cloud or local
- [Swiftink.io](https://www.swiftink.io/) - free, high-quality, domain-aware speech-to-text
- [Whisper ASR](https://github.com/ahmetoner/whisper-asr-webservice) - local, open-source
- Start and end timestamps for each line of the transcription
- Transcribe multiple files at once
- Transcribe files in the background
- Summaries, outlines, and notes for each transcription with [Swiftink.io](https://www.swiftink.io/)

## How to use

### Installation and setup

[![Tutorial](https://img.youtube.com/vi/EyfhLGF3Fxg/0.jpg)](https://www.youtube.com/watch?v=EyfhLGF3Fxg)

## Contact
Expand All @@ -26,4 +27,5 @@ Contact me by [email](mailto:sulaiman@swiftink.io) at or on Twitter [@sulaimangh

## Credits

- [Whisper ASR](https://github.com/ahmetoner/whisper-asr-webservice) by Ahmed, for the easy-to-use Whisper webservice backend
- [Whisper ASR](https://github.com/ahmetoner/whisper-asr-webservice) by Ahmed, for the easy-to-use Whisper webservice backend

2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-transcription",
"name": "Transcription",
"version": "3.1.7",
"version": "3.1.8",
"minAppVersion": "0.15.0",
"description": "Transcription 3.0, now with Swiftink.io domain-aware speech-to-text! Create high-quality text transcriptions from any media file, on any device. Best-in-class ASR",
"author": "djmango",
Expand Down
99 changes: 49 additions & 50 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,50 @@
{
"name": "obsidian-transcription",
"version": "3.1.4",
"description": "Obsidian plugin to create high-quality text transcriptions from any media file, on any device",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint ./src --fix",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"get_types": "npx openapi-typescript https://api.swiftink.io/openapi.json --output src/types/swiftink.d.ts"
},
"keywords": [
"audio transcription",
"audio-to-text",
"audio",
"swiftink",
"markdown",
"obsidian",
"plugin",
"recognition",
"speech-to-text",
"speech",
"stt",
"transcription",
"whisper",
"domain-aware",
"asr",
"nlp"
],
"author": "djmango",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"eslint": "^8.48.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4",
"pnpm": "^8.10.5"
},
"dependencies": {
"@supabase/supabase-js": "^2.33.1",
"date-fns": "^2.29.3",
"tus-js-client": "^3.1.1"
}
{
"name": "obsidian-transcription",
"version": "3.1.8",
"description": "Obsidian plugin to create high-quality text transcriptions from any media file, on any device",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint ./src --fix",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"get_types": "npx openapi-typescript https://api.swiftink.io/openapi.json --output src/types/swiftink.d.ts"
},
"keywords": [
"audio transcription",
"audio-to-text",
"audio",
"swiftink",
"markdown",
"obsidian",
"plugin",
"recognition",
"speech-to-text",
"speech",
"stt",
"transcription",
"whisper",
"domain-aware",
"asr",
"nlp"
],
"author": "djmango",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"eslint": "^8.48.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.33.1",
"date-fns": "^2.29.3",
"tus-js-client": "^3.1.1"
}
}
Loading

0 comments on commit 3a5e10a

Please sign in to comment.