Skip to content

stream-whisper #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# These are supported funding model platforms

Bitcoin: bc1qdtcj36mcev8hp0lre9n4208t2mmruk62dz6px7
Dogecoin: DJaomGCh4eFgVntuHt1NpALfTvoHnXL8x8
Ethereum: 0xe425c75C5B91e3a1f7BBf0B80585C283d27b49D8
Bitcoin Cash: bitcoincash:qpn90h8j2rwu5uzz7hs7usgq73melu892vgalqv3rx
Binance: bnb1x3m27kncn5dj62872u7hzwnnuw8l952ftfdh6x
Tron: TV6teTJfbZTPAZGRvYDju5vUeiPeop5Jo8
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

8 changes: 8 additions & 0 deletions .vscode/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"target": "esnext",
"lib": [
"esnext"
]
}
}
13 changes: 13 additions & 0 deletions .vscode/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
d .
/// <reference path="/home/codespace/.vscode-remote/extensions/nur.script-0.2.1/@types/api.global.d.ts" />
/// <reference path="/home/codespace/.vscode-remote/extensions/nur.script-0.2.1/@types/vscode.global.d.ts" />
// @ts-check
// API: https://code.visualstudio.com/api/references/vscode-api

function activate(_context) {
window.showInformationMessage('Hello, World!');
}

function deactivate() {}

module.exports = { activate, deactivate }
374 changes: 374 additions & 0 deletions Original-README.md

Large diffs are not rendered by default.

368 changes: 51 additions & 317 deletions README.md

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
pip
torch
transformers
accelerate
datasets[audio]
yt-dlp
pydub
filetype
watchdog
colorama
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from setuptools import setup, find_packages

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name='stream_whisper',
version='0.1.0',
url='https://github.com/nathfavour/stream-whisper',
author='nathfavour',
description='Description of my package',
packages=find_packages(),
install_requires=required,
entry_points={
'console_scripts': [
'stream-whisper=stream_whisper.stream_whisper:main',
],
},
)
Empty file added stream_whisper/__init__.py
Empty file.
12 changes: 12 additions & 0 deletions stream_whisper/settings.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[DEFAULT]
; audio.mp3, /path/to/audio
in = audio.mp3

; cli, /path/to/file, auto
out = cli

; short, long, auto
size = short

; auto, spec, flash, bet
distil = auto
Loading