https://github.com/chcg/nppspeechplugin
Text-To-Speech for Notepad++
https://github.com/chcg/nppspeechplugin
Last synced: 2 months ago
JSON representation
Text-To-Speech for Notepad++
- Host: GitHub
- URL: https://github.com/chcg/nppspeechplugin
- Owner: chcg
- Created: 2019-03-30T20:58:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-05T18:29:59.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T03:23:26.609Z (9 months ago)
- Language: C
- Size: 166 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: change.log
Awesome Lists containing this project
README
# Name
Notepad++ Speech Plugin
## Description
The original plugin was posted here:
https://sourceforge.net/projects/npp-plugins/files/SpeechPlugin/
Uses Windows' Text-To-Speech engine to read Notepad++ documents.
## Compiling
I compiled with MS Visual Studio Community 2019 and this seems to work
OK.
For 32-bit:
```
[x86 Native Tools Command Prompt for VS 2017]
C:\> set Configuration=Release
C:\> set Platform=x86
C:\> msbuild
```
For 64-bit:
```
[x64 Native Tools Command Prompt for VS 2017]
C:\> set Configuration=Release
C:\> set Platform=x64
C:\> msbuild
```
## Installation
Copy the:
+ 32-bit: ./bin/SpeechPlugin.dll
+ 64-bit: ./bin64/SpeechPlugin.dll
to the Notepad++ plugins folder:
- In N++ <7.6, directly in the plugins/ folder
- In N++ >=7.6, in a directory called SpeechPlugin in the plugins/ folder
(plugins/SpeechPlugin/)