Visualisations in 1.2Beta (2 Viewers)

dirki1972

Portal Pro
July 23, 2007
217
16
Home Country
Germany Germany
AW: Visualisations in 1.2Beta

Ok in Deutsch...
Ich verstehe eure probleme nicht.
Unter Win7 wird jeglicher Pfad der nicht korrekt ist ignoriert.
Ich habe selber Plugins für Winamp geschrieben und kenne mich wirklich bestens mit der API für die Visualisierungs Plugins aus.

Es ist fakt das die konfigurationen im Pfad
C:\Users\Your Name\AppData\Roaming\Winamp\Plugins

ausgeführt werden.
Alle anderen werden wenn Milk läuft von diesen einfach ignoriert.
Jetzt überlegt euch wie ihr das handhaben wollt damit das problem endlich mal aus der Welt geschafft wird.
Ini Dateien innerhalb des Anwendungspfad abzulegen ist einfach fade ;)
Win7 auch als angemeldeter Admin mit ausgeschalteten UAC nutzt da nichts.
Die INI Dateien werden im Anwendungspfad einfach nicht oder fehlerhaft gelesen.

EDIT:
Wenn Milk nicht sichtbar wird in dem ConfigDialog von MP dann fehlen definitiv Dateien.
Ab Milk 2.2 wird ein Manifest (Microsoft.VC90.CRT.manifest) und die DLL msvcr90.dll benötigt beide
Dateien müssen sich im Anwendungspfad von MP befinden.
Milk 2.0 benötigt die Datei nscrt.dll im Anwendungspfad von MP

Fehlt eine Datei davon dann wird Milk nicht im Configurations Dialog angezeigt.
Weil ich es mit der Bass_Vis nicht zulasse das Fehlerhafte Dateien in der Anwendung angezeigt werden.
Es würde auch keinen Sinn machen da sie eh nicht laufen wenn Bibliotheken fehlen.

Habe die version jetzt mal Installiert.. 1.2.0 Beta und keine Probleme siehe Bilder !!!
Visualisierung wird nur hier gezeigt siehe Bild 5
Leider nicht im Fenster Musik

gruss

so ich habe jetzt noch zusätzlich die Microsoft.VC90.CRT.manifest + msvcr90.dll in das MP Programmverzeichnis kopiert,
jedoch auch ohne Erfolg. Mein System Windows 7 Pro x64 (ohne SP1) Servicepack habe ich nicht installiert weil ich damit vor neuinstallation vor ein paar Tagen Probleme mit dem LiveTV hatte.

Ein paar Dateien in ein richtiges Verzeichnis kopieren dürfe ich hinkriegen, da ich in der IT Branche Selbständig bin und tag täglich
Systeme administriere. ;)

Am fehlenden SP1 kann es ja nicht liegen, oder ? Welche Milk Version ich habe kann ich nicht genau sagen, jedoch habe ich gestern den neuesten Winam Player runter geladen, daher gehe ich von aus das ich 2.2 benutze. Dazu muss ich sagen, den Winamp habe ich NICHT auf meinem HTPC installiert, sondern auf einer Virtuellen Maschiene und habe dann von dort das Verzeichnis sowie die Datei und dlll rüber kopiert. (Hintergrund: ich installiere nur das nötigste auf meinem HTPC um ihn nicht voll zu müllen).

gruß
dirk
 

SpudR

