├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── display_progress.py ├── featureExtraction.py ├── requirements.txt ├── segmentAudio.py ├── trainAudio.py └── writeToFile.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/display_progress.py -------------------------------------------------------------------------------- /featureExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/featureExtraction.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /segmentAudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/segmentAudio.py -------------------------------------------------------------------------------- /trainAudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/trainAudio.py -------------------------------------------------------------------------------- /writeToFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Speech2Sub-Bot/HEAD/writeToFile.py --------------------------------------------------------------------------------