<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman,new york,times,serif;font-size:12pt"><div>Hi,<br><br>I added this plugin as part of globalhotkey plugin so this can be controlled by enabling and disabling of the same. My hook procedure cares only about the spacial keys and it will not affect other applications for that matter we are returning the output of CallNextHookEx this ensures it does't affect or break other applications. <br></div><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><br><div style="font-family: arial,helvetica,sans-serif; font-size: 13px;"><font face="Tahoma" size="2"><hr size="1"><b><span style="font-weight: bold;">From:</span></b> "vlc-devel-request@videolan.org" <vlc-devel-request@videolan.org><br><b><span style="font-weight: bold;">To:</span></b> vlc-devel@videolan.org<br><b><span style="font-weight:
 bold;">Sent:</span></b> Sat, 30 October, 2010 3:56:55 AM<br><b><span style="font-weight: bold;">Subject:</span></b> vlc-devel Digest, Vol 41, Issue 61<br></font><br>Send vlc-devel mailing list submissions to<br>    <a ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>    <a href="http://mailman.videolan.org/listinfo/vlc-devel" target="_blank">http://mailman.videolan.org/listinfo/vlc-devel</a><br>or, via email, send a message with subject or body 'help' to<br>    <a ymailto="mailto:vlc-devel-request@videolan.org" href="mailto:vlc-devel-request@videolan.org">vlc-devel-request@videolan.org</a><br><br>You can reach the person managing the list at<br>    <a ymailto="mailto:vlc-devel-owner@videolan.org"
 href="mailto:vlc-devel-owner@videolan.org">vlc-devel-owner@videolan.org</a><br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of vlc-devel digest..."<br><br><br>Today's Topics:<br><br>   1. Re: [PATCH] Code changes in Globalhokey module to support<br>      special keys when application in system tray/minimized for<br>      Windows (Geoffroy Couprie)<br>   2. Re: [videolan-announce] Update on the VLC browser    plugins<br>      (Rafa?l Carr?)<br>   3. Re: [videolan-announce] Update on the VLC browser    plugins<br>      (David Glaude)<br>   4. Re: [videolan-announce] Update on the VLC browser plugins<br>      (Rafa?l Carr?)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Fri, 29 Oct 2010 19:26:31 +0200<br>From: Geoffroy
 Couprie <<a ymailto="mailto:geo.couprie@gmail.com" href="mailto:geo.couprie@gmail.com">geo.couprie@gmail.com</a>><br>Subject: Re: [vlc-devel] [PATCH] Code changes in Globalhokey module to<br>    support special keys when application in system tray/minimized for<br>    Windows<br>To: Mailing list for VLC media player developers<br>    <<a ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a>><br>Message-ID:<br>    <AANLkTimWWe_EJXZFk7yPFC0=<a ymailto="mailto:kTvDcZ1ucJrnUSXbm2S2@mail.gmail.com" href="mailto:kTvDcZ1ucJrnUSXbm2S2@mail.gmail.com">kTvDcZ1ucJrnUSXbm2S2@mail.gmail.com</a>><br>Content-Type: text/plain; charset=UTF-8<br><br>Hello,<br><br>Using global hooks is not being a good Windows citizen. You might<br>break other applications doing so. This feature should be enabled by a<br>config option, and disabled by
 default.<br>On 10/29/10, elangovan elango <<a ymailto="mailto:elangovv@yahoo.co.in" href="mailto:elangovv@yahoo.co.in">elangovv@yahoo.co.in</a>> wrote:<br>> Hello All,<br>><br>> This patch is created to support windows special key functionality even when<br>> the<br>> application is in system tray/minimized/not interacted by the user. This is<br>> added in windows globalhotkey module. This will enable the user to interact<br>> with<br>> VLC even when it is system tray. This is implemented using windows hook<br>> concept<br>> to detect the user key press of PLAY,PAUSE, NEXT and PREVIOUS keys. Here am<br>> used<br>> WH_KEYBOARD_LL instead of WH_KEYBOARD which eliminates the need of DLL and<br>> makes<br>> it as Window Global hook which does not require any dependencies and can be<br>> part<br>> of any exe. This Current implementation only handles the This can be<br>> extended to<br>> other keys
 when needed.<br>><br>><br>> /*****************************************************************************<br>>  * win32.c: Global-Hotkey WIN32 handling for vlc<br>> *****************************************************************************<br>>  * Copyright (C) 2008-2009 the VideoLAN team<br>>  *<br>>  * Authors: Domani Hannes <ssbssa at yahoo dot de><br>> +  *             Elangovan <elangovv at gmail dot com><br>>  *<br>>  * This program is free software; you can redistribute it and/or modify<br>>  * it under the terms of the GNU General Public License as published by<br>><br>><br>> #ifdef HAVE_CONFIG_H<br>> # include "config.h"<br>> #endif<br>><br>> #include <ctype.h><br>><br>> #include <vlc_common.h><br>> #include <vlc_plugin.h><br>> #include <vlc_interface.h><br>>
 #include <vlc_keys.h><br>><br>> /*****************************************************************************<br>>  * Local prototypes<br>> *****************************************************************************/<br>>     static int Open( vlc_object_t *p_this );<br>>     static void Close( vlc_object_t *p_this );<br>>     static void *Thread( void *p_data );<br>>     LRESULT CALLBACK WMHOTKEYPROC( HWND, UINT, WPARAM, LPARAM );<br>> +  LRESULT  CALLBACK WINTRAYSUPPORTPROC( int nCode, WPARAM wParam,  LPARAM<br>> lParam);<br>><br>><br>> /*****************************************************************************<br>>      * Module descriptor<br>><br>> *****************************************************************************/<br>>     vlc_module_begin()<br>>         set_shortname(
 N_("Global Hotkeys") )<br>>         set_category( CAT_INTERFACE )<br>>         set_subcategory( SUBCAT_INTERFACE_HOTKEYS )<br>>         set_description( N_("Global Hotkeys interface") )<br>>         set_capability( "interface", 0 )<br>>         set_callbacks( Open, Close )<br>>     vlc_module_end()<br>><br>>     struct intf_sys_t<br>>     {<br>>         vlc_thread_t thread;<br>>         HWND hotkeyWindow;<br>>         vlc_mutex_t lock;<br>>         vlc_cond_t wait;<br>>         HHOOK hHook;<br>>     };<br>><br>><br>> /*****************************************************************************<br>>      * Open: initialize
 interface<br>><br>> *****************************************************************************/<br>>     static int Open( vlc_object_t *p_this )<br>>     {<br>>         intf_thread_t *p_intf = (intf_thread_t *)p_this;<br>>         intf_sys_t *p_sys = malloc( sizeof (intf_sys_t) );<br>><br>>         if( p_sys == NULL )<br>>         return VLC_ENOMEM;<br>><br>>         p_intf->p_sys = p_sys;<br>>         p_sys->hotkeyWindow = NULL;<br>>         vlc_mutex_init( &p_sys->lock );<br>>         vlc_cond_init( &p_sys->wait );<br>><br>>         if( vlc_clone( &p_sys->thread, Thread, p_intf,<br>> VLC_THREAD_PRIORITY_LOW )<br>> )<br>>         {<br>> 
            vlc_mutex_destroy( &p_sys->lock );<br>>             vlc_cond_destroy( &p_sys->wait );<br>>             free( p_sys );<br>>             p_intf->p_sys = NULL;<br>><br>>             return VLC_ENOMEM;<br>>         }<br>><br>>         vlc_mutex_lock( &p_sys->lock );<br>>         while( p_sys->hotkeyWindow == NULL )<br>>             vlc_cond_wait( &p_sys->wait, &p_sys->lock );<br>>         if( p_sys->hotkeyWindow == INVALID_HANDLE_VALUE )<br>>         {<br>>             vlc_mutex_unlock( &p_sys->lock );<br>>            
 vlc_join( p_sys->thread, NULL );<br>>             vlc_mutex_destroy( &p_sys->lock );<br>>             vlc_cond_destroy( &p_sys->wait );<br>>             free( p_sys );<br>>             p_intf->p_sys = NULL;<br>><br>>             return VLC_ENOMEM;<br>>         }<br>>         vlc_mutex_unlock( &p_sys->lock );<br>><br>>         return VLC_SUCCESS;<br>>     }<br>><br>><br>> /*****************************************************************************<br>>      *Close: destroy interface<br>><br>> *****************************************************************************/<br>>     static void Close( vlc_object_t *p_this
 )<br>>     {<br>>         intf_thread_t *p_intf = (intf_thread_t *)p_this;<br>>         intf_sys_t *p_sys = p_intf->p_sys;<br>> +        /* Unregister the HOOK Procedure */<br>> +        if( p_sys->hHook !=NULL )<br>> +           UnhookWindowsHookEx(p_sys->hHook);<br>><br>>         /* stop hotkey window */<br>>     vlc_mutex_lock( &p_sys->lock );<br>>     if( p_sys->hotkeyWindow != NULL )<br>>         PostMessage( p_sys->hotkeyWindow, WM_CLOSE, 0, 0 );<br>>     vlc_mutex_unlock( &p_sys->lock );<br>><br>>     vlc_join( p_sys->thread, NULL );<br>>     vlc_mutex_destroy( &p_sys->lock );<br>>     vlc_cond_destroy( &p_sys->wait );<br>>    
 free( p_sys );<br>> }<br>><br>> /*****************************************************************************<br>>  * Thread: main loop<br>> *****************************************************************************/<br>> static void *Thread( void *p_data )<br>> {<br>>     MSG message;<br>>     UINT i_key, i_keyMod, i_vk;<br>>     ATOM atom;<br>>     char *psz_hotkey = NULL;<br>><br>>     intf_thread_t *p_intf = p_data;<br>>     intf_sys_t *p_sys = p_intf->p_sys;<br>><br>>     /* Window which receives Hotkeys */<br>>     vlc_mutex_lock( &p_sys->lock );<br>>     p_sys->hotkeyWindow =<br>>         (void*)CreateWindow( _T("STATIC"),           /* name of window class<br>> */<br>>                
 _T("VLC ghk ") _T(VERSION),         /* window title bar text<br>> */<br>>                 0,                                           /* window style<br>> */<br>>                 0,                                   /* default X coordinate<br>> */<br>>                 0,                                   /* default Y coordinate<br>> */<br>>                 0,                                   
        /* window width<br>> */<br>>                 0,                                          /* window height<br>> */<br>>                 NULL,                                    /* no parent window<br>> */<br>>                 NULL,                              /* no menu in this window<br>> */<br>>                 GetModuleHandle(NULL),    /* handle of this program instance<br>> */<br>>                 NULL );     
                            /* sent to WM_CREATE<br>> */<br>><br>> +    //Get Module handle and register the HOOK<br>> +   HINSTANCE hExe = GetModuleHandle(NULL);<br>> +    if (hExe !=NULL)<br>> +    {<br>> +        p_sys->hHook = SetWindowsHookEx( WH_KEYBOARD_LL,<br>> (HOOKPROC)WINTRAYSUPPORTPROC, hExe, NULL);<br>> +    }<br>>     if( p_sys->hotkeyWindow == NULL )<br>>     {<br>>         p_sys->hotkeyWindow = INVALID_HANDLE_VALUE;<br>>         vlc_cond_signal( &p_sys->wait );<br>>         vlc_mutex_unlock( &p_sys->lock );<br>>         return NULL;<br>>     }<br>>     vlc_cond_signal( &p_sys->wait );<br>>    
 vlc_mutex_unlock( &p_sys->lock );<br>><br>>     SetWindowLongPtr( p_sys->hotkeyWindow, GWLP_WNDPROC,<br>>             (LONG_PTR)WMHOTKEYPROC );<br>>     SetWindowLongPtr( p_sys->hotkeyWindow, GWLP_USERDATA,<br>>             (LONG_PTR)p_intf );<br>><br>>     /* Registering of Hotkeys */<br>>     for( const struct hotkey *p_hotkey = p_intf->p_libvlc->p_hotkeys;<br>>             p_hotkey->psz_action != NULL;<br>>             p_hotkey++ )<br>>     {<br>>         if( asprintf( &psz_hotkey, "global-%s", p_hotkey->psz_action ) < 0 )<br>>             break;<br>><br>>         i_key = var_InheritInteger( p_intf, psz_hotkey );<br>><br>> 
        free( psz_hotkey );<br>><br>>         i_keyMod = 0;<br>>         if( i_key & KEY_MODIFIER_SHIFT ) i_keyMod |= MOD_SHIFT;<br>>         if( i_key & KEY_MODIFIER_ALT ) i_keyMod |= MOD_ALT;<br>>         if( i_key & KEY_MODIFIER_CTRL ) i_keyMod |= MOD_CONTROL;<br>><br>> #define HANDLE( key ) case KEY_##key: i_vk = VK_##key; break<br>> #define HANDLE2( key, key2 ) case KEY_##key: i_vk = VK_##key2; break<br>><br>> #define KEY_SPACE ' '<br>><br>> #ifndef VK_VOLUME_DOWN<br>> #define VK_VOLUME_DOWN          0xAE<br>> #define VK_VOLUME_UP            0xAF<br>> #endif<br>><br>> #ifndef VK_MEDIA_NEXT_TRACK<br>> #define VK_MEDIA_NEXT_TRACK     0xB0<br>> #define VK_MEDIA_PREV_TRACK     0xB1<br>> #define VK_MEDIA_STOP 
          0xB2<br>> #define VK_MEDIA_PLAY_PAUSE     0xB3<br>> #endif<br>><br>> #ifndef VK_PAGEUP<br>> #define VK_PAGEUP               0x21<br>> #define VK_PAGEDOWN             0x22<br>> #endif<br>><br>>         i_vk = 0;<br>>         switch( i_key & ~KEY_MODIFIER )<br>>         {<br>>             HANDLE( LEFT );<br>>             HANDLE( RIGHT );<br>>             HANDLE( UP );<br>>             HANDLE( DOWN );<br>>             HANDLE( SPACE );<br>>             HANDLE2( ESC, ESCAPE );<br>>             HANDLE2( ENTER, RETURN );<br>> 
            HANDLE( F1 );<br>>             HANDLE( F2 );<br>>             HANDLE( F3 );<br>>             HANDLE( F4 );<br>>             HANDLE( F5 );<br>>             HANDLE( F6 );<br>>             HANDLE( F7 );<br>>             HANDLE( F8 );<br>>             HANDLE( F9 );<br>>             HANDLE( F10 );<br>>             HANDLE( F11 );<br>>             HANDLE( F12 );<br>>             HANDLE( PAGEUP );<br>>             HANDLE( PAGEDOWN );<br>>             HANDLE( HOME
 );<br>>             HANDLE( END );<br>>             HANDLE( INSERT );<br>>             HANDLE( DELETE );<br>>             HANDLE( VOLUME_DOWN );<br>>             HANDLE( VOLUME_UP );<br>>             HANDLE( MEDIA_PLAY_PAUSE );<br>>             HANDLE( MEDIA_STOP );<br>>             HANDLE( MEDIA_PREV_TRACK );<br>>             HANDLE( MEDIA_NEXT_TRACK );<br>><br>>             default:<br>>                 i_vk = toupper( i_key & ~KEY_MODIFIER );<br>>                 break;<br>>         }<br>>     
    if( !i_vk ) continue;<br>><br>> #undef HANDLE<br>> #undef HANDLE2<br>><br>>         atom = GlobalAddAtomA( p_hotkey->psz_action );<br>>         if( !atom ) continue;<br>><br>>         if( !RegisterHotKey( p_sys->hotkeyWindow, atom, i_keyMod, i_vk ) )<br>>             GlobalDeleteAtom( atom );<br>>     }<br>><br>>     /* Main message loop */<br>>     while( GetMessage( &message, NULL, 0, 0 ) )<br>>         DispatchMessage( &message );<br>><br>>     /* Unregistering of Hotkeys */<br>>     for( const struct hotkey *p_hotkey = p_intf->p_libvlc->p_hotkeys;<br>>             p_hotkey->psz_action != NULL;<br>>             p_hotkey++ )<br>>    
 {<br>>         atom = GlobalFindAtomA( p_hotkey->psz_action );<br>>         if( !atom ) continue;<br>><br>>         if( UnregisterHotKey( p_sys->hotkeyWindow, atom ) )<br>>             GlobalDeleteAtom( atom );<br>>     }<br>><br>>     /* close window */<br>>     vlc_mutex_lock( &p_sys->lock );<br>>     DestroyWindow( p_sys->hotkeyWindow );<br>>     p_sys->hotkeyWindow = NULL;<br>>     vlc_mutex_unlock( &p_sys->lock );<br>><br>>     return NULL;<br>> }<br>><br>> /*****************************************************************************<br>>  * WMHOTKEYPROC: event callback<br>> *****************************************************************************/<br>> LRESULT CALLBACK WMHOTKEYPROC( HWND hwnd,
 UINT uMsg, WPARAM wParam,<br>>         LPARAM lParam )<br>> {<br>>     switch( uMsg )<br>>     {<br>>         case WM_HOTKEY:<br>>             {<br>>                 char psz_atomName[40];<br>><br>>                 LONG_PTR ret = GetWindowLongPtr( hwnd, GWLP_USERDATA );<br>>                 intf_thread_t *p_intf = (intf_thread_t*)ret;<br>>                 const struct hotkey *p_hotkeys =<br>> p_intf->p_libvlc->p_hotkeys;<br>><br>>                 if( !GlobalGetAtomNameA(<br>>                         wParam, psz_atomName, sizeof( psz_atomName ) )
 )<br>>                     return 0;<br>><br>>                 /* search for key associated with VLC */<br>>                 for( int i = 0; p_hotkeys[i].psz_action != NULL; i++ )<br>>                 {<br>>                     if( strcmp( p_hotkeys[i].psz_action, psz_atomName ) )<br>>                         continue;<br>><br>>                     var_SetInteger( p_intf->p_libvlc,<br>>                             "key-action", p_hotkeys[i].i_action );<br>><br>>                 
    return 1;<br>>                 }<br>>             }<br>>             break;<br>><br>>         case WM_DESTROY:<br>>             PostQuitMessage( 0 );<br>>             break;<br>><br>>         default:<br>>             return DefWindowProc( hwnd, uMsg, wParam, lParam );<br>>     }<br>><br>>     return 0;<br>> }<br>><br>> +<br>> /*****************************************************************************<br>> +     * WINTRAYSUPPORTPROC: event callback method<br>> +<br>> *****************************************************************************/<br>> +   LRESULT  CALLBACK WINTRAYSUPPORTPROC( int nCode, WPARAM
 wParam,  LPARAM<br>> lParam)<br>> +   {<br>> +        #ifndef VK_MEDIA_NEXT_TRACK<br>> +       #define VK_MEDIA_NEXT_TRACK     0xB0<br>> +        #define VK_MEDIA_PREV_TRACK     0xB1<br>> +        #define VK_MEDIA_STOP           0xB2<br>> +        #define VK_MEDIA_PLAY_PAUSE     0xB3<br>> +        #endif<br>> +       static HHOOK hkb=NULL;<br>> +        if  ((nCode == HC_ACTION) && (wParam == WM_KEYDOWN))<br>> +        {<br>> +           KBDLLHOOKSTRUCT hookstruct = *((KBDLLHOOKSTRUCT*)lParam);<br>> +           if( VK_MEDIA_PLAY_PAUSE == hookstruct.vkCode ||<br>> VK_MEDIA_NEXT_TRACK<br>> == hookstruct.vkCode ||
 VK_MEDIA_STOP == hookstruct.vkCode ||<br>> VK_MEDIA_PREV_TRACK == hookstruct.vkCode)<br>> +          {<br>> +             HANDLE hotkeyWindow = FindWindow(_T("STATIC"), _T("VLC ghk ")<br>> _T(VERSION));<br>> +                if(hotkeyWindow !=NULL)<br>> +                {<br>> +                    LONG_PTR ret = GetWindowLongPtr( hotkeyWindow,<br>> GWLP_USERDATA );<br>> +                    intf_thread_t *p_intf = (intf_thread_t*)ret;<br>> +                    switch(hookstruct.vkCode)<br>> +                    {<br>> +                   
     case VK_MEDIA_PLAY_PAUSE:<br>> +                            var_SetInteger( p_intf->p_libvlc,"key-action",<br>> ACTIONID_PLAY_PAUSE );<br>> +                            break;<br>> +                        case VK_MEDIA_STOP:<br>> +                            var_SetInteger( p_intf->p_libvlc,"key-action",<br>> ACTIONID_STOP );<br>> +                            break;<br>> +                        case VK_MEDIA_PREV_TRACK:<br>> +                       
     var_SetInteger( p_intf->p_libvlc,"key-action",<br>> ACTIONID_PREV );<br>> +                            break;<br>> +                        case VK_MEDIA_NEXT_TRACK:<br>> +                            var_SetInteger( p_intf->p_libvlc,"key-action",<br>> ACTIONID_NEXT );<br>> +                    }<br>> +                }<br>> +            }<br>> +        }<br>> +        return   CallNextHookEx( hkb, nCode, wParam, lParam );<br>> +    }<br>><br>><br>> Regards<br>>
 Elangovan<br>><br>><br>><br><br><br>------------------------------<br><br>Message: 2<br>Date: Fri, 29 Oct 2010 22:19:35 +0200<br>From: Rafa?l Carr? <<a ymailto="mailto:rafael.carre@gmail.com" href="mailto:rafael.carre@gmail.com">rafael.carre@gmail.com</a>><br>Subject: Re: [vlc-devel] [videolan-announce] Update on the VLC browser<br>    plugins<br>To: <a ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a><br>Message-ID: <20101029221935.795b2b64@wai><br>Content-Type: text/plain; charset="utf-8"<br><br>On Mon, 11 Oct 2010 20:47:07 +0300<br>"R?mi Denis-Courmont" <<a ymailto="mailto:rem@videolan.org" href="mailto:rem@videolan.org">rem@videolan.org</a>> wrote:<br><br>>     Hello all,<br>> <br>> This is a long overdue update on the state of the two VLC plugins for<br>> web browsers, i.e. the ActiveX plugin for Microsoft Internet<br>>
 Explorer, and the Mozilla plugin for just about every other browser.<br>> <br>> Effective today, the web plugins will be separated from the VLC media<br>> player.<br><br>The web plugins source code repository has been effectively separated<br>from the VLC media player source code repository.<br><br>> This is mostly an organizational change for us developers and<br>> should not directly affect our end-users. There are several<br>> motivations behind this:<br>> <br>> ? Prove the plugins are really independent from the stand-alone<br>> player. The web plugins will be used as a testbed to ensure the<br>> quality of "LibVLC". LibVLC is our Software Development Kit; it<br>> enables third party computer programs to leverage the power of the<br>> VLC media player engine.<br><br>And indeed they seem to be really independent (although npapi plugin<br>still doesn't run on windows)<br><br>> ? Let the web plugins development
 follow its own pace and decouple it<br>> from the VLC media player development cycle. This will enable the<br>> VideoLAN project to deliver innovations and important improvements to<br>> its flagship VLC media player to end users faster than previously.<br>> Similarly, enhancements to the web plugins will not anymore be kept<br>> on hold for months until the next major version of VLC media player<br>> major is released.<br>> <br>> ? Work on the web plugins will become much easier once separated from<br>> VLC. Hopefully more developers will be able to join the VideoLAN<br>> project's efforts to deliver a best-of-breed open-source<br>> cross-platform cost-free multimedia stack.<br><br><br>And yet the npapi/activex plugins are still bundled with standalone<br>VLC installer for Windows, so there is zero improvement on this side.<br><br><br><br>The webplugin (npapi) download for OSX has been separated from VLC for<br>years, I
 suggest we do the same thing for Windows and Linux.<br><br><br>For Linux we will just need to tag a release, make a tarball, and<br>upload it somewhere so packagers know where to look.<br><br>Difficulty: easy, git tag, make dist, upload tarball, tell packagers.<br><br><br>For Windows since we provide the binaries this might need more work,<br>e.g. on webpages, and someone needs to write an NSIS script.<br><br><br>Since mozilla plugin installation is disabled by default this should<br>not be a problem, i can't tell about ActiveX.<br><br>Also I think that ActiveX plugins have a unique ID registered to<br>microsoft, which is associated to an URL, and that the browser (IE)<br>will fetch the VLC installer from this URL if it's not installed.<br>Can anyone confirm/infirm, and if it's true tell us how to change this<br>installer URL?<br><br>-- <br>? Rafa?l Carr? ?<br>-------------- next part --------------<br>A non-text attachment was scrubbed...<br>Name:
 signature.asc<br>Type: application/pgp-signature<br>Size: 198 bytes<br>Desc: not available<br>URL: <<a href="http://mailman.videolan.org/pipermail/vlc-devel/attachments/20101029/6ea6b6a7/attachment-0001.pgp" target="_blank">http://mailman.videolan.org/pipermail/vlc-devel/attachments/20101029/6ea6b6a7/attachment-0001.pgp</a>><br><br>------------------------------<br><br>Message: 3<br>Date: Sat, 30 Oct 2010 00:18:21 +0200<br>From: David Glaude <<a ymailto="mailto:david.glaude@gmail.com" href="mailto:david.glaude@gmail.com">david.glaude@gmail.com</a>><br>Subject: Re: [vlc-devel] [videolan-announce] Update on the VLC browser<br>    plugins<br>To: Mailing list for VLC media player developers<br>    <<a ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a>><br>Message-ID:<br>    <AANLkTikA_Sxim3XRPqDtWyZU8EjJV+<a
 ymailto="mailto:JkQaB_t-2Hq0PE@mail.gmail.com" href="mailto:JkQaB_t-2Hq0PE@mail.gmail.com">JkQaB_t-2Hq0PE@mail.gmail.com</a>><br>Content-Type: text/plain; charset="iso-8859-1"<br><br>2010/10/29 Rafa?l Carr? <<a ymailto="mailto:rafael.carre@gmail.com" href="mailto:rafael.carre@gmail.com">rafael.carre@gmail.com</a>><br><br>> On Mon, 11 Oct 2010 20:47:07 +0300<br>> "R?mi Denis-Courmont" <<a ymailto="mailto:rem@videolan.org" href="mailto:rem@videolan.org">rem@videolan.org</a>> wrote:<br>><br>> > This is a long overdue update on the state of the two VLC plugins for<br>> > web browsers, i.e. the ActiveX plugin for Microsoft Internet<br>> > Explorer, and the Mozilla plugin for just about every other browser.<br>> ><br>> > Effective today, the web plugins will be separated from the VLC media<br>> > player.<br>><br>> The web plugins source code repository has been effectively separated<br>>
 from the VLC media player source code repository.<br>><br><br>I already asked most of my question about this news in a previous post...<br><br>But I am still confuse.<br><br>I understand the plugins need to be separated from the player and they<br>should rely only on your lib.<br>But should the two plugins be separated from each other.<br><br>They do need to share the same javascript API.<br>Are they in the same repository? (I had the feeling it was two separated<br>repository)<br>Do you have duplication of code there?<br><br>How will you make sure the API stay in sync?<br><br>David Glaude<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <<a href="http://mailman.videolan.org/pipermail/vlc-devel/attachments/20101030/039424af/attachment-0001.htm"
 target="_blank">http://mailman.videolan.org/pipermail/vlc-devel/attachments/20101030/039424af/attachment-0001.htm</a>><br><br>------------------------------<br><br>Message: 4<br>Date: Sat, 30 Oct 2010 00:26:49 +0200<br>From: Rafa?l Carr? <<a ymailto="mailto:rafael.carre@gmail.com" href="mailto:rafael.carre@gmail.com">rafael.carre@gmail.com</a>><br>Subject: Re: [vlc-devel] [videolan-announce] Update on the VLC browser<br>    plugins<br>To: <a ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a><br>Message-ID: <20101030002649.1ec49123@zod><br>Content-Type: text/plain; charset=ISO-8859-1<br><br>On Sat, 30 Oct 2010 00:18:21 +0200<br>David Glaude <<a ymailto="mailto:david.glaude@gmail.com" href="mailto:david.glaude@gmail.com">david.glaude@gmail.com</a>> wrote:<br><br>> I understand the plugins need to be separated from the player and they<br>> should rely only on
 your lib.<br>> But should the two plugins be separated from each other.<br>> <br>> They do need to share the same javascript API.<br>> Are they in the same repository? (I had the feeling it was two<br>> separated repository)<br><br>There are two separated repositories<br><br>> Do you have duplication of code there?<br><br>No idea, if it's the case then the duplication was already there when<br>it was in vlc source repository<br><br>> How will you make sure the API stay in sync?<br>> <br>> David Glaude<br><br>-- <br>Rafa?l Carr?<br><br><br>------------------------------<br><br>_______________________________________________<br>vlc-devel mailing list<br><a ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a><br><a href="http://mailman.videolan.org/listinfo/vlc-devel" target="_blank">http://mailman.videolan.org/listinfo/vlc-devel</a><br><br><br>End of vlc-devel Digest, Vol 41,
 Issue 61<br>*****************************************<br></div></div>
</div><br></body></html>