跳至主要内容

博文

目前显示的是 六月, 2021的博文

python 之 文本转语言并保存

资料 https://pythonprogramminglanguage.com/text-to-speech/ https://stackoverflow.com/questions/31167967/python-3-4-text-to-speech-with-sapi https://deparkes.co.uk/2017/06/30/python-text-speech/ https://stackoverflow.com/questions/1614059/how-to-make-python-speak         众所周知,由于阅读障碍和其他学习障碍,有些人难以阅读大量文字。 有些人具有基本的文学水平。 他们经常尝试浏览Internet时感到沮丧,因为其中很多都是文本形式的,或者另一方面,某些人更喜欢听或看新闻文章(或类似的东西)而不是阅读。 因此,要解决所有这些问题,就会想到一个概念,即“文本到语音”。 打开电脑自带TTS语音路径 start %windir%\Speech_OneCore\Engines\TTS 注册表 计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Speech\Voices\Tokens Mac上  https://github.com/andrewp-as-is/mac-say.py Balabolka http://balabolka.site/balabolka.htm 是一个文本到语音 (TTS) 程序。 Balabolka 可以使用您系统上安装的所有计算机语音 。 屏幕上的文本可以保存为音频文件。 该程序可以读取剪贴板内容、从文档中提取文本、自定义字体和背景颜色、从系统托盘或全局热键控制读取。  Balabolka 支持文本文件格式:AZW、AZW3、CHM、DjVu、DOC、DOCX、EML、EPUB、FB2、FB3、HTML、LIT、MD、MOBI、ODP、ODS、ODT、PDB、PRC、PDF、PPT、PPTX、 RTF、TCR、WPD、XLS、XLSX。 eSpeak  http://espeak.sourceforge.net/index.html eSpeak 是一款小巧的开源软件语音合成器,可以将语...

postman 之api

https://randomapi.com/ 和风天气开发平台 https://dev.qweather.com/ https://dev.qweather.com/docs/api/ 用于生成随机用户数据的免费开源API https://randomuser.me/documentation 这是为 randomuser.me 用户生成器提供动力的源代码 https://github.com/RandomAPI/Randomuser.me-Node import requests import pprint url = 'https://randomuser.me/api/?results=1' users = requests.get(url).json() pprint.pprint(users) 天气预报 https://wttr.in/%E7%A6%B9%E5%B7%9E weather.py import sys import requests resp = requests.get(f'https://wttr.in/{sys.argv[1].replace(" ", "+")}') print(resp.text) python weather.py“禹州” postman get方法 天气 https://wis.qq.com/city/getcode?source=pc&province=河南&city=许昌&county=禹州 https://wis.qq.com/weather/common?source=pc&weather_type=observe|forecast_1h|forecast_24h|index|alarm|limit|tips|air|rise&province=河南&city=许昌&country=禹州 邮政编码 https://opendata.baidu.com/post/s?wd=党楼村 https://dey.11185.cn/web/#/idtoolkitaddress

python 之 二维码

  https://www.geeksforgeeks.org/reading-generating-qr-codes-python-using-qrtools/ https://medium.com/better-programming/how-to-generate-and-decode-qr-codes-in-python-a933bce56fd0 https://github.com/lincolnloop/python-qrcode

autohotkey

  https://www.autohotkey.com/docs/AutoHotkey.htm https://www.reddit.com/r/AutoHotkey/ https://www.autohotkey.com/boards/viewtopic.php?t=4287 https://www.howtogeek.com/97998/how-to-make-your-computer-press-a-key-every-x-seconds/ #Persistent ;每 2 分钟运行一次,您将使用 60 秒 * 2 分钟 * 1000 毫秒 = 120000 总毫秒 SetTimer, PressTheKey, 600 Return PressTheKey: Send, {LWin down}{1 down}{LWin up}{1 up} Return