home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
Watch / Listen Media
Listen Music
Visualisations in 1.2Beta
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="BassFan" data-source="post: 743126"><p><strong>AW: Re: AW: Visualisations in 1.2Beta</strong></p><p></p><p></p><p></p><p>is visible my Company and Name then the Callback for handle</p><p>of filename (SongTitle) is not implement or implement correctly.</p><p>you are a programmer then you can do this self with this Information</p><p></p><p>[CODE] public void BASSVIS_StateCallback(BASSVIS_PLAYSTATE NewState)</p><p> {</p><p> //CallBack PlayState for Winamp only</p><p> switch (NewState)</p><p> {</p><p></p><p> case BASSVIS_PLAYSTATE.Stop:</p><p></p><p> if ((Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING) || (Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING))</p><p> {</p><p></p><p> StopPlaying();</p><p> BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.Stop);</p><p> }</p><p> break;</p><p> case BASSVIS_PLAYSTATE.Play:</p><p></p><p> if (!(Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING) && !(Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING))</p><p> {</p><p> PlayFile();</p><p> }</p><p> else</p><p> {</p><p> Bass.BASS_ChannelPlay(Stream, false);</p><p> BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.Play);</p><p> Paused = false;</p><p> }</p><p> break;</p><p> case BASSVIS_PLAYSTATE.Pause:</p><p></p><p> Paused = false;</p><p> FilePaused();</p><p> BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.Pause);</p><p> break;</p><p> case BASSVIS_PLAYSTATE.PrevTitle:</p><p></p><p> PlaylistPos = Playlist.SelectedIndex;</p><p> if (PlaylistPos > 0)</p><p> {</p><p> PlayPrev();</p><p> }</p><p> break;</p><p> case BASSVIS_PLAYSTATE.NextTitle:</p><p></p><p> if (PlaylistPos < (Playlist.Items.Count - 1))</p><p> {</p><p> PlayNext();</p><p> }</p><p> break;</p><p> case BASSVIS_PLAYSTATE.SetPlaylistPos:</p><p></p><p> Playlist.SelectedIndex = BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.GetSelectedTitlePos);</p><p> PlaylistPos = Playlist.SelectedIndex;</p><p> PlayFile();</p><p> break;</p><p> case BASSVIS_PLAYSTATE.SetPlaylistTitle:</p><p></p><p> if ((Playlist.Items.Count != 0) && (lstPathList.Items.Count != 0)) </p><p> {</p><p></p><p> BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.SetPlaylistTitle, -1, </p><p> Playlist.Items[PlaylistTitlePos].ToString());</p><p> } </p><p> break;</p><p> case BASSVIS_PLAYSTATE.GetPlaylistTitlePos:</p><p></p><p> PlaylistTitlePos = BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.GetPlaylistTitlePos);</p><p> break;</p><p></p><p> }</p><p> }</p><p></p><p> #endregion BASSVIS_StateCallback()</p><p>[/CODE]</p><p></p><p>greets</p><p></p><p>anybody tell me for the source of Bass_Vis</p><p>yes you can have it for €2500... 250 Euro under the "Unlimited Commercial licence: €2750" from Bass without source code <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite1" alt=":)" title="Smile :)" loading="lazy" data-shortname=":)" /></p><p></p><p>greets</p></blockquote><p></p>
[QUOTE="BassFan, post: 743126"] [b]AW: Re: AW: Visualisations in 1.2Beta[/b] is visible my Company and Name then the Callback for handle of filename (SongTitle) is not implement or implement correctly. you are a programmer then you can do this self with this Information [CODE] public void BASSVIS_StateCallback(BASSVIS_PLAYSTATE NewState) { //CallBack PlayState for Winamp only switch (NewState) { case BASSVIS_PLAYSTATE.Stop: if ((Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING) || (Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING)) { StopPlaying(); BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.Stop); } break; case BASSVIS_PLAYSTATE.Play: if (!(Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING) && !(Bass.BASS_ChannelIsActive(Stream) == BASSActive.BASS_ACTIVE_PLAYING)) { PlayFile(); } else { Bass.BASS_ChannelPlay(Stream, false); BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.Play); Paused = false; } break; case BASSVIS_PLAYSTATE.Pause: Paused = false; FilePaused(); BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.Pause); break; case BASSVIS_PLAYSTATE.PrevTitle: PlaylistPos = Playlist.SelectedIndex; if (PlaylistPos > 0) { PlayPrev(); } break; case BASSVIS_PLAYSTATE.NextTitle: if (PlaylistPos < (Playlist.Items.Count - 1)) { PlayNext(); } break; case BASSVIS_PLAYSTATE.SetPlaylistPos: Playlist.SelectedIndex = BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.GetSelectedTitlePos); PlaylistPos = Playlist.SelectedIndex; PlayFile(); break; case BASSVIS_PLAYSTATE.SetPlaylistTitle: if ((Playlist.Items.Count != 0) && (lstPathList.Items.Count != 0)) { BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.SetPlaylistTitle, -1, Playlist.Items[PlaylistTitlePos].ToString()); } break; case BASSVIS_PLAYSTATE.GetPlaylistTitlePos: PlaylistTitlePos = BassVis.BASSVIS_SetPlayState(mVisParam, BASSVIS_PLAYSTATE.GetPlaylistTitlePos); break; } } #endregion BASSVIS_StateCallback() [/CODE] greets anybody tell me for the source of Bass_Vis yes you can have it for €2500... 250 Euro under the "Unlimited Commercial licence: €2750" from Bass without source code :) greets [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Watch / Listen Media
Listen Music
Visualisations in 1.2Beta
Contact us
RSS
Top
Bottom