Skype4MP with video (2 Viewers)

Lyfesaver74

Public Relations
  • Premium Supporter
  • September 25, 2010
    1,544
    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,577
    8,224
    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

    Hello, I would like to use a media server to display various learning categories. I prefer not to use software like Kodi, as it requires extensive metadata scraping that I don't need. Is it possible to instantly access the video categories when landing on the page? I would like to display a single media page with the following...
    Hello, I would like to use a media server to display various learning categories. I prefer not to use software like Kodi, as it...
    Hello, I would like to use a media server to display various learning categories. I prefer not to use software like Kodi, as it...
    Replies
    0
    Views
    274
    You can always use GitHub online But judging by the picture, you are doing well. Direct Push to Master is prohibited, create PR.
    You can always use GitHub online But judging by the picture, you are doing well. Direct Push to Master is prohibited, create PR.
    Hello, Because I was annoyed with closing MP, launch config, modify setting and start MP again, I decided to give MP the ability...
    Replies
    5
    Views
    3K
    You can find ton of guide here: https://www.avsforum.com/threads/madvr-player-support-thread.2215490/?post_id=39123050#post-39123050
    You can find ton of guide here: https://www.avsforum.com/threads/madvr-player-support-thread.2215490/?post_id=39123050#post-39123050
    Hi, I have a problem if I set madVR as Video Render. When I try to play my .mkv files I have an 'Unable to play. Video COdec...
    Replies
    3
    Views
    978
    The only changes I see are: Updated Marcel Groothuis version of the plugin to now support Media Portal 2.5 I can't say anything about the functionality of this plugin, I don't use TV Part, but if there are any changes that can be simply transferred, then I can try. But I can't give any guarantees.
    The only changes I see are: Updated Marcel Groothuis version of the plugin to now support Media Portal 2.5 I can't say anything...
    I am a long-time user of MediaPortal to watch TV. I use the Media Portal TV Server as a backend, and Kodi (previously known as...
    Replies
    15
    Views
    2K
    Hi @Greenhorn7, to help narrow this down a bit, I suspect that when the recordings menu entry is missing you are probably also missing menu entries for Videos, Movies, Series and Images too. Can you confirm? Does simply navigating to a different screen then back to home again cause the recordings menu item to show up? Those menu...
    Hi @Greenhorn7, to help narrow this down a bit, I suspect that when the recordings menu entry is missing you are probably also...
    I am running MP 2.5 with WMC skin installed. I noticed that the TV-Recording menue item is not always displaying after wakeup from...
    Replies
    10
    Views
    927
    Top Bottom