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

    Similar threads

    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
    814
    MP1 MP2 MP2 - V2.5 Thumbnail issue DE
    There seems to be an issue how MP2 is displaying TV recordings depending on whether the media source is on a local hard drive or a network storage. When I move the location of the TV recordings to a NAS, thumbnails will be displayed properly, otherwise they will not appear. Even more strange, when adding the local harddrive manually...
    There seems to be an issue how MP2 is displaying TV recordings depending on whether the media source is on a local hard drive or a...
    There seems to be an issue how MP2 is displaying TV recordings depending on whether the media source is on a local hard drive or a...
    Replies
    0
    Views
    175
    OK - Will care about ;)
    OK - Will care about ;)
    In version 1.36 (I think), technical specifications were added to the center panel of the movie info screen when 'Movie Info before...
    Replies
    3
    Views
    185
    Got a solution, with this log entry, I found this site, which helped me: https://stackoverflow.com/questions/5247659/system-management-managementexception
    Got a solution, with this log entry, I found this site, which helped me...
    Hello, I have a problem, that i cannot start reocordings anymore and I cannot delete old recordings with MP1. This started two...
    Replies
    1
    Views
    242
    That was the correction I made in BasicHome for the 1.35 Prerelease which you adddd to repo ;)
    That was the correction I made in BasicHome for the 1.35 Prerelease which you adddd to repo ;)
    I'm going bananas here!! Used MP1 since MP1.10 or so.....an haven't had problems for years! Am using latest Dune...
    Replies
    8
    Views
    1K
    Top Bottom