Retired Team Member
  • Premium Supporter
  • July 27, 2007
    2,657
    718
    Yorkshire, UK
    Home Country
    England England
    #Working now# :D
    Here's what I did:
    Got the 2010 C++ (x86) redist @ Download details: Microsoft Visual C++ 2010 Redistributable Package (x86)
    Got the C++ 2008 sp1 (x86) redist @ Download details: Microsoft Visual C++ 2008 SP1 Redistributable Package (x86)
    Got the C++ 2005 redist @ Download details: Microsoft Visual C++ 2005 Redistributable Package (x86)

    Installed them in 2005 - 2008 - 2010 order
    Rebooted
    Installed Winamp (5.601)
    Copied the vis_milk2.dll and the Milkdrop2 folders to C:\Program Files (x86)\Team MediaPortal\MediaPortal\plugins\
    Ran the MP configuratorororor and the viz now appears in the list.
    Ran MP and played 'Girl from Mars' and 'Voodoo Chile' at about 80% volume and went full screen...
    Tripped out drug free for a while :D
    Noticed the neighbours banging on the wall once I'd stopped the playback :oops:
    Went round to apologise
    (Those last few steps aren't necessarily required ;) )

    I'm back to being a chicken of happiness now :)
     

    SpudR

    Retired Team Member
  • Premium Supporter
  • July 27, 2007
    2,657
    718
    Yorkshire, UK
    Home Country
    England England
    Nope - nothing in that regard :(
    I cannot get into the settings within the plugin either (the ones where the plugin plays in the background NOT the ones about framerate)
     

    SpudR

    Retired Team Member
  • Premium Supporter
  • July 27, 2007
    2,657
    718
    Yorkshire, UK
    Home Country
    England England
    Sorry - i took the shotgun approach
    I suspect that it's the 2008 SP1 one though as I had issues and I KNOW that that 2005 version was installed (the Imon software installs it) and that MP installs 2010.
     
    B

    BassFan

    Guest
    AW: Re: AW: Visualisations in 1.2Beta

    It shows some strange name - BassVis - BrewIdeas@EmilWess.

    LOL i'm the Developer of bass_vis so you can show visualization with Mediaportal..
    When use my API correctly and all paths and file are working.

    greets

    Anything that can be done about the title problem? :)

    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()

    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
     

    hwahrmann

    Development Group
  • Team MediaPortal
  • September 15, 2004
    4,633
    2,457
    Vienna, Austria
    Home Country
    Austria Austria
    Gents, i will check that after the weekend.
    i have 2 days before the next business trip.

    Hopefully my limited time will allow it.
    Otherwise, you have to wait another week. looks like i will be at home some days the week after next week.
     

    Users who are viewing this thread

    Similar threads

    MP1 MP2 IPTV in New Zealand DE
    that will only work if the username+password is in the m3u8 url. I have one like that and it works pretty ok
    that will only work if the username+password is in the m3u8 url. I have one like that and it works pretty ok
    I would love to get IPTV working on my Mediaportal. I have the TV server and three clients working great, but a recent power supply...
    Replies
    8
    Views
    823
    Hi, yes, you are right. The official x64 1.32 is buggy. You can try a new installers from this post if you like.
    Hi, yes, you are right. The official x64 1.32 is buggy. You can try a new installers from this post if you like.
    hi, I'm setting up a new computer and have installed MP 1.3.2 after a few goes and getting all the prereqs installed, I was...
    Replies
    3
    Views
    747
    To be fair the normal uninstall is usually more than sufficient. I regularly uninstall and reinstall MP 1 as part of the testing process and only very rarely have I needed to use the manual procedure posted by @CyberSimian to overcome the error you ran into. I also believe there is a procedure to repair the MySQL install in the event...
    To be fair the normal uninstall is usually more than sufficient. I regularly uninstall and reinstall MP 1 as part of the testing...
    I am trying to install Mediaportal with TV Server. I tried many versions, including current x64 and new prerelease x86, and...
    Replies
    3
    Views
    514
    MP1 MP2 Delete recordings DE
    Hi, please check the yellow box (almost bottom of the page) about deleting recordings in the wiki. It’s possible to delete recordings, if access is guaranted. I’m not sure which connection problems you have. Normally the client is directly connected to the server on startup. In case you feel it’s too long, please describe the issue...
    Hi, please check the yellow box (almost bottom of the page) about deleting recordings in the wiki. It’s possible to delete...
    Hi, I can't seem to find any posts in this forum or on the wiki on deleting recordings. I am currently running 2.4.1 and there...
    Replies
    1
    Views
    427
    MP1 MP2 Skin Properties DE
    Thanks RoChess. Somehow I always forget the web archive when looking for information that leads to dead links. :rolleyes:
    Thanks RoChess. Somehow I always forget the web archive when looking for information that leads to dead links. :rolleyes:
    Not sure if I’ve missed this info somewhere here but is there a full list or wiki that’s actually working with a full list of...
    Replies
    4
    Views
    859
    Top Bottom