Hi, folks,
after i fail to write a script for my audiobooks via audible.de I need your help. I post what I've done so far and would be very glad if some of you could help me out with this.
# Mp3tag parsing for audible.de
#
[Name]=Audible.de
[BasedOn]=http://www.audible.de
[IndexUrl]=http://www.audible.de/adde/site/audibleSearch/searchResults.jsp?D=%s&Ntt=%s&Ntk=S_Keywords&Dx=mode%2bmatchallpartial&Ntx=mode%2bmatchallpartial&N=0&BV_UseBVCookie=Yes
#[IndexUrl]=http://www.audible.de/adde/site/audibleSearch/searchResults.jsp?D=spinne&Ntt=spinne&Ntk=S_Keywords&Dx=mode%2bmatchallpartial&Ntx=mode%2bmatchallpartial&N=0&BV_UseBVCookie=Yes
[AlbumUrl]=http://www.audible.de/adde/store/product.jsp?BV_UseBVCookie=Yes&productID=
[WordSeperator]=%20
[IndexFormat]=%_url%|%Titel%|%Autor%|%Gelesen%
[SearchBy]=%title%
[ParserScriptIndex]=...
##############################################################
debug "on" "c:\audible1.html"
findline "end of code" 1 1
do
findline "<li class=\"item hreview"
findline "<div class=\"descr"
findline "<a href="
# url
findinline "<a href=\""
sayuntil "\""
say "|"
# Titel
findinline "class=\"url\">"
sayuntil "</a>"
say "|"
# Autor
findline "<a href=\""
findinline "<a href=\""
sayuntil "</a>"
say "|"
#gelesen von
findline "<a href=\""
findinline "<a href=\""
sayuntil "</a>"
saynewline
findline "<ul class=\""
findline "<ul class=\""
while "\""
[ParserScriptAlbum]=... ##############################################################
debug "on" "c:\audible2.html"
findline "<div class=\"hreview page-title-detail\""
# CoverURL
outputto "coverurl"
say "http://www.audible.de"
findline "<p class="cover-xl\">"
findinline "src=\""
sayuntil "t4_image.jpg"
say "lg_image.jpg"
# Inhalt
outputto "unsyncedlyrics"
findline ">BESCHREIBUNG</h2>
"
findinline ">BESCHREIBUNG
"
Artist
findline "<th scope="row">Sprecher:"
moveline 2
findinline ">"
Say "HB "
sayuntil ""
Year
findline "<th scope="row">Veröffentlicht:"
moveline 2
findinline ">"
sayuntil ""
Thanls for your help,
oelwurst