Skype4MP with video (25 Viewers)

Lyfesaver74

Public Relations
  • Premium Supporter
  • September 25, 2010
    1,542
    1,122
    Texas
    Home Country
    United States of America United States of America
    Now MpFocusSetter.exe is telling telling me:

    This program can't start because MSVCP120.dll is missing from your computer. Try reinstalling the program to fix this problem.

    Basically same as before, but this time the filename does not have the D on the end.
     

    mm1352000

    Retired Team Member
  • Premium Supporter
  • September 1, 2008
    21,544
    8,236
    Home Country
    New Zealand New Zealand
    This program can't start because MSVCP120.dll is missing from your computer. Try reinstalling the program to fix this problem.
    Basically same as before, but this time the filename does not have the D on the end.
    That's because you're missing the VC++ 2013 redistributable.
    Get it here:
    http://www.microsoft.com/en-us/download/details.aspx?id=40784

    You probably need the x86 (32 bit) one since MP is 32 bit software (runs under WOW64 on 64 bit OSes).
     

    Quarter

    MP Donator
  • Premium Supporter
  • June 21, 2010
    722
    138
    Queenstown
    Home Country
    New Zealand New Zealand
    @mts How are you handling the Skype window? There are ways to attach it to MP Context Graphics so its focused with mp on top, I found there are two ways, one works better than the other. I have been dealing with this tricky little beast of displaying windows in MP for a long time. Think the last plugin I did like this was FlashGames using Unity and flash players, Plugin didn't have much interest so I just dropped it. But I'm sure the hooks and window handling I used could be of some help? You might be past this problem already, Just letting you know I would hate to see someone stuck for as long as I was. Cheers
     

    Quarter

    MP Donator
  • Premium Supporter
  • June 21, 2010
    722
    138
    Queenstown
    Home Country
    New Zealand New Zealand
    @mts I started to have a play with @offbyone s svn to start Skype with a certain user with system diagnostics but this way It doesn't start in silent mode is there a way to do it with the api?

    Code:
    if (!m_skypeAccess.Client.IsRunning)
                {
                  Log.Debug("Skype4MP ==> Starting Skype client");
                  ProcessStartInfo startInfo = new ProcessStartInfo();
                  startInfo.FileName = @"C:\Program Files (x86)\Skype\Phone\Skype.exe";
                  startInfo.Arguments = "/secondary /username:USERNAME /password:PASSWORD";
                  startInfo.CreateNoWindow = true;
                  startInfo.WindowStyle = ProcessWindowStyle.Hidden;
                  System.Diagnostics.Process.Start(startInfo);
                  //m_skypeAccess.Client.Start(false, false);
                  Log.Debug("Skype4MP ==> Started  Skype client");
                }
     
    Last edited:

    mts

    Portal Pro
    September 2, 2007
    317
    25
    Home Country
    Germany Germany
    You can start skype by skype-api:

    Code:
     m_skypeAccess = new SKYPE4COMLib.Skype();
    
    if (!m_skypeAccess.Client.IsRunning)
    {
        m_skypeAccess.Client.Start(false, false);
    }
    
    // This should be handled in another thread.
    m_skypeAccess.SilentMode = true;
    cmd.Command = "SET SILENT_MODE ON"
    cmd.Blocking = true;
    cmd.Expected = s;
    m_skypeAccess.SendCommand(cmd);

    Actually I have no idea how to change the current user.
    The way you try to start skype would have the advantage that you can have control over the focus, as MP would be the owner of the skype process. Anyway I'm not sure if skype will like this...
     

    Users who are viewing this thread

    Similar threads

    I meant use MP client to try to spot how it's requesting streams for specific channels and then try to do the same with VLC. TV Server development looks dead so I'm afraid you're going to have to figure that out by yourself if it's even possible.
    I meant use MP client to try to spot how it's requesting streams for specific channels and then try to do the same with VLC. TV...
    Hi everyone, I've set up Mediaportal TV Server on a Windows 11 box, tuner deteced okay, scanned channels, can preview, all seems...
    Replies
    8
    Views
    1K
    Well, all that remains is to find someone who will add this render if it is a render.
    Well, all that remains is to find someone who will add this render if it is a render.
    Are there plans to support other video renderers? MadVR got added a while ago, but this a 'hardcoded' selection in the...
    Replies
    23
    Views
    9K
    I don't know about MP2 but as you said you tried MP1 too, how is the MP music config ? MP(1) will only use LAV if you select "Internal DirectShow player" as music output, but then you lose gapless playback. If you you don't have multichannel music you can choose WASAPI as the output and set the number of speakers to stereo. I have...
    I don't know about MP2 but as you said you tried MP1 too, how is the MP music config ? MP(1) will only use LAV if you select...
    Not sure if this a a bug/config/settings problem. I am running a media portal 2.5 server with 2.41 client but it seems I get the...
    Replies
    1
    Views
    656
    Not exactly sure how....but have now managed to correct this issue.:rolleyes:
    Not exactly sure how....but have now managed to correct this issue.:rolleyes:
    Using latest 64 bit MP1......for some time.....no problems! Now find that video has no audio.....but TV audio is fine...
    Replies
    1
    Views
    606
    OK....perhaps impatient of me I know, but went for a full reinstall....and now up and running once more. Have no idea what was at the root of this problem....still wondering if it may've been due to a Win11 update earlier this week?
    OK....perhaps impatient of me I know, but went for a full reinstall....and now up and running once more. Have no idea what was at...
    Have used MP1.38 64 successfully since it's introduction.....now something has changed. Video folders are still present.....but now...
    Replies
    3
    Views
    1K
    Top Bottom