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: Samurize plugin and 1.0.1 (Read 5497 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Samurize plugin and 1.0.1

I've got my samurize config set up finally, only to pull up Fb2k and see it tell me that the AMPI plugin is broken! 

Since there has been very few updates of samurize in the last little while, I was wondering if anyone has the updated (.9 SDK version) of foo_samurize?

edit: I'm on 7 x64.

Samurize plugin and 1.0.1

Reply #1
Download and install Shpeck, which contains enough Winamp API emulation for most third party software, as well as the visualizations it was designed to host.

Samurize plugin and 1.0.1

Reply #2
I unpacked Shpeck to foobar plugins folder but samurize's AMPI-plugin still doesn't detect songs and such...

Samurize plugin and 1.0.1

Reply #3
I unpacked Shpeck to foobar plugins folder but samurize's AMPI-plugin still doesn't detect songs and such...


with spcheck you (can/have) to use samurize with meters in winamp mode... in config editor: Add meter / media / winamp

just now ive tried fb2k 1.0.1 + spcheck 0.3.7 + samurize 1.64.3 and it works.


Samurize plugin and 1.0.1

Reply #5
with spcheck you (can/have) to use samurize with meters in winamp mode... in config editor: Add meter / media / winamp

Ah, thanks. Okay, this works a little. But not completely.

F.e. %wt shows not only title & artist, it also shows title number. So I don't get artist name, artist title and track number separatly, as I would need them for my config because of the style. %r (bitrate) also doesn't work. ID3Tags (%t, %ar and so on) doesn't get read, too.

Are you able receive track title and artist without any further informations? (%wp shows album and track#, %wt shows track#)


You could use foo_np_simple to write all you need to a textfile and use textmeters to read the info from that file. My experience is that it is less buggy then ampi.

This is great! I am playing around with it, and it seems I can realize what I wanted with this plugin. Edit: Yeah, this plugin is really what I needed. But I have one problem: I would like to have a progress bar, but don't know how to output a progress value in %. It seems there is no format for included in foobar. Has someone an idea how I could realize a progress bar or % value?

F.e. when the track is 2 min long, and 1 min is played already, I would need a 50 as value output (foobar) or input (samurize).

Samurize plugin and 1.0.1

Reply #6
I would like to have a progress bar, but don't know how to output a progress value in %. It seems there is no format for included in foobar. Has someone an idea how I could realize a progress bar or % value?

F.e. when the track is 2 min long, and 1 min is played already, I would need a 50 as value output (foobar) or input (samurize).


In foobar:

Code: [Select]
$mul($div(%playback_time_seconds%,%length_seconds%),100)


i hope div return number in float format... if not than:

Code: [Select]
$div($mul(%playback_time_seconds%,100),%length_seconds%)

Samurize plugin and 1.0.1

Reply #7
Code: [Select]
$div($mul(%playback_time_seconds%,100),%length_seconds%)

I tried it with $sub -.-

But this one does it! KISS!!! Perfect. Thanks for all your help, guys.

This is the result, all done with foo_np_simple:

Samurize plugin and 1.0.1

Reply #8
Nice one! I need to update my last.fm sidebar with a progressbar... never got around making it. first I need to check if samurize works ok in ubuntu as I switched completely to it.

Samurize plugin and 1.0.1

Reply #9
I tried it with $sub -.-


Hh silly .) its simple match just used with correct tagz  glad to be of help

I need to check if samurize works ok in ubuntu as I switched completely to it.


Well under wine... something would probably work but bare in mind that samurize use some crazy techniques to implement itself into windows so functionality could be a bit off