Visualisations in 1.2Beta (1 Viewer)

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


    Write your reply...

    Similar threads

    MP2 appeared later, and it was not published in the general documentation, they immediately made a section for it, so everything that is not in the MP2 section is for MP1, but due to multiple changes and migrations, something could have been lost, but the documentation is available. Also for MP1 you can just take any existing plugin...
    MP2 appeared later, and it was not published in the general documentation, they immediately made a section for it, so everything...
    Why cant I download any of this info? Thanks
    Replies
    3
    Views
    347
    I agree about the dash instead of colon on the LIVE thing. I did a little change to get the current program, just removed the D from the tags. Not that important, so I dont upload any new file. A little sad about the end time, but nothing to do about it.
    I agree about the dash instead of colon on the LIVE thing. I did a little change to get the current program, just removed the D...
    I'm trying to develop a new WebEPG grabber for sweden, but I got a few problem in parsing the html-file to get all programs. In...
    Replies
    9
    Views
    1K
    For a windows system zap2it workaround. Your logon information works at gracenote site. nslookup tvlistings.gracenote.com What ever ipaddress/s comes back add those ipaddresses to your hosts file at c:Windows\System32\drivers\etc\hosts (e.g. 52.32.149.165 tvlistings.zap2it.com #replacement for sudden removal of zap2it to...
    For a windows system zap2it workaround. Your logon information works at gracenote site. nslookup tvlistings.gracenote.com What...
    Today I reached the end of my guide data. Upon researching what went wrong, I learned zap2it.com is dead. So zap2xml.exe doesn't...
    Replies
    12
    Views
    2K
    There seems to be an ongoing problem that some users have when trying to install MP 1.36. I regret that I do not know the cause of this problem, and so cannot suggest a solution. However, I can suggest a workaround that (hopefully) will work for you. The workaround is to: Completely uninstall MP, MySQL, and MariaDB. Perform a...
    There seems to be an ongoing problem that some users have when trying to install MP 1.36. I regret that I do not know the cause of...
    MediaPortal was working without any issue until 24 hours ago. Then it started hanging; the disk it was installed on was quite full...
    Replies
    1
    Views
    317
    MP1 MP2 1.36/1.37 Can't delete Recorded TV entry DE
    Attached are new TV service logs with your latest DLL. I see lots of EPG events and none of the messages from earlier. Congratulations!
    Attached are new TV service logs with your latest DLL. I see lots of EPG events and none of the messages from earlier. Congratulations!
    I have some weird behavior trying to operate the MP GUI in a new installation of MP 1.36 under Windows 11 Pro. Some of the remote...
    Replies
    33
    Views
    2K
    Top Bottom