foobar2000 v0.9 support, First now playing for 0.9 version |
foobar2000 v0.9 support, First now playing for 0.9 version |
Serge |
Mar 20 2006, 04:50 AM
Post
#1
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
AMIP compatible with the foobar2000 v0.9 (released yesterday) is available from
beta downloads page. I had no time to test everything, if you find any bugs, please report. |
Diedazz |
Mar 20 2006, 04:02 PM
Post
#2
|
Unregistered |
works good here
both win xp / win 2K |
Rubberduck |
Mar 20 2006, 07:33 PM
Post
#3
|
Unregistered |
Most excellent!
Works perfectly here - Windows XP Pro SP2, foobar 0.9, mIRC 6.17 |
Guest |
Mar 20 2006, 10:53 PM
Post
#4
|
Unregistered |
%name not working, when file is tagged with foobar2000 0.9.
I saw some chat about similiar problems with other programs, they were talking about some id3v2.4 and that some programs cannot read tags made with foobar2000 0.9. |
Guest |
Mar 20 2006, 11:00 PM
Post
#5
|
Unregistered |
|
Serge |
Mar 20 2006, 11:19 PM
Post
#6
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
Yes, it may be caused by a bug in the id3lib and UNICODE id3v2 tags support. I'm going to change my tag reading library in the next AMIP version.
Workaround: configure the string format you like in AMIP foobar %s format field (Tools | AMIP Wrapper in foobar Preferences), in AMIP use %s instead of %name to insert title formatted by foobar. |
cacko |
Mar 21 2006, 10:18 AM
Post
#7
|
Newbie Group: Members Posts: 4 Joined: 21-March 06 Member No.: 10 |
|
Jed Meyers |
Mar 21 2006, 01:04 PM
Post
#8
|
Newbie Group: Members Posts: 1 Joined: 21-March 06 Member No.: 12 |
How do I make a line break when I write a multi line .txt file?
\n does not work. For example: -- xxxxxxxxxx yyyyyyyyyy np: %name |
Serge |
Mar 21 2006, 01:16 PM
Post
#9
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
In AMIP Configurator the edit area for file integration is multiline, just put your code on multiple lines.
If you are using old options dialog or /fileonce command via callback, then you can use \n as a lines separator. Another option is to use /template command that can parse a text template file and replace AMIP functions and variables in it. Refer to AMIP docs for details. |
Lei,J |
Apr 15 2006, 12:19 PM
Post
#10
|
Unregistered |
After I install the beta version for 0.9,
I can't exit foobar correctly, the window just freezed, is there anything i can do to fix it up? |
Serge |
Apr 15 2006, 12:52 PM
Post
#11
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
Open plugin.ini in the components folder and try to change the following values to 0:
CODE CFG_RMIENABLED=1 CFG_RMICLIENT=1 Report if it helps. Also new beta will be released soon that should fix this potential problem. |
Lei,J |
Apr 15 2006, 01:05 PM
Post
#12
|
Unregistered |
Before seeing your feedback,
I tried reboot my computer, and then everything is going just fine now,without change anything in the ini files. and the value of CFG_RMICLIENT seems already be "0" by the way. anyway,thanks a lot for your reply,and of course,your fantastic plugin:) |
devh |
Apr 20 2006, 10:21 AM
Post
#13
|
Newbie Group: Members Posts: 1 Joined: 20-April 06 Member No.: 37 |
SOrry but i am noob and i cant make it work it.
I have foobar 0.9 and msn 7.5. Even I dont know how the program works. I have it installed and configured with the config app. The only thing i saw it works is when i press ctrl + alt + z it copy the title to the clipboard. And then what?? what i have to do next so msn will change my nick with the played song each time?? Sorry but i think im so noob :S could u help me??? Thanks. |
Serge |
Apr 20 2006, 10:40 AM
Post
#14
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
These integrations are not related. MSN integration works automatically if everything is configured correctly.
|
spookshow |
Jun 10 2006, 01:16 PM
Post
#15
|
Unregistered |
completely cannot get amip for foobar 0.9 and miranda to work together, the file pastes in (song name and artist only, no extra info) but it will not send. looked for the option for specific commands, cannot find it in the configurator, any help would be lovely
|
gandalf |
Jul 21 2006, 02:54 PM
Post
#16
|
Newbie Group: Members Posts: 3 Joined: 21-July 06 Member No.: 105 |
Hello Serge,
I have written a nice HTML output and now I want to put the folder.jpg into the same directory as the html. But this does not work: /exec:(copy) %fpath\folder.jpg X:\ 1) put this in "Callbacks/Web - Timer" -> nothing happens 2) put this in "IRC - Presets" -> nothing happens. I use the configurator 0.2.1 and foo_amipwrapper 0.9.0 Can anyone help? |
Serge |
Jul 21 2006, 05:14 PM
Post
#17
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
There is no such command as "copy", it can only work in command line shell (cmd.exe). So the correct way would be:
/exec:(cmd.exe) /C copy %fpath\folder.jpg X:\ |
gandalf |
Jul 24 2006, 12:51 PM
Post
#18
|
Newbie Group: Members Posts: 3 Joined: 21-July 06 Member No.: 105 |
There is no such command as "copy", it can only work in command line shell (cmd.exe). So the correct way would be: /exec:(cmd.exe) /C copy %fpath\folder.jpg X:\ Thank you! I set the path in double quotes because of windows spaces in foldernames and now it works great! /exec:(cmd.exe) /C copy "%fpath\folder.jpg" X:\ |