Skype4MP with video (4 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
    2K
    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
    14K
    MP1 MP2 MP Shutting down DE
    I got a similar error yesterday just when a watched episode ended... Didn't copy the logs unfortunately but now i'm in a weird situation. Trakt website shows that episode as watched, but in onlinevideos (where i watched that episode) it still is not flagged as watched. The watched.json doesn't contain that episode but i think it...
    I got a similar error yesterday just when a watched episode ended... Didn't copy the logs unfortunately but now i'm in a weird...
    I have an issue that started in 1.37 and so I updated to 1.38 and updated all my installed plugins but the issue has continued. My...
    Replies
    6
    Views
    643
    Got a reply from SD ... "Looks like your last successful download was on 5/23. On 5/24 for some reason we received 194 connections between 10:54 and 11:05 triggering a denial of service attack ban. The logs show it was lifted on 5/25, but I still see the entry in iptables. I reset fail2ban and hopefully you're working again." Weird...
    Got a reply from SD ... "Looks like your last successful download was on 5/23. On 5/24 for some reason we received 194...
    I'm using MediaPortal 1.38.1 x64 and have an SD-DD lineup account. In the last week, I have not been able to update my EPG, and...
    Replies
    3
    Views
    425
    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
    800
    Top Bottom