HydrogenAudio

Hosted Forums => foobar2000 => 3rd Party Plugins - (fb2k) => Topic started by: fbuser on 2010-09-19 09:35:01

Title: foo_stopafteralbum
Post by: fbuser on 2010-09-19 09:35:01
Following the forum rules, discussion for this topic (http://www.hydrogenaudio.org/forums/index.php?s=&showtopic=83743&view=findpost&p=723420) here:

simple principle: tracknumber = totaltracks -> stop after current
A little bit too simple IMHO. You assume that an album will always be played in tracknumber order and that the last track of an album is available. Further, depending on the numbering scheme you use for multi-disc albums, it will also not work, if totaltracks = number of all tracks, but the tracks of the discs are numbered per disc.
Title: foo_stopafteralbum
Post by: grimes on 2010-09-19 15:10:56
Thanks for feedback.

it is not necessary to play album in tracknumber order. only last track is decisive for stop. component should work for complete albums.
multi-disc albums problem could probably be solved, but playing last track of each disc is also mandatory here.
I'm thinking about something like max(tracknumberold, tracknumber) for disc1 etc. and subtracting this value from totaltracks.

by the way: heard about problem "Failed to load DLL: foo_stopafteralbum.dll Reason: This component is missing a required dependency, or was made for different version of foobar2000." on some environments. I'm a novice in component development. I did run "dependency walker" for foo_stopafteralbum and found dependencies Kernel32.dll, OLEaut32.dll and MSVCR100.dll and subdependencies. Is this ok? (vc10/vista32bit/SDK 2010-05-21)
Title: foo_stopafteralbum
Post by: fbuser on 2010-09-19 17:02:27
by the way: heard about problem "Failed to load DLL: foo_stopafteralbum.dll Reason: This component is missing a required dependency, or was made for different version of foobar2000." on some environments. I'm a novice in component development. I did run "dependency walker" for foo_stopafteralbum and found dependencies Kernel32.dll, OLEaut32.dll and MSVCR100.dll and subdependencies. Is this ok? (vc10/vista32bit/SDK 2010-05-21)
As you are probably using a German Visual C++ 2010, you should set the following to get rid of the dependency for msvcr100.dll (probable English equivalents in brackets):
Right click on your project and choose the following path
-> Eigenschaften (Properties)
-> Konfigurationseigenschaften (Configuration properties)
-> C/C++
-> Codegenerierung (Code generation)
-> Laufzeitbibliothek (Run time library)
-> Multithreaded (/MT)
Title: foo_stopafteralbum
Post by: grimes on 2010-09-20 08:56:18
Muliithreaded (/MT) was/is activatated on my builds.

Can nevertheless get rid of msvcr100.dll dependency on build of WIN32 release.

Ignoring msvcrt.lib figures out the problem:

Quote
1>------ Erstellen gestartet: Projekt: foo_stopafteralbum, Konfiguration: Release Win32 ------
1>LINK : warning LNK4075: /INCREMENTAL wird aufgrund der Angabe von /OPT:ICF ignoriert.
1>  pfc.lib(string.obj) : Es wurde ein mit /GL kompiliertes MSIL .netmodule oder module gefunden. Verknüpfung wird mit /LTCG erneut gestartet. Fügen Sie /LTCG zur Linkbefehlszeile hinzu, um die Linkerleistung zu erhöhen.
1>LINK : warning LNK4075: /INCREMENTAL wird aufgrund der Angabe von /LTCG ignoriert.
1>    Bibliothek "C:\Users\****\Documents\Visual Studio 2010\Projects\fb2k3\foobar2000\foo_stopafteralbum\Release\foo_stopafteralbum.lib" und Objekt "C:\Users\****\Documents\Visual Studio 2010\Projects\fb2k3\foobar2000\foo_stopafteralbum\Release\foo_stopafteralbum.exp" werden erstellt.
1>pfc.lib(guid.obj) : error LNK2001: Nicht aufgelöstes externes Symbol "__imp__strchr".
1>foobar2000_SDK.lib(filesystem.obj) : error LNK2001: Nicht aufgelöstes externes Symbol "__imp___wfopen".

1>C:\Users\****\Documents\Visual Studio 2010\Projects\fb2k3\foobar2000\foo_stopafteralbum\Release\foo_stopafteralbum.dll : fatal error LNK1120: 2 nicht aufgelöste externe Verweise.
========== Erstellen: 0 erfolgreich, Fehler bei 1, 4 aktuell, 0 übersprungen ==========
Title: foo_stopafteralbum
Post by: fbuser on 2010-09-20 22:28:10
As you already detected, ignoring msvcrt.lib is not a solution, but as far as I remember VC2010 is setting runtime library setting to Multithreaded-Dll (/MD), while converting the SDK-projects to VC2010 format. So, you should also check the four SDK projects for this setting.
Title: foo_stopafteralbum
Post by: grimes on 2010-09-20 22:42:24
Thanks, works now.
Title: foo_stopafteralbum
Post by: thi3nki3p on 2010-09-21 02:25:12
Thanks for the component.
Could you also make repeat album, instead of stop something like go back totaltrack - 1. It would be awesome.
Title: foo_stopafteralbum
Post by: grimes on 2010-09-26 07:22:35
Sorry, not possible.


Stop after album v0.2 released

(see Upload section)
Title: foo_stopafteralbum
Post by: grimes on 2010-09-27 13:00:49
Stop after album v0.4 (http://www.hydrogenaudio.org/forums/index.php?s=&showtopic=83743&view=findpost&p=724501) released

(see Upload section for download und changelog)


Title: foo_stopafteralbum
Post by: Jny on 2010-09-27 15:54:57
Can you add stop after queue? i have component for this, but i want all in one
Title: foo_stopafteralbum
Post by: grimes on 2010-09-27 17:12:07
Why should i do this. Case's component is doing the job excellent. I don't have an alternative or better concept for this functionality at all.
Title: foo_stopafteralbum
Post by: thi3nki3p on 2010-10-01 19:36:56
Could you uncheck stop after current after all actions have been taken.
I think it's conventional to restore the initial state and it could solves bunch of weird behavior, atleast in my case.


My setting: Order is default. Cursor follows playback checked, stopafteralbum default setting.

1. Stop after album, repeat album checked
Playback cursor does go back from last song to the first, but after that the first song is being repeated.

2. Stop after album, skip album checked
After finishing the last song of album 1 playback skips album 2 then plays first song of album 3 then skips the rest of album 3 and plays 1st song of album 4 and so on.

I noticed stop after current is still checked, so after I uncheck it, playback works how it should again.
Title: foo_stopafteralbum
Post by: grimes on 2010-10-01 20:33:06
Maybe these problems are because Preferences | Playback | Stops playback after current track | Reset when stopping is not activated.

(Stops playback after current track deactivated)
Title: foo_stopafteralbum
Post by: thi3nki3p on 2010-10-01 20:52:19
Awesome! I didn't know that option. But it works perfectly now.
Thanks.
Title: foo_stopafteralbum
Post by: grimes on 2010-10-01 21:23:16
Ok, i have implemented reset when stopping in component code, when stop after album is active.

I'll release a bugfix version in a few days (please report bugs for that).

Title: foo_stopafteralbum
Post by: matav on 2011-01-18 10:18:09
great component! how did i ever miss this!!!?
But... i have encountered some problems with it.
The Random Album and the Skip Album options work in a weird fashion.
in my case:
> if i choose Random Album, then after the current album's last track is played, it goes to the immediate next album but then goes back to the previous and starts going up to the first track of the album (the one which i just finished listening to)
> if i choose Skip Album, then after the current album's last track is played, it goes to the immediate next album, skips 2 tracks and plays the third track. and that's the end of this option's use after which it will still be shown as checked but i don't find any difference in the playing order or sequence.

i suppose i must be doing something majorly wrong so forgive my lapses since i just installed this component.

also, can you implement these options:
> a panel as big as a button (but still sizeable). On a right-click, it should provide all your options.
or
> as a drop down box like the playlist order or like foo_uie_playlists_dropdown
and
> cascade your options in it's own context menu (like playback > order) since you have provided so many options.

imo, it could get less messy and also become easy to access.

--
fyi: my playlist order is set to default and the cursor follows playback (if these even matter)
Title: foo_stopafteralbum
Post by: grimes on 2011-01-18 16:41:12
> if i choose Random Album, then after the current album's last track is played, it goes to the immediate next album but then goes back to the previous and starts going up to the first track of the album (the one which i just finished listening to)

I don't understand. You played last track, and then first track? Thats normal, random number generator found trackno. 1 after playing last track. Cursor goes for a moment to first track of next album, because I use (buildin) "Stop after current" as trigger for action.

> if i choose Skip Album, then after the current album's last track is played, it goes to the immediate next album, skips 2 tracks and plays the third track. and that's the end of this option's use after which it will still be shown as checked but i don't find any difference in the playing order or sequence.

Maybe wrong tagging? (3/2 tracknumber/totaltracks)
I've tested it here with several albums: whole next album ist skipped.

> a panel as big as a button (but still sizeable). On a right-click, it should provide all your options.
or
> as a drop down box like the playlist order or like foo_uie_playlists_dropdown

Both are good idea's for new (stand alone) components making mainmenu commands in general easier accessible.
(1st one can by realized with WSH panel too)

> cascade your options in it's own context menu (like playback > order) since you have provided so many options.

Done. (efficient, because I want to add some more mainmenu commands)

Title: foo_stopafteralbum
Post by: matav on 2011-01-20 17:42:08
Haven't got much time to check why it behaves weird for me but see...
what i do to observe the effect of the option Random Album is:
> I play the last track of an album (say PQR)
> Enable the option "Random Album"
> Let this track complete

now... what happens is:
> the cursor goes to the first track of the next album in the playlist but without playing anything, it quickly goes back to the last track of the previous album (the one i just listened to). It doesn't play this one either but continues to go up till the first track of the album PQR and then, it starts playing this track.

note: playlist has many albums

i tend to be stupid but seriously... what should the Random Album option actually do?

--
PS: incorrect tags are almost impossible to find in my library
Title: foo_stopafteralbum
Post by: grimes on 2011-01-20 18:00:20
Random album: plays a random track of current album.
(Could play accidental last track twice)

(New version: 1.4)
Title: foo_stopafteralbum
Post by: matav on 2011-01-20 18:23:41
ah! random album... track!
i presumed something else

well... now i see it working!
Title: foo_stopafteralbum.dll
Post by: pIv on 2011-01-27 13:37:29
When I check  "Control-Stop after track- Number" my foobar don't stop after playing "Number" tracks.

If I check "Control-Stop after album" and when tracknumber=totaltrack  then foobar stop.

Explain to me how to stop playing through the N tracks. I use last version of plugin - 1.7.

I solve problem. I use "playlist attributes - remove played tracks". When I uncheck this future foobar stop after N tracks normally.
Title: foo_stopafteralbum
Post by: romor on 2011-01-31 08:50:35
bug? this component resets foobar "Stop playback after the current track" regardless user preference
Title: foo_stopafteralbum
Post by: herojoker on 2011-03-18 16:47:42
This component seems to be really promising, unfortunately the documentation is perhaps a bit too brief...
A help file/text with whole english sentences would be nice. Perhaps the option names (http://i.imgur.com/NCqeQ.png) could be made a bit more verbose! What are those "-N" (N=1..7) suffixes?
Title: Re: foo_stopafteralbum.dll
Post by: スラッシュ on 2011-05-02 16:53:24
Nice work dude!  Perhaps you could include a "skip to next playlist on last in playlist" option? Since you already have stop after last track and next playlist after album, I would guess it's just a matter of combining those two? Just in case I make a playlist with multiple albums (that does happen sometimes...). 

Also, it doesn't seem to detect when a new version is out with the updater? Dunno how that works exactly, but just a heads up.

Hmm, is there a discussion thread for this component? I suppose this post should go there...
Title: foo_stopafteralbum
Post by: Decalicatan_Decalicatan on 2011-05-02 17:23:25
Your component is great but could you add the option to execute it only one (and then "reset" its setting, as the stop after current function does in foobar)?

For example I am listening to a playlist and I want to stop listening to it 2 tracks later. With your component I can do it easily but after that, it will always stop every 2 tracks (until I manually uncheck the option)


By the way I think there is a bug with "stop after track 1", because when I select it, play won't stop after the current playing track but after the following track.

Best regards,
Decalicatan Decalicatan

Title: foo_stopafteralbum
Post by: grimes on 2011-05-02 17:28:31
Quote
Perhaps you could include a "skip to next playlist on last in playlist" option? Since you already have stop after last track and next playlist after album, I would guess it's just a matter of combining those two? Just in case I make a playlist with multiple albums (that does happen sometimes...).

stop after last track does not mean last track of playlist, it means a track tagged with "lasttrack" and value "1" is the last track.

Implementation of that feature is nevertheless easy. Enable "next playlist & play" without triggering "Stop after current" should work.

Unfortunately "end of playlist" and "stop after current" causes same stop-reason: "eof", so there ist no possibilty to distinguish.
So you can't use for example "stop after album" and "after last track of playlist jump to next playlist" simultaniously.

Quote
Also, it doesn't seem to detect when a new version is out with the updater? Dunno how that works exactly, but just a heads up.

Good idea, but i don't know how to do that.

Title: foo_stopafteralbum
Post by: grimes on 2011-05-02 17:45:32
Your component is great but could you add the option to execute it only one (and then "reset" its setting, as the stop after current function does in foobar)?

In advanced preferences i've implemented commands like
-album only stop once
-time only stop once
-tracknumber ony stop once
etc.
I didn't make mainmeneu commands, because thats only for most commonly used commands

By the way I think there is a bug with "stop after track 1", because when I select it, play won't stop after the current playing track but after the following track.

I know, its not working if a track is playing already. I'll check that.
Title: foo_stopafteralbum
Post by: Decalicatan_Decalicatan on 2011-05-02 18:44:57
thanks for your quick answer !
Title: foo_stopafteralbum
Post by: スラッシュ on 2011-05-02 23:00:21
Unfortunately "end of playlist" and "stop after current" causes same stop-reason: "eof", so there ist no possibilty to distinguish.
So you can't use for example "stop after album" and "after last track of playlist jump to next playlist" simultaniously.

Ohh I understand. Is there a way of detecting whether the number you're playing is the same as the total tracks in the playlist, instead? Otherwise, I will just have to remember to switch the one off when I use the other one.

EDIT: Just tested it with scheduler, it does the same behavior you're describing here. So the way I see it, it's better to have your component, since you can turn individual behaviors on and off without having to go into the preferences.
Title: foo_stopafteralbum
Post by: スラッシュ on 2011-05-04 04:35:15
Just updated the plugin and tried your setting, but there's a couple things that may or may not be fixable, but at least don't correspond with what I'd like... The first thing is, when it skips to the next playlist, playback doesn't always start at the first track. I'm not sure why, it seems to be almost random at which track it starts... Maybe an extra command is needed/desirable, that ensures the playback starts at the first track? It doesn't seem to matter if I turn on cursor follows playback or playback follows cursor, if that helps.

Secondly, when you have a different playlist selected than the one it's playing from, it skips to the next playlist from what you've got selected, instead of the next from where you're playing.

Hope these things are fixable! Thanks for adding this feature, it'll be very useful once these two kinks get ironed out!

EDIT: I think I figured out what determines which song gets played in the next playlist, it's the song where the playlist got stopped last time. I guess foobar has a per-playlist cursor memory? Anyway it's definitely not what I'd want or expect...  In foo_scheduler, you can explicitly tell it to start the next playlist at track 1.
Title: foo_stopafteralbum
Post by: スラッシュ on 2011-05-06 01:11:20
Just wanted to say the latest version works perfectly. Thanks for the effort!
Title: Re: foo_stopafteralbum.dll
Post by: badrocket on 2011-06-22 23:04:16
Thank you so much for this.
Title: foo_stopafteralbum
Post by: irbiz7 on 2011-12-14 10:29:21
http://www.hydrogenaudio.org/forums/index....29&hl=pause (http://www.hydrogenaudio.org/forums/index.php?showtopic=92029&hl=pause)

Could you make gap length equal length of the track?
Title: foo_stopafteralbum
Post by: grimes on 2011-12-14 17:42:26
New Version 3.2, containing
gap length = track length

http://www.hydrogenaudio.org/forums/index....st&p=778971 (http://www.hydrogenaudio.org/forums/index.php?showtopic=83743&view=findpost&p=778971)

Title: foo_stopafteralbum
Post by: irbiz7 on 2011-12-15 11:16:59
Working good, feeling excellent. Thanks.
Title: foo_stopafteralbum
Post by: dida1337 on 2012-02-11 20:08:01
I might not be getting something but whenever I choose "Menu| Playback | Control | Stop after album ON" I can't get a tick (as in, I can't seem to select that option). As a matter of fact I can't select any of them except "Menu | Playback | Control | Stop after albums once | 1 - 10 (ON)" and when I select, for example 1, my foobar stops after album is over but only once (that's how this option is supposed to work I think).

So how can I get my foobar to stop after any album gets to the end?
Title: foo_stopafteralbum
Post by: grimes on 2012-02-11 21:40:53
I've no idea, why this happens. Can't reproduce this.
tick und untick always works.
You can try to reset branch (right click) in Advanced Preferences | Playback | Stop after album
An old installation of stop after album might left older settings.

Title: Re: foo_stopafteralbum.dll
Post by: irbiz7 on 2012-04-11 09:11:02
foobar 1.1.11 -> fading -> automatic track change(10000-0) -> gap track - track length is turn on -> track don't change
(visibly seekbar stop in few second before end of track)
Title: Re: foo_stopafteralbum.dll
Post by: grimes on 2012-04-11 10:00:42
Quote
track length is turn on
This feature means that you have to wait the whole length of the last track before the next track starts.
example: last track length: 5min23sec -> gap is 5min23sec. Keep in mind that there can be very long gaps, be cautious.

Quote
track don't change
Can't reproduce. next track starts after length of last track

Quote
(visibly seekbar stop in few second before end of track)
This only happens here, if i choose "automatic track change - Fade out:10000" and "stop after current" is active.

EDIT: Ok, i think i know now what the problem might be:
There is no fade-in in "gap track" mode. This is easy to explain: there is no automatic track change. It works like this: "stop after current" is set, at end of track a timer is activated, and then next track is started. (so no "automatic track change")
Title: Re: foo_stopafteralbum.dll
Post by: irbiz7 on 2012-04-12 06:21:33
my problem is loud track after gap.
Quote
There is no fade-in in "gap track" mode.

question is can i turn-on fade-in after track gap?
Title: Re: foo_stopafteralbum.dll
Post by: grimes on 2012-04-12 11:45:11
I can't find a way.
Maybe i'am wrong, but there is no option to fade-in on starting track (only "pause and stop" etc.)

EDIT:
I used for starting track after gap:
virtual void playback_control::start ( t_track_command p_command = track_command_play,bool p_paused = false)
-> no fade-in

alternative would be:
void playback_control::play_start (t_track_command p_command = track_command_play,bool p_paused = false)
fade-in?
Title: foo_stopafteralbum
Post by: Ryre Inc on 2013-03-10 23:04:49
I love this plugin!

Two requests:
Modify the stop after album feature so that when tracknumber = totaltracks -> stop after current only if tracknumber has a non-zero/non-blank value.  I am running into a problem where untagged files will stop after each track, since technically tracknumber = totaltracks = "".

My other request is to stop playback when the next track's album title does not equal the current track's album title. I suspect this would be more difficult to implement, as it requires looking at other files besides the one being played at the moment.

Thanks!
Title: foo_stopafteralbum
Post by: grimes on 2013-03-11 13:24:39
request 1: fixed in 3.5

request 2: There is already a plugin with this functionality. As I can remember, its name is foo_stop_after_current.dll? (Not sure). Its tricky, because first track of next album is played for a few milliseconds before stop.
Title: foo_stopafteralbum
Post by: Ryre Inc on 2013-03-11 14:05:54
request 1: fixed in 3.5

request 2: There is already a plugin with this functionality. As I can remember, its name is foo_stop_after_current.dll? (Not sure). Its tricky, because first track of next album is played for a few milliseconds before stop.


Wow that was quick!  Thank you, I'll try it out when I get home today.  I'll have to check out that other plugin as well, that's for the tip.
Title: foo_stopafteralbum
Post by: SoBizarre on 2013-09-09 12:31:08
Hi,
I was wondering if you would be willing to consider changing Album gap after
Code: [Select]
TRACKNUMBER = TOTALTRACKS

to something based on ALBUM field.

As it is now, it doesn't work well in case of multi-disc albums/box sets. It certainly doesn't work for people who prefer to number tracks separately for every disk of the album/set (as you get gap after every disc of the album). I reckon most(???) people number their tracks like this:

(http://i.imgur.com/wU1JBjM.jpg)

But even if we were to change numbering scheme, there is still an issue with adding to a playlist only some discs from an album/set, as we are getting gap after last track of the last disc ONLY. Below is an example - if I add an album to a playlist like shown in the screenshot, I'll get a gap. But if I only want to add first disc (very common in case of albums with bonus discs, where often you want to play original tracks only), there won't be any gap before next album in my playlist.

(http://i.imgur.com/xFtZMMZ.jpg)

I believe it would be better to have Album gap only when the next track on playlist has different ALBUM field. It wouldn't of course work in case of wrong ALBUM fields (i.e. when some people incorrectly add 'CD1', 'CD2' and so on to album titles), but then again, who does that?

Anyways, I hope the above make sense. If it does, and you agree with it, AND it's easy for you to change, it would be really great.

Cheers,
SB
Title: foo_stopafteralbum
Post by: gob on 2013-10-28 23:29:28
Is the option "Stop after album" intended to stop playback after each disc in an album? "After album" would suggest stopping after the last track on the last disc since an album can contain several discs.

For example, I have the album Pink Floyd's The Wall which is a two disc album. The ALBUM field on all tracks is set to "The Wall", the DISCNUMBER field is set to "1" and "2" for their respective discs, and the TRACKNUMBER and TOTALTRACKS are set properly according to the track number and total tracks of each disc. Yet, playback still stops after the last track of each disc.

Is it possible to correct this behavior? foo_stopaftercuralbum seems to do the trick with a little title formatting, but it has a glitch where playback doesn't stop until after a second into the next album. It would be nice to have an option that works properly.
Title: foo_stopafteralbum
Post by: grimes on 2013-10-29 05:58:55
The option "Stop after album" in foo_stopafteralbum is very simple: TRACKNUMBER = TOTALTRACKS
The plugin uses build-in "Stop after current" of foobar2000.
foo_stopaftercuralbum plays next track, reads in the ALBUM tag of the new track, compares with ALBUM tag of last track and stops after a few milliseconds..
Thats the reason for possible glitches.

There are several ways to tag multidisc albums.
It's impossible to consider all of these.

In your case, there is a possible solution for two-disc albums.
If DISCNUMBER = 1 and TRACKNUMBER = TOTALTRACKS then skip
Of course it fails for three-disc albums, since there is no TOTALDISCNUMBER.

EDIT: By the way, your turntable stops also after every disc!
Title: foo_stopafteralbum
Post by: gob on 2013-11-01 08:47:18
I see. That's too bad, I would've liked to use your component instead. Thanks for the answer though.
Title: foo_stopafteralbum
Post by: marc2003 on 2013-11-01 10:33:46
when i want to achieve this kind of functionality, i just drag the selected tracks into a new playlist. you can then dispose of it when it's finished.
Title: foo_stopafteralbum
Post by: gob on 2013-11-02 06:55:27
It's all good now. I was able to modify grimes' source code to achieve the behavior I expected. Thanks!
Title: Re: foo_stopafteralbum.dll
Post by: MaCs on 2014-01-15 15:49:47
Would it be possible to select a song in a playlist and do some sort of "stop after this track"?
Title: Re: foo_stopafteralbum.dll
Post by: grimes on 2014-01-15 19:02:46
This is a feature of fbuser's wonderful Playlist attributes. The option is called "Stop after focused track".
Title: Re: foo_stopafteralbum.dll
Post by: MaCs on 2014-01-15 20:56:25
This is a feature of fbuser's wonderful Playlist attributes. The option is called "Stop after focused track".


Good, thanks!
Title: Re: foo_stopafteralbum.dll
Post by: w00w000 on 2015-04-21 05:50:17
hi, just try 3.6, at first, good idea finally to see that "Repeat (track)" has now priority over stopAA (actually how it logically should be), but when turn "Repeat (track)" off while has stopAA active it just go to the next album after the previous last album track. bummer..

switching back to 3.4
Title: Re: foo_stopafteralbum.dll
Post by: francesco on 2024-01-21 18:19:00
hi
is the last version working for foobar 1.16.17 ?
is there still 3.4 and 3.5 ?
thanks
Title: Re: foo_stopafteralbum
Post by: grimes on 2024-01-21 19:19:56
I made a new version of Stop after album: https://www.foobar2000.org/components/view/foo_stopafteralbum
Should work with 1.16.17.
Title: Re: foo_stopafteralbum
Post by: francesco on 2024-01-22 16:42:10
I made a new version of Stop after album: https://www.foobar2000.org/components/view/foo_stopafteralbum
Should work with 1.16.17.
Hi
it doesn't work ,at least with 1.16.17 portable
I'm using 3.6 because i can't find 3.4 and 3.5
thanks
Title: Re: foo_stopafteralbum
Post by: grimes on 2024-01-22 17:03:21
I've tested with foobar2000 1.16.17 and Stop after album 1.5, released on 2023-04-29 and it works.
Title: Re: foo_stopafteralbum
Post by: francesco on 2024-01-22 19:46:08
I've tested with foobar2000 1.16.17 and Stop after album 1.5, released on 2023-04-29 and it works.
Hi Grimes
I have tested too and i'm tring to use right now but there is no a menu , I have a new portable version with only 1 component Stop after album
I haven't it in the drop menu -> file or edit or view or Playback or even Iibrary
in version 2x 32bit i can find it
may i know where is it in foobar2000 1.16.17 ?
beautiful component!
thanks
Title: Re: foo_stopafteralbum
Post by: grimes on 2024-01-22 19:57:59
Screenshot.
Title: Re: foo_stopafteralbum
Post by: francesco on 2024-01-22 20:12:29
Screenshot.
Hi Grimes
i have the same screenshot but in v2 i have lots of options ,like timebomb and others ,in v1 and  Stop after album 1.5 , i have only the item ->stop after album and nothing else
Title: Re: foo_stopafteralbum
Post by: grimes on 2024-01-22 20:42:42
Old component was overloaded. Here my components: https://www.foobar2000.org/components/author/grimes