遍历声音示例页面,下载每个示例并将行放入文本文件中
2016-7-21 4:6:52
收藏:0
阅读:70
评论:1
这里是我试图完成此操作的页面。这是来自Portal中GLaDOS的语音行。每一行都是内部"i"HTML文本以及在页面上显示的引号之间的文本。它们每个都有一个直接的下载链接,在其旁边标有"download"。我正在尝试将语音行放入MARY TTS语音合成器这里中的两种格式之一。要么是每行都有自己的文本文件,文件名与wav文件的名称匹配,要么是格式化为一个文本文件中的所有行( filename " insert line here")。
我曾试图自己做这件事,但已经花了4个小时,只得到了一小段不起作用的Python代码。
from bs4 import BeautifulSoup
import re
import urllib.request
soup = BeautifulSoup(urllib.request.urlopen("http://theportalwiki.com/wiki/GLaDOS_voice_lines"), "html.parser")
tags = soup.find_all('i')
f = open('Lines.txt', 'w')
for t in range(len(tags)):
f.write(tags[t] + '\n')
f.close()
它返回"TypeError: unsupported operand type(s) for +: 'Tag' and 'str'."
我还尝试过AutoHotKey。
^g::
IEGet(Name="") ;Retrieve pointer to existing IE window/tab
{
IfEqual, Name,, WinGetTitle, Name, ahk_class IEFrame
Name := ( Name="New Tab - Windows Internet Explorer" ) ? "about:Tabs"
: RegExReplace( Name, " - (Windows|Microsoft) Internet Explorer" )
For wb in ComObjCreate( "Shell.Application" ).Windows
If ( wb.LocationName = Name ) && InStr( wb.FullName, "iexplore.exe" )
Return wb
} ;written by Jethrow
wb := IEGet()
IELoad(wb) ;You need to send the IE handle to the function unless you define it as global.
{
If !wb ;If wb is not a valid pointer then quit
Return False
Loop ;Otherwise sleep for .1 seconds untill the page starts loading
Sleep,100
Until (wb.busy)
Loop ;Once it starts loading wait until completes
Sleep,100
Until (!wb.busy)
Loop ;optional check to wait for the page to completely load
Sleep,100
Until (wb.Document.Readystate = "Complete")
Return True
}
For IE in ComObjCreate("Shell.Application").Windows ; for each open window
If InStr(IE.FullName, "iexplore.exe") ; check if it's an ie window
break ; keep that window's handle
; this assumes an ie window is available. it won't work if not
IE.Navigate("http://theportalwiki.com/wiki/GLaDOS_voice_lines")
While IE.Busy
Sleep, 100
Links := IE.Document.Links
Inner := FileOpen("C:\Users\Johnson\Desktop\GLaDOS Voice", "w")
Rows := IE.Document.All.Tags("table")[4].Rows
Loop % Rows.Length
Inner.Write(Row[A_Index].InnerText . "`r`n")
Inner.Close()
Return
据我所知,AutoHotKey脚本什么也没做。我使用快捷键,什么也不发生。
我更喜欢Lua,因为它是一致的并且我理解它。
点赞
评论区的留言会收到邮件通知哦~
推荐文章
- 如何将两个不同的lua文件合成一个 东西有点长 大佬请耐心看完 我是小白研究几天了都没搞定
- 如何在roblox studio中1:1导入真实世界的地形?
- 求解,lua_resume的第二次调用继续执行协程问题。
- 【上海普陀区】内向猫网络招募【Skynet游戏框架Lua后端程序员】
- SF爱好求教:如何用lua实现游戏内调用数据库函数实现账号密码注册?
- Lua实现网站后台开发
- LUA错误显式返回,社区常见的规约是怎么样的
- lua5.3下载库失败
- 请问如何实现文本框内容和某个网页搜索框内容连接,并把网页输出来的结果反馈到另外一个文本框上
- lua lanes多线程使用
- 一个kv数据库
- openresty 有没有比较轻量的 docker 镜像
- 想问一下,有大佬用过luacurl吗
- 在Lua执行过程中使用Load函数出现问题
- 为什么 neovim 里没有显示一些特殊字符?
- Lua比较两个表的值(不考虑键的顺序)
- 有个lua简单的项目,外包,有意者加微信 liuheng600456详谈,最好在成都
- 如何在 Visual Studio 2022 中运行 Lua 代码?
- addEventListener 返回 nil Lua
- Lua中获取用户配置主目录的跨平台方法
你的 Python 代码离成功很近了。以下是微小的修复(并使用文件的上下文管理器):
from bs4 import BeautifulSoup import urllib.request soup = BeautifulSoup(urllib.request.urlopen("http://theportalwiki.com/wiki/GLaDOS_voice_lines"), "html.parser") tags = soup.find_all('i') with open('Lines.txt', 'w') as f: for t in range(len(tags)): f.write(tags[t].text.strip('“â€') + '\n')Lines.txt:
编辑
回答下面评论中的问题,这应该可以获取下载链接:
from bs4 import BeautifulSoup import urllib.request soup = BeautifulSoup(urllib.request.urlopen("http://theportalwiki.com/wiki/GLaDOS_voice_lines"), "html.parser") tags = soup.find_all('a') with open('Downloads.txt', 'w') as f: for tag in tags: if tag.text == 'Download': f.write(tag['href'] + '\n')Downloads.txt:
http://i1.theportalwiki.net/img/e/e5/GLaDOS_00_part1_entry-1.wav http://i1.theportalwiki.net/img/d/d7/GLaDOS_00_part1_entry-2.wav http://i1.theportalwiki.net/img/5/50/GLaDOS_00_part1_entry-3.wav ...