<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:18pt"><div><span>With respect to Message 3 (highlighted below), VLC Player integrates soundtracks.</span></div><div><br><span></span></div><div><span>Anyway, can you at least create a file in the same folder that has the bookmarks and check for that file?</span></div><div><br><span></span></div><div><span>Shelley<br></span></div><div><br></div>  <div style="font-family: times new roman, new york, times, serif; font-size: 18pt;"> <div style="font-family: times new roman, new york, times, serif; font-size: 12pt;"> <font face="Arial" 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> Friday, January 6, 2012
 3:00 AM<br> <b><span style="font-weight: bold;">Subject:</span></b> vlc-devel Digest, Vol 56, Issue 26<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>    http://mailman.videolan.org/listinfo/vlc-devel<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] LUA: Remove protocol from vlc.path after   
 redirect<br>      ( R?mi Denis-Courmont)<br>   2. Re: [PATCH] Change to npapi for giving access to media meta<br>      thru new input.meta(i) method. (jm)<br>   3. Re: Suggestion and Request (Kaarlo R?ih?)<br>   4. Re: [PATCH 3/3] Replace goto with gotoitem. goto is reserved<br>      in lua 5.2. luac will fail to compile the lua source files<br>      without this change. (Antoine Cellerier)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Fri, 6 Jan 2012 10:44:10 +0200<br>From: " R?mi Denis-Courmont" <<a ymailto="mailto:remi@remlab.net" href="mailto:remi@remlab.net">remi@remlab.net</a>><br>To: <a ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a><br>Subject: Re: [vlc-devel] [PATCH] LUA: Remove protocol from vlc.path<br>    after   
 redirect<br>Message-ID: <<a ymailto="mailto:201201061044.12586.remi@remlab.net" href="mailto:201201061044.12586.remi@remlab.net">201201061044.12586.remi@remlab.net</a>><br>Content-Type: Text/Plain;  charset="iso-8859-1"<br><br>Le vendredi 6 janvier 2012 01:38:20 Gaurav Narula, vous avez ?crit :<br>> ---<br>>  modules/access/http.c |    3 ++-<br>>  1 files changed, 2 insertions(+), 1 deletions(-)<br>> <br>> diff --git a/modules/access/http.c b/modules/access/http.c<br>> index d32a0a9..deaab84 100644<br>> --- a/modules/access/http.c<br>> +++ b/modules/access/http.c<br>> @@ -581,7 +581,8 @@ connect:<br>>              goto error;<br>>          }<br>>          free( p_access->psz_location );<br>> -        p_access->psz_location = strdup( p_sys->psz_location );<br>> + 
       char *slash = strstr(p_sys->psz_location, "://");<br>> +        p_access->psz_location = (slash) ? strdup( slash + 3 ) :<br>> p_sys->psz_location; /* Clean up current Open() run */<br>>          vlc_UrlClean( &p_sys->url );<br>>          http_auth_Reset( &p_sys->auth );<br><br>This won't work if the redirection alternates between secure and non-secure <br>modes or vice versa.<br><br>-- <br>R?mi Denis-Courmont<br>http://www.remlab.net/<br>http://fi.linkedin.com/in/remidenis<br><br><br>------------------------------<br><br>Message: 2<br>Date: Fri, 06 Jan 2012 10:05:05 +0100<br>From: jm <<a ymailto="mailto:jean-michel.lambert7@wanadoo.fr" href="mailto:jean-michel.lambert7@wanadoo.fr">jean-michel.lambert7@wanadoo.fr</a>><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>Subject: Re: [vlc-devel] [PATCH] Change to npapi for giving access to<br>    media meta thru new input.meta(i) method.<br>Message-ID: <<a ymailto="mailto:4F06B941.201@wanadoo.fr" href="mailto:4F06B941.201@wanadoo.fr">4F06B941.201@wanadoo.fr</a>><br>Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br><br>On 12/30/2011 02:21 AM, Jean-Baptiste Kempf wrote:<br>> On Wed, Dec 28, 2011 at 11:41:54PM +0100, JM Lambert wrote :<br>>> +<br>> Why?<br>><br>>> +<br>>> +<br>> Idem?<br>><br>>> -    "none",<br>>> +    "meta",<br>> That doesn't break anything? Instead of adding it?<br>No to me, the "none" is to be used when there is no method (that was the <br>case prior to adding the meta() method)<br>> No, to<br>><br>>> +       
 VlcPlugin* p_plugin = getPrivate<VlcPlugin>();<br>>> +        libvlc_media_player_t *p_md = p_plugin->getMD();<br>>> +    libvlc_media_t * p_media = libvlc_media_player_get_media(p_md);<br>> No tabs.<br>> If p_md was NULL, wouldn't this be bad?<br>Corrected<br>><br>>> +        if( !p_md )<br>>> +            RETURN_ON_ERROR;<br>>>           switch( index )<br>>>           {<br>>> -            case ID_none:<br>>> -                return INVOKERESULT_NO_SUCH_METHOD;<br>>> +            case ID_input_meta:<br>>> +        if( argCount == 1)<br>> tabs<br>removed<br>><br>>> +         
       {<br>>> +                    char *info;<br>> const?<br>corrected<br>><br>>> +                    int i_metaID,  i;<br>> i is used?<br>removed i<br>><br>> Btw, is this the best way to expose this API?<br>that's the simplest and does not require rebuild if fields are aded to <br>meta. Which other way do you recommend ?<br>><br>> Best regards,<br>><br><br><br><br>------------------------------<br><br><span style="background-color: rgb(255, 255, 0);">Message: 3</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">Date: Fri, 6 Jan 2012 11:54:03 +0200</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">From: Kaarlo R?ih? <</span><a style="background-color: rgb(255, 255, 0);"
 ymailto="mailto:kaarlo.raiha@gmail.com" href="mailto:kaarlo.raiha@gmail.com">kaarlo.raiha@gmail.com</a><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">To: Mailing list for VLC media player developers</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">    <</span><a style="background-color: rgb(255, 255, 0);" ymailto="mailto:vlc-devel@videolan.org" href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">Subject: Re: [vlc-devel] Suggestion and Request</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">Message-ID:</span><br style="background-color: rgb(255, 255,
 0);"><span style="background-color: rgb(255, 255, 0);">    <</span><a style="background-color: rgb(255, 255, 0);" ymailto="mailto:CAMKrNtw72TKMxoBztzHSLJE6muKb3e0kb7nJKh2e99HDJEfOrw@mail.gmail.com" href="mailto:CAMKrNtw72TKMxoBztzHSLJE6muKb3e0kb7nJKh2e99HDJEfOrw@mail.gmail.com">CAMKrNtw72TKMxoBztzHSLJE6muKb3e0kb7nJKh2e99HDJEfOrw@mail.gmail.com</a><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">Content-Type: text/plain; charset="iso-8859-1"</span><br style="background-color: rgb(255, 255, 0);"><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">2012/1/5 Shelley Horwitz <</span><a style="background-color: rgb(255, 255, 0);" ymailto="mailto:shelley@sjcomm.com" href="mailto:shelley@sjcomm.com">shelley@sjcomm.com</a><span style="background-color: rgb(255, 255, 0);">></span><br
 style="background-color: rgb(255, 255, 0);"><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> I have one suggestion for improving the User Interface on the VLC Player</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> and one request for a new feature.</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> Suggestion: Please add a Bookmark Button to the controls so I can click</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> at a particular place in a playback and DO NOT have to go to the menu and</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> click several times
 to save a bookmark.</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> Request: Allow me to save a set of bookmarks with my videos (avi, wmv,</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> mpg, etc.). When I create a set of bookmarks, I would like to save them</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> with my video so I can use them again whenever I play it. I would prefer to</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> have the bookmark "file" integrated with the video itself so that I do not</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">>
 have to keep track of 2 files when I move videos around my libraries.</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">VLC cannot write metadata to all files (some formats don't support</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">metadata, and VLC doesn't always have write access to files). And there</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">isn't a standard for this kind of behavior which would make this quite hard</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">to do correctly (not break files with other players, and to allow other</span><br style="background-color:
 rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">players to use those same bookmarks).</span><br style="background-color: rgb(255, 255, 0);"><br style="background-color: rgb(255, 255, 0);"><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> Thank for a great product.</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">></span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> Shelley J. Horwitz</span><br style="background-color: rgb(255, 255, 0);"><span style="background-color: rgb(255, 255, 0);">> </span><a style="background-color: rgb(255, 255, 0);" ymailto="mailto:shelley@sjcomm.com" href="mailto:shelley@sjcomm.com">shelley@sjcomm.com</a><br>><br>>
 _______________________________________________<br>> vlc-devel mailing list<br>> To unsubscribe or modify your subscription options:<br>> <a href="http://mailman.videolan.org/listinfo/vlc-devel" target="_blank">http://mailman.videolan.org/listinfo/vlc-devel</a><br>><br>><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <<a href="http://mailman.videolan.org/pipermail/vlc-devel/attachments/20120106/b9c60f87/attachment-0001.html" target="_blank">http://mailman.videolan.org/pipermail/vlc-devel/attachments/20120106/b9c60f87/attachment-0001.html</a>><br><br>------------------------------<br><br>Message: 4<br>Date: Fri, 6 Jan 2012 11:13:13 +0100<br>From: Antoine Cellerier <<a ymailto="mailto:dionoea@videolan.org" href="mailto:dionoea@videolan.org">dionoea@videolan.org</a>><br>To: <a ymailto="mailto:vlc-devel@videolan.org"
 href="mailto:vlc-devel@videolan.org">vlc-devel@videolan.org</a><br>Subject: Re: [vlc-devel] [PATCH 3/3] Replace goto with gotoitem. goto<br>    is reserved in lua 5.2. luac will fail to compile the lua source files<br>    without this change.<br>Message-ID: <<a ymailto="mailto:20120106101313.GA16619@chewa.net" href="mailto:20120106101313.GA16619@chewa.net">20120106101313.GA16619@chewa.net</a>><br>Content-Type: text/plain; charset=utf-8<br><br>On Thu, Jan 05, 2012, Rafa?l Carr? wrote:<br>> I noticed this:<br>> <br>> commit 62d4d133a9b5e66bba5545338219499133909a9b<br>> Author: Antoine Cellerier <antoine@macbook.(none)><br>> Date:   Mon Dec 14 23:33:17 2009 +0100<br>> <br>>     repeat is a reserved lua keyword<br>> <br>>     Provide playlist._repeat() instead (and keep the old .repeat in case<br>>     anybody was using playlist["repeat"] to workaround
 the reserved keyword<br>>     issue).<br>> <br>> IIUC it only applies to the function name though, not to the string<br>> interpreted by cli.lua<br>> <br>> So Kelly, your change shouldn't affect "goto" but only vlc.playlist.goto<br><br>It might also be a good idea to still map the function to<br>vlc.playlist.goto so lua 5.1 users which use that function can continue<br>doing so ( => keeping backwards compatibility is a good idea). It is<br>still completely valid to name a function that way. The only invalid<br>thing is to call it using "vlc.playlist.goto" in lua 5.2 code.<br><br>-- <br>Antoine Cellerier<br>dionoea<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 56, Issue 26<br>*****************************************<br><br><br> </div> </div>  </div></body></html>