From chusibau at netvigator.com Thu Oct 3 10:38:15 2002 From: chusibau at netvigator.com (chusibau at netvigator.com) Date: Thu, 3 Oct 2002 16:38:15 +0800 Subject: Channel Selection Display Message-ID: <20021003083934.VFT3615.imsm011dat.netvigator.com@imailmta.netvigator.com> Hi, How could I modify the codes to have a dynamic channel selection with specified names of channels instead of numbers like "1", "2", etc, in VLC after I've installed the VLCS and specified in VLC? Thank you very much. Rgds, Cindy > -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From chusibau at netvigator.com Thu Oct 3 10:18:29 2002 From: chusibau at netvigator.com (chusibau at netvigator.com) Date: Thu, 3 Oct 2002 16:18:29 +0800 Subject: =?Big5?B?W8LgsUihRyA=?=Channel Selection Display] Message-ID: <20021003081829.DMRJ1235.imsm014dat.netvigator.com@imailmta.netvigator.com> Hi I have encountered problem in development in the software VLCS and have sent a mail to u asking for advice. But I haven't recieve your reply yet. As it is quite urgent for my project. I would be highly appreciated if u could kindly advise me as soon as possible. Thousand thx, Cindy > > ???: > ??: 2002/09/30 ??? ?? 04:57:52 GMT+08:00 > ???: > ??: Channel Selection Display > > Hi, > > How could I modify the codes to have a dynamic channel selection with > specified names of channels instead of numbers like "1", "2", etc, in VLC after > I've installed the VLCS and specified in VLC? > > Thank you very much. > > Rgds, > Cindy > -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From cvs at videolan.org Thu Oct 3 22:19:03 2002 From: cvs at videolan.org (cvs at videolan.org) Date: Thu, 3 Oct 2002 22:19:03 +0200 (CEST) Subject: CVS Commit: network (alexis) Message-ID: <20021003201903.CD7AC233A4@brahma.via.ecp.fr> Update of /cvs/videolan/network/doc Modified Files: videolan-quickstart.sgml Log Message: New syntax for /etc/apt/sources.list -- alexis -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From Sin-Yi.Lai at pccw.com Fri Oct 4 03:35:41 2002 From: Sin-Yi.Lai at pccw.com (Lai, Sin-Yi) Date: Fri, 4 Oct 2002 09:35:41 +0800 Subject: Channel Selection Display Message-ID: Hi, How could I modify the codes to have a dynamic channel selection with specified names of channels for example 'Bloomberg' instead of numbers like "1", "2", etc, in VLC after I've installed the VLCS and specified the IP address in VLC? As this is involved in an urgent project, prompt reply will be greatly appreciated. Thank you very much. Best Regards, Lai Sin Yi, Cindy Trainee Engineer PCCW -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.videolan.org/pipermail/vlcs-devel/attachments/20021004/0d1ad4e7/attachment.html From cvs at videolan.org Fri Oct 4 12:01:48 2002 From: cvs at videolan.org (cvs at videolan.org) Date: Fri, 4 Oct 2002 12:01:48 +0200 (CEST) Subject: CVS Commit: network (alexis) Message-ID: <20021004100148.AD045233A4@brahma.via.ecp.fr> Update of /cvs/videolan/network/doc Modified Files: videolan-howto.sgml videolan-quickstart.sgml Added Files: Makefile Log Message: Cosmetic changes -- alexis -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From tristan.leteurtre at videolan.org Fri Oct 4 22:37:50 2002 From: tristan.leteurtre at videolan.org (Tristan Leteurtre) Date: Fri, 4 Oct 2002 22:37:50 +0200 Subject: Channel Selection Display In-Reply-To: <20021003083934.VFT3615.imsm011dat.netvigator.com@imailmta.netvigator.com> References: <20021003083934.VFT3615.imsm011dat.netvigator.com@imailmta.netvigator.com> Message-ID: <20021004203750.GA21884@via.ecp.fr> On Thu, Oct 03, 2002, chusibau at netvigator.com wrote: > How could I modify the codes to have a dynamic channel selection with > specified names of channels instead of numbers like "1", "2", etc, in > VLC after I've installed the VLCS and specified in VLC? I don't understand very much your question and purpose, but if you want to modify the communication method between vlc & vlcs, you should have a look in src/misc/netutils.c for the vlc-part. The core of this communication (the request) made by the vlc is in src/misc/netutils.c:220 : /* Build the message */ sprintf( psz_mess, "%d %u %lu %s \n", i_channel, VLCS_VERSION, (unsigned long)(mdate() / (u64)1000000), psz_mac ); /* Send the message */ send( i_fd, psz_mess, MESSAGE_LENGTH, 0 ); and the request is received and parsed with miniVLCS in miniVLCS/vlcs.c:114 (from the network module of CVS) if( (i_len = ip_socket->Receive( p_buffer, sizeof( p_buffer ))) < 0 ) { (...) } p_buffer[i_len] = '\0'; if( sscanf( p_buffer, "%2s %d %d %17s", psz_channel, &i_version, &i_time, psz_macad ) != 4 ) { (...) } Maybe look here for implementation of what you want. -- Tristan Please answer to vlcs-devel at videolan.org and not to my personnal address for further enquiries. -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From chusibau at netvigator.com Sat Oct 5 18:15:59 2002 From: chusibau at netvigator.com (Cindy Lai) Date: Sun, 6 Oct 2002 00:15:59 +0800 Subject: Channel Selection Display In-Reply-To: <20021004203750.GA21884@via.ecp.fr> Message-ID: Hi, Thanks for your reply. But I would like to clarify my question. I know that the interface of vlc : click on "Net", select "Channel server", write its IP address or DNS name. Then, I can see a new section "Network Channel" on the interface. Select "1" and click on "Go!" to select the channels. My question is how can i modify the codes in order to change the interface of channel selection to, say for example 'Bloomberg' instead of numbers like '1', '2', '3' ? I'm looking forward for your advice. Thx, Cindy -----Original Message----- From: Tristan Leteurtre [mailto:tristan.leteurtre at videolan.org] Sent: Saturday, October 05, 2002 4:38 AM To: vlcs-devel at videolan.org Cc: chusibau at netvigator.com Subject: Re: Channel Selection Display On Thu, Oct 03, 2002, chusibau at netvigator.com wrote: > How could I modify the codes to have a dynamic channel selection with > specified names of channels instead of numbers like "1", "2", etc, in > VLC after I've installed the VLCS and specified in VLC? I don't understand very much your question and purpose, but if you want to modify the communication method between vlc & vlcs, you should have a look in src/misc/netutils.c for the vlc-part. The core of this communication (the request) made by the vlc is in src/misc/netutils.c:220 : /* Build the message */ sprintf( psz_mess, "%d %u %lu %s \n", i_channel, VLCS_VERSION, (unsigned long)(mdate() / (u64)1000000), psz_mac ); /* Send the message */ send( i_fd, psz_mess, MESSAGE_LENGTH, 0 ); and the request is received and parsed with miniVLCS in miniVLCS/vlcs.c:114 (from the network module of CVS) if( (i_len = ip_socket->Receive( p_buffer, sizeof( p_buffer ))) < 0 ) { (...) } p_buffer[i_len] = '\0'; if( sscanf( p_buffer, "%2s %d %d %17s", psz_channel, &i_version, &i_time, psz_macad ) != 4 ) { (...) } Maybe look here for implementation of what you want. -- Tristan Please answer to vlcs-devel at videolan.org and not to my personnal address for further enquiries. From massiot at via.ecp.fr Sat Oct 5 20:14:28 2002 From: massiot at via.ecp.fr (Christophe Massiot) Date: Sat, 5 Oct 2002 20:14:28 +0200 Subject: Channel Selection Display In-Reply-To: References: Message-ID: At 0:15 +0800 6/10/2002, Cindy Lai wrote : > My question is how can i modify the codes in order to change >the interface of channel selection to, say for example 'Bloomberg' >instead of numbers like '1', '2', '3' ? You can NOT do that without designing and writing new code for VLC and VLCS. Tristan gave you pointers to the appropriate source files. -- Christophe Massiot. -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From tristan.leteurtre at videolan.org Sat Oct 5 20:22:37 2002 From: tristan.leteurtre at videolan.org (Tristan Leteurtre) Date: Sat, 5 Oct 2002 20:22:37 +0200 Subject: Channel Selection Display In-Reply-To: References: <20021004203750.GA21884@via.ecp.fr> Message-ID: <20021005182237.GA4039@via.ecp.fr> On Sun, Oct 06, 2002, Cindy Lai wrote: > My question is how can i modify the codes in order to change the > > interface of channel selection to, say for example 'Bloomberg' instead > of numbers like '1', '2', '3' ? So, as far as I understood, you don't want to change the protocol between vlc and vlcs, but just the way the channel are printed in the list ? Instead of '1', '2', '3' next to the button 'go', you want 'movie1', 'satellite channel' ...etc, written in hard somehwere ? So, that deals with the interface part of the vlc, this is specific for each interface (gnome, gtk, qt...). I don't know anything about interface designing, so can't help you... try to see how the interface of vlc is designed and with editing tools are used (glade ?). Regards, -- Tristan -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From cvs at videolan.org Sat Oct 12 21:45:31 2002 From: cvs at videolan.org (cvs at videolan.org) Date: Sat, 12 Oct 2002 21:45:31 +0200 (CEST) Subject: CVS Commit: network (marcari) Message-ID: <20021012194531.AE55E233A4@brahma.via.ecp.fr> Update of /cvs/videolan/network/miniVLCS Modified Files: AUTHORS ChangeLog Makefile README config.c config.h logger.c logger.h socket.c vlcs.c vlcs.h Added Files: TODO Log Message: * support for color logging when logging to stdout * added command line support : * it is possible to precise a different config file * upgrade version number to 0.2.0 for the release * put my ideas in a plain mini TODO file -- marcari -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From cvs at videolan.org Sat Oct 12 23:04:03 2002 From: cvs at videolan.org (cvs at videolan.org) Date: Sat, 12 Oct 2002 23:04:03 +0200 (CEST) Subject: CVS Commit: network (marcari) Message-ID: <20021012210403.AE3D2233A4@brahma.via.ecp.fr> Update of /cvs/videolan/network/miniVLCS Modified Files: vlcs.conf Log Message: * changed the sample config file * added an example with http * removed trailing parameters not useful for minivlcs -- marcari -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From cvs at videolan.org Thu Oct 17 02:00:45 2002 From: cvs at videolan.org (cvs at videolan.org) Date: Thu, 17 Oct 2002 02:00:45 +0200 (CEST) Subject: CVS Commit: network (alexis) Message-ID: <20021017000045.A2D4E233A6@brahma.via.ecp.fr> Update of /cvs/videolan/network/doc Modified Files: videolan-quickstart.sgml Log Message: Small fixes. -- alexis -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From marcari at via.ecp.fr Thu Oct 24 00:02:08 2002 From: marcari at via.ecp.fr (Marc ARIBERTI) Date: Thu, 24 Oct 2002 00:02:08 +0200 Subject: problem compiling miniVLCS-0.2.0 In-Reply-To: References: Message-ID: <20021023220208.GA4621@via.ecp.fr> On Wed, Oct 23, 2002, Lior Kohan wrote: > Hi, > I have tried to compile miniVLCS-0.2.0 on red hat 8.0 Linux distributions. > But I have received the following errors: > See terminal log attached Arghhhhh !!! I'm sorry, I forgot half of the files in the tarball ! I apologize, please excuse me, I've just updated the correct package. I appended a small 'a' to the package version. Everything should be all right now. Thank you for your report. -- Marcari, who should have tested his tarball ! -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From cvs at videolan.org Mon Oct 28 18:38:30 2002 From: cvs at videolan.org (cvs at videolan.org) Date: Mon, 28 Oct 2002 18:38:30 +0100 (CET) Subject: CVS Commit: network (marcari) Message-ID: <20021028173830.8AEC8233A6@brahma.via.ecp.fr> Update of /cvs/videolan/network/miniVLCS Modified Files: Makefile config.c logger.c logger.h socket.c vlcs.c Log Message: * now it compiles with gcc 3.2 (c++ sucks) -- marcari -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From cvs at videolan.org Tue Oct 29 22:02:05 2002 From: cvs at videolan.org (cvs at videolan.org) Date: Tue, 29 Oct 2002 22:02:05 +0100 (CET) Subject: CVS Commit: network (marcari) Message-ID: <20021029210205.F2BDE233A6@brahma.via.ecp.fr> Update of /cvs/videolan/network/miniVLCS Modified Files: ChangeLog Log Message: * updated changelog -- marcari -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact From marcari at via.ecp.fr Thu Oct 31 10:38:08 2002 From: marcari at via.ecp.fr (Marc ARIBERTI) Date: Thu, 31 Oct 2002 10:38:08 +0100 Subject: Another compile problem... In-Reply-To: References: Message-ID: <20021031093808.GL4266@via.ecp.fr> On Wed, Oct 30, 2002, Marcel de Boer wrote: > I guess this is because I use GCC 3.2 (Slackware 9.0-beta) with the different c++-api (at > least this is what I've heard), but I don't have any clue on how to fix it.. You're right, it is due to gcc 3.2 I corrected this bug in the package : miniVLCS-0.2.0b.tar.gz -- Marc ARIBERTI marcari at via.ecp.fr -- This is the vlcs-devel mailing-list, see http://www.videolan.org/vlcs/ To unsubscribe, please read http://www.videolan.org/lists.html If you are in trouble, please contact