Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Lyrics Grabber Feedback & Discussion (Read 256199 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

Lyrics Grabber Feedback & Discussion

Reply #125
@elenhil:
Try not to right click on that list, use Refresh button instead.
That error indicate right click on a item not present.

Lyrics Grabber Feedback & Discussion

Reply #126
Thanks!

Lyrics Grabber Feedback & Discussion

Reply #127
Is there any option to sync lyrics without time stamps?

Edit: Sorry, it was a mistake caused by another plugin

Lyrics Grabber Feedback & Discussion

Reply #128
@novembre:
Is there any message in the console, or, if there's any popup window?
Here's what I get in the console after searching for "Smoke On The Water" on AZlyrics:
Code: [Select]
Traceback (most recent call last):
  File "C:\Program Files\foobar2000\pygrabber\scripts\AZLyrics.py", line 38, in Query
html = unicode(html, 'windows-1252').encode('utf-8')
LookupError: no codec search functions registered: can't find encoding
With Dark Lyrics no messages in console.
With Leo's Lyrics:
Code: [Select]
Traceback (most recent call last):
  File "C:\Program Files\foobar2000\pygrabber\scripts\LeosLyrics.py", line 36, in Query
hid = e.getAttribute("hid").encode('utf-8')
LookupError: no codec search functions registered: can't find encoding
With LyrDB:
Code: [Select]
Traceback (most recent call last):
  File "C:\Program Files\foobar2000\pygrabber\scripts\LyrDB.py", line 44, in Query
Id, ti, ar = line.split("\\")  # id\titlle\arist
ValueError: too many values to unpack
Lyricist:
Code: [Select]
Traceback (most recent call last):
  File "C:\Program Files\foobar2000\pygrabber\scripts\Lyricist(LRC).py", line 72, in Query
    l = get_lyric_list(title, artist)
  File "C:\Program Files\foobar2000\pygrabber\scripts\Lyricist(LRC).py", line 40, in get_lyric_list
    l = __get_lyric_list(title, artist)
  File "C:\Program Files\foobar2000\pygrabber\scripts\Lyricist(LRC).py", line 12, in __get_lyric_list
    title = urllib.quote(unicode(title, 'utf-8').encode('gb18030'))
LookupError: no codec search functions registered: can't find encoding
TTPlayer:
Code: [Select]
[19:09:03] Traceback (most recent call last):
  File "C:\Program Files\foobar2000\pygrabber\scripts\TTPlayer(LRC).py", line 58, in Query
    lyric = urllib2.urlopen(req).read()
  File "D:\Python25\Lib\urllib2.py", line 124, in urlopen
  File "D:\Python25\Lib\urllib2.py", line 381, in open
  File "D:\Python25\Lib\urllib2.py", line 399, in _open
  File "D:\Python25\Lib\urllib2.py", line 360, in _call_chain
  File "D:\Python25\Lib\urllib2.py", line 1107, in http_open
  File "D:\Python25\Lib\urllib2.py", line 1079, in do_open
  File "D:\Python25\lib\httplib.py", line 866, in request
  File "D:\Python25\lib\httplib.py", line 889, in _send_request
  File "D:\Python25\lib\httplib.py", line 860, in endheaders
  File "D:\Python25\lib\httplib.py", line 732, in _send_output
  File "D:\Python25\lib\httplib.py", line 699, in send
  File "D:\Python25\lib\httplib.py", line 667, in connect
LookupError: no codec search functions registered: can't find encoding
No error popups, only the results window.
Hope this helps.

Lyrics Grabber Feedback & Discussion

Reply #129
ok, i found workaround

you have to do explicit import for encodings
put this in every script (the first lines, where you importing)

Code: [Select]
from encodings import utf_8

and now the scripts are working, and even my script is working

edit: and only for "lyrdb.py" change line 43:

[font= "Courier New"]for line in lines.split("\r\n"):[/font]

to this:

[font= "Courier New"]for line in lines.split("\n"):[/font]

no carriage return

Lyrics Grabber Feedback & Discussion

Reply #130
Quote
ok, i found workaround

you have to do explicit import for encodings
put this in every script (the first lines, where you importing)

Thanks for the tip


Lyrics Grabber Feedback & Discussion

Reply #131
hey, thanks to you for your great work

Lyrics Grabber Feedback & Discussion

Reply #132
Another crash trying to search for lyrics for a really large number of tracks

Code: [Select]
Illegal operation:
Code: C0000005h, flags: 00000000h, address: 03EC3C30h
Access violation, operation: read, address: 00000000h
Call path:
entry=>app_mainloop=>main_thread_callback::callback_run
Code bytes (03EC3C30h):
03EC3BF0h:  33 F6 EB 1F 8B 06 8B 50 18 57 8B CE FF D2 3B C3
03EC3C00h:  77 04 33 F6 EB 0D 8B 06 8B 50 1C 53 57 8B CE FF
03EC3C10h:  D2 8B F0 89 5C 24 24 89 5C 24 28 89 5C 24 2C 8B
03EC3C20h:  C6 C6 84 24 08 01 00 00 04 8D 50 01 8D 64 24 00
03EC3C30h:  8A 08 40 3A CB 75 F9 2B C2 8D 58 01 8D 44 24 24
03EC3C40h:  E8 9B 34 00 00 8B 7C 24 24 56 E8 41 4D 00 00 83
03EC3C50h:  C4 04 33 DB C6 84 24 08 01 00 00 05 8B C7 39 5C
03EC3C60h:  24 28 77 05 B8 D8 30 F0 03 8B C8 8D 71 02 8B FF
Code bytes (03EC3C30h):
03EC3BF0h:  33 F6 EB 1F 8B 06 8B 50 18 57 8B CE FF D2 3B C3
03EC3C00h:  77 04 33 F6 EB 0D 8B 06 8B 50 1C 53 57 8B CE FF
03EC3C10h:  D2 8B F0 89 5C 24 24 89 5C 24 28 89 5C 24 2C 8B
03EC3C20h:  C6 C6 84 24 08 01 00 00 04 8D 50 01 8D 64 24 00
03EC3C30h:  8A 08 40 3A CB 75 F9 2B C2 8D 58 01 8D 44 24 24
03EC3C40h:  E8 9B 34 00 00 8B 7C 24 24 56 E8 41 4D 00 00 83
03EC3C50h:  C4 04 33 DB C6 84 24 08 01 00 00 05 8B C7 39 5C
03EC3C60h:  24 28 77 05 B8 D8 30 F0 03 8B C8 8D 71 02 8B FF
Registers:
EAX: 00000000, EBX: 00000000, ECX: FFFFFFFF, EDX: 00000001
ESI: 00000000, EDI: FFFFFFFF, EBP: 00000000, ESP: 00000008
Crash location: "foo_lyricsgrabber", loaded at 03EB0000h - 03F14000h

Loaded modules:
foobar2000                      loaded at 00400000h - 00539000h
ntdll                            loaded at 7C900000h - 7C9B0000h
kernel32                        loaded at 7C800000h - 7C8F8000h
COMCTL32                        loaded at 773C0000h - 774C3000h
msvcrt                          loaded at 77C00000h - 77C58000h
ADVAPI32                        loaded at 77DC0000h - 77E6C000h
RPCRT4                          loaded at 77E70000h - 77F02000h
Secur32                          loaded at 77FE0000h - 77FF1000h
GDI32                            loaded at 77F10000h - 77F59000h
USER32                          loaded at 7E360000h - 7E3F1000h
SHLWAPI                          loaded at 77F60000h - 77FD6000h
SHELL32                          loaded at 7C9C0000h - 7D1DB000h
ole32                            loaded at 774D0000h - 7760D000h
shared                          loaded at 10000000h - 1002A000h
UxTheme                          loaded at 5B260000h - 5B298000h
COMDLG32                        loaded at 76380000h - 763C9000h
IMM32                            loaded at 76360000h - 7637D000h
LPK                              loaded at 62F00000h - 62F09000h
USP10                            loaded at 75540000h - 755AB000h
mzvkbd                          loaded at 6D710000h - 6D723000h
PSAPI                            loaded at 76BE0000h - 76BEB000h
mzvkbd3                          loaded at 6D730000h - 6D743000h
raphook                          loaded at 00A90000h - 00AD4000h
AM30400                          loaded at 00B00000h - 00B0C000h
ws2_32                          loaded at 71A90000h - 71AA7000h
WS2HELP                          loaded at 71A80000h - 71A88000h
msctfime                        loaded at 75310000h - 7533E000h
foo_uie_albumlist                loaded at 00B80000h - 00BC3000h
foo_audioscrobbler              loaded at 00BF0000h - 00C20000h
foo_popupplus                    loaded at 00C40000h - 00CC9000h
gdiplus                          loaded at 4EBE0000h - 4ED86000h
RICHED20                        loaded at 74DF0000h - 74E5D000h
foo_infobox                      loaded at 00D00000h - 00D40000h
foo_input_monkey                loaded at 00D60000h - 00DA9000h
foo_dsp_delta                    loaded at 00DD0000h - 00DEE000h
foo_managedWrapper              loaded at 00E10000h - 00EDA000h
mscoree                          loaded at 79000000h - 79046000h
MSVCR80                          loaded at 78130000h - 781CB000h
MSVCP80                          loaded at 7C420000h - 7C4A7000h
msvcm80                          loaded at 7C4C0000h - 7C53D000h
mscorwks                        loaded at 79E70000h - 7A400000h
mscorlib.ni                      loaded at 790C0000h - 79BB7000h
mscorjit                        loaded at 79060000h - 790BB000h
rsaenh                          loaded at 68000000h - 68036000h
System.ni                        loaded at 7A440000h - 7ABC5000h
System.Drawing.ni                loaded at 7ADE0000h - 7AF68000h
System.Windows.Forms.ni          loaded at 7AFD0000h - 7BBAD000h
xpsp2res                        loaded at 03570000h - 0383D000h
dotnet_title                    loaded at 11000000h - 11014000h
foo_uie_trackinfo                loaded at 03C80000h - 03CAE000h
foo_lyricsdb                    loaded at 03CD0000h - 03CFF000h
OLEAUT32                        loaded at 77110000h - 7719B000h
WININET                          loaded at 771A0000h - 7724A000h
CRYPT32                          loaded at 77A70000h - 77B06000h
MSASN1                          loaded at 77B10000h - 77B22000h
foo_ui_std                      loaded at 03DD0000h - 03EA4000h
MSIMG32                          loaded at 76350000h - 76355000h
foo_cdda                        loaded at 03D40000h - 03D81000h
foo_lyricsgrabber                loaded at 03EB0000h - 03F14000h
foo_dsp_mm                      loaded at 03F30000h - 03F71000h
foo_channel_mixer                loaded at 03F90000h - 03FCB000h
foo_fileops                      loaded at 03FE0000h - 04026000h
foo_playlist_tree_mod            loaded at 04050000h - 040B8000h
libmzsch360_000                  loaded at 10400000h - 105D0000h
WSOCK32                          loaded at 71AB0000h - 71ABA000h
libmzgc360_000                  loaded at 040E0000h - 04184000h
foo_out_asio                    loaded at 041D0000h - 04207000h
foo_uie_quicksearch              loaded at 04230000h - 04276000h
foo_abx                          loaded at 042A0000h - 042D1000h
foo_uie_wsh_panel                loaded at 04300000h - 0432F000h
foo_input_std                    loaded at 04380000h - 044BC000h
foo_skip                        loaded at 044E0000h - 044EC000h
MSVCR90                          loaded at 78520000h - 785C3000h
foo_uie_playlists_dropdown      loaded at 04510000h - 04549000h
foo_run                          loaded at 04570000h - 0459E000h
foo_freedb2                      loaded at 045C0000h - 04600000h
foo_menu_addons                  loaded at 04620000h - 0467D000h
libmmd                          loaded at 04690000h - 04941000h
foo_converter                    loaded at 04960000h - 049CC000h
foo_albumlist                    loaded at 049F0000h - 04A5B000h
foo_uie_vis_peakmeter_spectrum  loaded at 04A80000h - 04ABF000h
foo_ui_columns                  loaded at 04AE0000h - 04C12000h
foo_uie_graphical_browser        loaded at 04C40000h - 04CD4000h
foo_rgscan                      loaded at 04CF0000h - 04D4B000h
foo_dsp_vlevel                  loaded at 04D70000h - 04D7B000h
foo_ui_minilyrics                loaded at 04D90000h - 04DB0000h
foo_uie_vis_egoh                loaded at 04DD0000h - 04DED000h
foo_ac3                          loaded at 04E00000h - 04E2B000h
foo_grabber_python              loaded at 04E50000h - 04EA7000h
python25                        loaded at 1E000000h - 1E208000h
MSVCR71                          loaded at 7C340000h - 7C396000h
foo_uie_elplaylist              loaded at 04FE0000h - 05047000h
foo_freedb2_fix                  loaded at 05070000h - 05085000h
foo_httpcontrol                  loaded at 050B0000h - 050F2000h
MPR                              loaded at 71B00000h - 71B12000h
foo_uie_trackinfo_mod            loaded at 05120000h - 05176000h
foo_uie_lyricist                loaded at 05190000h - 0527A000h
foo_playcount                    loaded at 052A0000h - 052CA000h
foo_uie_vis_channel_spectrum    loaded at 052F0000h - 0532D000h
WINMM                            loaded at 76B20000h - 76B4E000h
foo_masstag                      loaded at 053D0000h - 05413000h
foo_chronflow                    loaded at 05440000h - 054A1000h
OPENGL32                        loaded at 5F220000h - 5F2EC000h
GLU32                            loaded at 5FF90000h - 5FFB1000h
DDRAW                            loaded at 73720000h - 7376B000h
DCIMAN32                        loaded at 73B80000h - 73B86000h
foo_lastfm_radio                loaded at 05D70000h - 05DB5000h
foo_uie_lyrics                  loaded at 05DE0000h - 05E3D000h
foo_dsp_std                      loaded at 05E60000h - 05EA8000h
foo_scheduler                    loaded at 05ED0000h - 05F3F000h
POWRPROF                        loaded at 74A90000h - 74A98000h
foo_jesus                        loaded at 05F60000h - 05F7C000h
foo_uie_panel_splitter          loaded at 05F90000h - 05FDF000h
foo_history                      loaded at 06000000h - 0601C000h
foo_vis_shpeck                  loaded at 06040000h - 0607E000h
pshook                          loaded at 08000000h - 08008000h
ctagent                          loaded at 06520000h - 06527000h
mscms                            loaded at 73AF0000h - 73B05000h
WINSPOOL                        loaded at 72FC0000h - 72FE6000h
icm32                            loaded at 58BE0000h - 58C21000h
SXS                              loaded at 7E690000h - 7E740000h
CLBCATQ                          loaded at 76FC0000h - 7703F000h
COMRes                          loaded at 77040000h - 77107000h
VERSION                          loaded at 77BF0000h - 77BF8000h
scrchpg                          loaded at 6D8E0000h - 6D906000h
jscript                          loaded at 75C20000h - 75C9D000h
klscav                          loaded at 6D510000h - 6D51A000h
prremote                        loaded at 6D860000h - 6D875000h
prloader                        loaded at 6D810000h - 6D853000h
prkernel                        loaded at 6E360000h - 6E390000h
userenv                          loaded at 769A0000h - 76A55000h
params                          loaded at 6E240000h - 6E2BB000h
pxstub                          loaded at 6E4B0000h - 6E4B9000h
tempfile                        loaded at 6E680000h - 6E686000h
mswsock                          loaded at 71A30000h - 71A70000h
DNSAPI                          loaded at 76F10000h - 76F37000h
iphlpapi                        loaded at 76D50000h - 76D69000h
System.Xml.ni                    loaded at 637A0000h - 63CD6000h
hnetcfg                          loaded at 698B0000h - 69908000h
wshtcpip                        loaded at 71A70000h - 71A78000h
rasadhlp                        loaded at 76FB0000h - 76FB6000h
MiniLyrics                      loaded at 0B1B0000h - 0B39D000h
LvHook                          loaded at 3AA00000h - 3AA42000h
DKZKey                          loaded at 0B7D0000h - 0B7DB000h
_socket                          loaded at 0B7F0000h - 0B7FD000h
IMAGEHLP                        loaded at 76C80000h - 76CA8000h
DBGHELP                          loaded at 59C60000h - 59D01000h

Version info:
foobar2000 v0.9.6
UNICODE
Windows 5.1


Additional info:
Graphical Browser rev015  (foo_uie_graphical_browser)
Channel Spectrum panel 0.17.2  (foo_uie_vis_channel_spectrum)
LPCM <--> delta-PCM converter 0.1.1  (foo_dsp_delta)
Lyric Show Panel 0.3.3.9 [Dec 12 2008 - 17:39:01]  (foo_uie_lyrics)
foo_managedWrapper 0.4  (foo_managedWrapper)
PopUp Plus 20080423  (foo_popupplus)
Columns UI 0.3.5.1  (foo_ui_columns)
foobar2000 core 0.9.6  (Core)
Panel Stack Splitter 0.3.6.2(alpha)  (foo_uie_panel_splitter)
Album list panel 0.2.3 beta  (foo_uie_albumlist)
ReplayGain Scanner 2.0.8  (foo_rgscan)
HTTP Control 0.79  (foo_httpcontrol)
Track info panel 0.8  (foo_uie_trackinfo)
Masstagger 1.7.1  (foo_masstag)
Peakmeter Spectrum Visualisation 0.2.0.0 beta  (foo_uie_vis_peakmeter_spectrum)
Lyrics Grabber Dances With Python 0.1.9 Alpha  (foo_grabber_python)
Quick Search Toolbar 2.8l  (foo_uie_quicksearch)
Special file info box 2.0.3  (foo_infobox)
Freedb2 characters fixer (masstagger addon) 0.02  (foo_freedb2_fix)
WSH Panel (uie) 0.7.2  (foo_uie_wsh_panel)
File Operations 2.1.1  (foo_fileops)
Matrix Mixer 0.3  (foo_dsp_mm)
Lyrics Grabber 0.3.0.4 Alpha  (foo_lyricsgrabber)
Skip Track 1.0.0  (foo_skip)
Monkey's Audio decoder 2.1.1  (foo_input_monkey)
Autosave 0.0.2  (foo_jesus)
Egoh Spectrum analyser (uie) 1.1.2  (foo_uie_vis_egoh)
Menu Addons 0.4 (Intel SSE)  (foo_menu_addons)
Scheduler 3.53  (foo_scheduler)
Standard Input Array 1.0  (foo_input_std)
Run services 0.3.4  (foo_run)
ABX Comparator 1.3.3  (foo_abx)
Chronial's Coverflow 0.3.0  (foo_chronflow)
CD Audio Decoder 2.1.3  (foo_cdda)
Playlists Dropdown 0.6 alpha 4  (foo_uie_playlists_dropdown)
Default User Interface 0.9.5  (foo_ui_std)
ELPlaylist 0.6.3.0(beta)  (foo_uie_elplaylist)
Playback Statistics 2.1.7  (foo_playcount)
foo_lyricsdb 0.0.7 beta 5  (foo_lyricsdb)
Converter 1.2  (foo_converter)
Album List 4.3  (foo_albumlist)
History 0.2  (foo_history)
Track info panel mod 0.8.0 beta [Jan  5 2007 - 13:36:12]  (foo_uie_trackinfo_mod)
AC3 decoder 0.7  (foo_ac3)
Standard DSP Array 1.0  (foo_dsp_std)
VLevel 20080302.0  (foo_dsp_vlevel)
Channel Mixer 0.9.6.1  (foo_channel_mixer)
Playlist Tree Mod Panel 3.0.6.0 [Jul 12 2008 - 23:39:03]  (foo_playlist_tree_mod)
ASIO support 1.2.6  (foo_out_asio)
freedb Tagger 0.6  (foo_freedb2)
Shpeck - Winamp vis plugins wrapper 0.3.0  (foo_vis_shpeck)
Lyrist foobar2000 Component    1.41 1.41  (foo_uie_lyricist)
Audioscrobbler 1.3.16  (foo_audioscrobbler)
Last.fm Radio 0.5.2  (foo_lastfm_radio)


Lyrics Grabber Feedback & Discussion

Reply #133
I think I've found a bug: searching for lyrics for a track without %artist% (even if %album artist% is present) crashes foobar.

Lyrics Grabber Feedback & Discussion

Reply #134
@elenhil & novembre:
Your problems are the same...
I'll fix that later.

Lyrics Grabber Feedback & Discussion

Reply #135
I've uploaded both foo_lyricsgrabber and foo_grabber_python, please download and check again.

Lyrics Grabber Feedback & Discussion

Reply #136
Good work, no more crashes

Lyrics Grabber Feedback & Discussion

Reply #137
With the newest version none of the python-scripts can find lyrics for my songs.
When i perform a google lucky search for "site:azlyrics.com 'artist' 'title' lyrics" it works, but all of the python-scripts in foobar return "failed".
I fist triede with artist/songs with danish characters, but I also tried artist/song with no special characters.
I have tried to remove all lyricsgrabber and python files and resets lyricsgrabber_python settings but no luck.
I don't know if it has something to do with the new charset and the danish language.

Lyrics Grabber Feedback & Discussion

Reply #138
@Jonas Nyrup:
I thinks there's some errors occured. Is there anything in the console?

Lyrics Grabber Feedback & Discussion

Reply #139
Okay this i weird.

Artist: Black Sabbath
Album: Black Sabbath
title: Black Sabath

azlyrics finds nothing (they have the lyrics and the second result when performing a search at the site)
darklyrics find nothing (also has the lyrics)
leolyrics succeeds
lyrDB succeeds
------------------------------------
Artist: Black Sabbath
Album: Paranoid
title: Iron Man

azlyrics succeeds
darklyrics succeds
leolyrics succeeds
lyrDB succeeds

-----------------------------
Artist: Outkast
Album: ATliens
title: Decatur Psalm

azlyrics finds nothing
darklyrics find nothing
leolyrics finds nothing (first result when searching the song title at the site)
 and writes this in console:
Code: [Select]
Traceback (most recent call last):
  File "C:\Program Files (x86)\foobar2000\pygrabber\scripts\LeosLyrics.py", line 46, in Query
    child = doc.getElementsByTagName("lyric")[0]
IndexError: list index out of range
lyrDB succeeds



And why does both AZlyrics rely on google lucky, when there is a site structure?
Azlyrics:
http://www.azlyrics.com/lyrics/%artist%/%title%.html  - where both artist and title is trimmed from whitespaces

darklyrics:
http://www.darklyrics.com/lyrics/%artist%/...l#%tracknumber%

Lyrics Grabber Feedback & Discussion

Reply #140
Grabber hangs trying to get lyrics for a large number of tracks. That is, it simply gets stuck somewhere in its process. The player still responds, but aborting the search or quitting the player hangs it completely. No crash report.

Lyrics Grabber Feedback & Discussion

Reply #141
@Jonas Nyrup:
Due to case sensitive, acents, you can see why lyricwiki is not as good as lyricsplugin....

@elenhil:
It will stop response if your connection lost, or provider's server refuse to connect, by default, the socket timeout is set to infinity.
Anyway, I've uploaded foo_grabber_python 0.1.11 Apha and foo_lyricsgrabber 0.3.0.6 Alpha, however, I don't know if they realy help.

CHANGES:
foo_lyricsgrabber:
FIX: Memory leak in context menu

foo_grabber_python:
ADD: Excute grabber_python/system/autoexec.py to do some stuff during startup

Lyrics Grabber Feedback & Discussion

Reply #142
You might want to do something with Google search engine abuse that comes from searching lyrics for a large number of tracks with a couple of your scripts. Like forcing a delay between queries so that it won't trigger bot detection algorythm.

Lyrics Grabber Feedback & Discussion

Reply #143
T.P Wang thank you for an excellent Plugin. I have to say I am extremely impressed. I have a simple question, and I hope I can receive a simple answer.

How can I write the Lyrics to my music collection, so that I can see them on my iPod?

Lyrics Grabber Feedback & Discussion

Reply #144
try with "UNSYNCEDLYRICS" tag in lyrics grabber configuration

Lyrics Grabber Feedback & Discussion

Reply #145
Hello. Thank you for the advise. Unfortunately, UNSYNCEDLYRICS did not add the Lyrics to my iPod/iTunes. Does anyone have any other ideas?

Lyrics Grabber Feedback & Discussion

Reply #146
*"UNSYNCED LYRICS". He forgot the space. You should probably do a rewrite of the files in mp3tag afterward, if you find it doesn't work.

Lyrics Grabber Feedback & Discussion

Reply #147
Maybe it's just me, or it's a bug:
Lyrics grabber seems to forget quiet tagging is enabled between foobar or computerrestarts. Have to enable it every day again.

0.3.0.3 alpha.

edit:
0.3.0.7 alpha forgets also. The setting is lost when foobar is closed and restarted.

Lyrics Grabber Feedback & Discussion

Reply #148
Maybe that was discussed previously, but I can not unpack archive. I use 7z plugin for total commander.

Sorry, that was my mistake: updating a tc's plugin solves problem.

TNX for this plugin

Lyrics Grabber Feedback & Discussion

Reply #149
Is there any way to download lyrics automatically, when playback starts?

TNX in advance.