From jason at geshp.com Wed Sep 1 00:02:18 2004 From: jason at geshp.com (Jason Luka) Date: Tue, 31 Aug 2004 17:02:18 -0500 Subject: [vlc] Re: RPM installl failing In-Reply-To: <083120041949.27595.4134D642000C098200006BCB2200761438020E070B079D0A03D39B9C019F@comcast.net> References: <083120041949.27595.4134D642000C098200006BCB2200761438020E070B079D0A03D39B9C019F@comcast.net> Message-ID: <4134F56A.8070201@geshp.com> post-meridian at comcast.net wrote: >Hello, > >This is my first posting. I tried following the instructions for installing vlc on Fedora Core. I got both the vlc-binary.tar.gz and fedora1-updates.tar.gz. I gunzipped them into the directory vlc. Then I did as instructed with the following result: > >[root at localhost videolan]# rpm -U vlc/* --force >warning: vlc/a52dec-0.7.4-6.1.fc2.fr.i386.rpm: V3 DSA signature: NOKEY, key ID e42d547b >warning: package speex = 1.0.3-2.1 was already added, replacing with speex <= 1.1.5-1 >error: Failed dependencies: > speex = 1.0.3-2.1 is needed by speex-devel-1.0.3-2.1 > fribidi is needed by vlc-0.7.2-1 > gnome-libs is needed by vlc-0.7.2-1 > libart_lgpl.so.2 is needed by vlc-0.7.2-1 > libfribidi.so.0 is needed by vlc-0.7.2-1 > libgnome.so.32 is needed by vlc-0.7.2-1 > libgnomesupport.so.0 is needed by vlc-0.7.2-1 > libgnomeui.so.32 is needed by vlc-0.7.2-1 > libkdeui.so.4 is needed by vlc-0.7.2-1 > libkio.so.4 is needed by vlc-0.7.2-1 > libdv.so.4 is needed by (installed) gstreamer-plugins-0.8.1-1 >[root at localhost videolan]# > >I checied in the fedora package directory but don't see these packages. Any idea what to do next? Any help would be appreciated. > >Thanks, >Michael > > > Alright. Here's what you need. Download speex-devel from the package directory. It can't install the newer version of speex unless you either upgrade or remove the development package for the old one.. Fribidi and gnome-libs are on the Fedora CD's. Anything other than that, use rpm --redhatprovides (missing file name) to find out what packages you need. I believe all your missing files on the Fedora CD. Jason Luka (Any email sent to my address will be unanswered) -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ollie at predict.com Wed Sep 1 00:28:58 2004 From: ollie at predict.com (Ollie Eisman) Date: Tue, 31 Aug 2004 16:28:58 -0600 Subject: [vlc] compiling vlc on solaris Message-ID: <4134FBAA.6090108@predict.com> I just compiled VLC on solaris and had to modify two Makefiles to get it to work. I am using gcc 3.0.3 I unpacked the source to: /usr/local/src/videolan/vlc-0.7.2 I noticed, during gmake at the all-modules part, that both audio_filter and gui modules would fail with an error that "`;' was unexpected." The Makefile for each contains: all-modules: @set fnord $$MAKEFLAGS; amf=$$2; targets=`\ if test "$(plugin)" != "no"; then z=$$($(VLC_CONFIG) --target plugin); for mod in ; do case "$$z" in */lib$${mod}_plugin*) echo lib$${mod}_plugin$(LIBEXT);; esac; done; fi; \ if test "$(builtin)" != "no"; then z=$$($(VLC_CONFIG) --target builtin); for mod in ; do case "$$z" in */lib$${mod}.a*) echo lib$${mod}.a;; esac; done; fi; \ if test "$(pic)" != "no"; then z=$$($(VLC_CONFIG) --target builtin pic); for mod in ; do case "$$z" in */lib$${mod}_pic.a*) echo lib$${mod}_pic.a;; esac; done; fi; \ To get it to work, I touched a file called dummy.c in each directory and modified the code so that each of the above lines now contains the word "dummy": ...for mod in dummy ; do case... That seemed to fix it. Perhaps there is a better way to deal with this. Thanks, Ollie -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ollie at predict.com Wed Sep 1 00:31:30 2004 From: ollie at predict.com (Ollie Eisman) Date: Tue, 31 Aug 2004 16:31:30 -0600 Subject: [vlc] Re: compiling vlc on solaris In-Reply-To: <4134FBAA.6090108@predict.com> References: <4134FBAA.6090108@predict.com> Message-ID: <4134FC42.5070501@predict.com> I forgot to mention that the two files that needed to be modified were: /usr/local/src/videolan/vlc-0.7.2/modules/audio_filter/Makefile and /usr/local/src/videolan/vlc-0.7.2/modules/gui/Makefile Ollie Eisman wrote: > I just compiled VLC on solaris and had to modify two Makefiles to get it > to work. > > I am using gcc 3.0.3 > > I unpacked the source to: > /usr/local/src/videolan/vlc-0.7.2 > > I noticed, during gmake at the all-modules part, that both audio_filter > and gui modules would fail with an error that "`;' was unexpected." > > The Makefile for each contains: > > all-modules: > @set fnord $$MAKEFLAGS; amf=$$2; targets=`\ > if test "$(plugin)" != "no"; then z=$$($(VLC_CONFIG) --target > plugin); for mod in ; do case "$$z" in */lib$${mod}_plugin*) echo > lib$${mod}_plugin$(LIBEXT);; esac; done; fi; \ > if test "$(builtin)" != "no"; then z=$$($(VLC_CONFIG) --target > builtin); for mod in ; do case "$$z" in */lib$${mod}.a*) echo > lib$${mod}.a;; esac; done; fi; \ > if test "$(pic)" != "no"; then z=$$($(VLC_CONFIG) --target > builtin pic); for mod in ; do case "$$z" in */lib$${mod}_pic.a*) echo > lib$${mod}_pic.a;; esac; done; fi; \ > > > To get it to work, I touched a file called dummy.c in each directory and > modified the code so that each of the above lines now contains the word > "dummy": > > ...for mod in dummy ; do case... > > That seemed to fix it. > > Perhaps there is a better way to deal with this. > > Thanks, > Ollie > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Wed Sep 1 05:19:41 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Tue, 31 Aug 2004 20:19:41 -0700 (PDT) Subject: [vlc] Problem Compiling in Redhat 9.0 with kernel 2.4.22 Message-ID: <20040901031941.71380.qmail@web41010.mail.yahoo.com> I am having problem in compiling vlc 0.7.2(even in vlc 0.6.0),error message came out said Checking for X= no, Checking for X library=no. why? i configure with ./configure --disable-dvd --disable-ffmpeg ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm My Blog: http://ceyong.blogspot.com/ _______________________________ Do you Yahoo!? Win 1 of 4,000 free domain names from Yahoo! Enter now. http://promotions.yahoo.com/goldrush -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From spindler at hbt.arch.ethz.ch Wed Sep 1 08:45:39 2004 From: spindler at hbt.arch.ethz.ch (Torsten Spindler) Date: Wed, 01 Sep 2004 08:45:39 +0200 Subject: [vlc] Re: Problem Compiling in Redhat 9.0 with kernel 2.4.22 In-Reply-To: <20040901031941.71380.qmail@web41010.mail.yahoo.com> References: <20040901031941.71380.qmail@web41010.mail.yahoo.com> Message-ID: <1094021139.2502.28.camel@gasluft.ethz.ch> On Wed, 2004-09-01 at 05:19, Yong Chu Eu (??????) wrote: > I am having problem in compiling vlc 0.7.2(even in vlc 0.6.0),error > message came out said Checking for X= no, Checking for X library=no. why? > i configure with ./configure --disable-dvd --disable-ffmpeg Do you have XFree86 and XFree86-devel installed? On a RH9 installation I use the following versions: [spindler at acryl spindler]$ rpm -q XFree86 XFree86-4.3.0-2.90.55 [spindler at acryl spindler]$ rpm -q XFree86-devel XFree86-devel-4.3.0-2.90.55 BTW to grab some updates for RH9 I recommend checking out http://www.fedoralegacy.org. There are some updates for RH9 and RH7.3 available. Bye, Torsten -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mats.rojestal at bredband.net Wed Sep 1 10:33:13 2004 From: mats.rojestal at bredband.net (Mats Rojestal) Date: Wed, 01 Sep 2004 10:33:13 +0200 Subject: [vlc] Re: compiling vlc on solaris In-Reply-To: <4134FBAA.6090108@predict.com> References: <4134FBAA.6090108@predict.com> Message-ID: <41358949.2070904@bredband.net> Hi, VLC compiles and runs just fine without any modifications on my solaris9_x86 system. The only thing is that you need to update your gnu tools and on x86 platform you need build a version of gcc that uses gnu assembler to produce correct code. Hope that helps, Mats R?jest?l Ollie Eisman wrote: > I just compiled VLC on solaris and had to modify two Makefiles to get it > to work. > > I am using gcc 3.0.3 > > I unpacked the source to: > /usr/local/src/videolan/vlc-0.7.2 > > I noticed, during gmake at the all-modules part, that both audio_filter > and gui modules would fail with an error that "`;' was unexpected." > > The Makefile for each contains: > > all-modules: > @set fnord $$MAKEFLAGS; amf=$$2; targets=`\ > if test "$(plugin)" != "no"; then z=$$($(VLC_CONFIG) --target > plugin); for mod in ; do case "$$z" in */lib$${mod}_plugin*) echo > lib$${mod}_plugin$(LIBEXT);; esac; done; fi; \ > if test "$(builtin)" != "no"; then z=$$($(VLC_CONFIG) --target > builtin); for mod in ; do case "$$z" in */lib$${mod}.a*) echo > lib$${mod}.a;; esac; done; fi; \ > if test "$(pic)" != "no"; then z=$$($(VLC_CONFIG) --target > builtin pic); for mod in ; do case "$$z" in */lib$${mod}_pic.a*) echo > lib$${mod}_pic.a;; esac; done; fi; \ > > > To get it to work, I touched a file called dummy.c in each directory and > modified the code so that each of the above lines now contains the word > "dummy": > > ...for mod in dummy ; do case... > > That seemed to fix it. > > Perhaps there is a better way to deal with this. > > Thanks, > Ollie > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From deon at cyberconn.co.za Wed Sep 1 02:53:01 2004 From: deon at cyberconn.co.za (deon stoltz) Date: Wed, 01 Sep 2004 02:53:01 +0200 Subject: [vlc] VLC and Kasenna Message-ID: <1093999981.2682.23.camel@testy.techsource.co.za> Has anybody had success in loading video assets on a Kasenna Server? I am using vlc to convert vob files to TS streams (required by Kasenna, MPEG2) but the server rejects it with the message: "asset has a bit-rate less than 64 kbps" Using VLC-0.7.2 on FC2 Any help much appreciated Deon -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jason at geshp.com Wed Sep 1 12:28:09 2004 From: jason at geshp.com (Jason Luka) Date: Wed, 01 Sep 2004 05:28:09 -0500 Subject: [vlc] Re: Problem Compiling in Redhat 9.0 with kernel 2.4.22 In-Reply-To: <20040901031941.71380.qmail@web41010.mail.yahoo.com> References: <20040901031941.71380.qmail@web41010.mail.yahoo.com> Message-ID: <4135A439.10807@geshp.com> Yong Chu Eu (??????) wrote: >I am having problem in compiling vlc 0.7.2(even in vlc 0.6.0),error >message came out said Checking for X= no, Checking for X library=no. why? >i configure with ./configure --disable-dvd --disable-ffmpeg > >===== >???????????????????????? Happy & Healthy Always ! ^_^ ! >???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong >???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm >My Blog: http://ceyong.blogspot.com/ > > > >_______________________________ >Do you Yahoo!? >Win 1 of 4,000 free domain names from Yahoo! Enter now. >http://promotions.yahoo.com/goldrush > > > Do you have the XFree86 devel packages installed? Jason Luka -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From rayesteq at yahoo.com Wed Sep 1 13:46:30 2004 From: rayesteq at yahoo.com (Eray BALAT) Date: Wed, 1 Sep 2004 04:46:30 -0700 (PDT) Subject: [vlc] VLC and Mozilla-plugin-VLC In-Reply-To: <1094021139.2502.28.camel@gasluft.ethz.ch> Message-ID: <20040901114630.14149.qmail@web11401.mail.yahoo.com> Hi everyone; I install VLC player from woody version on Debian.It is working fine.And I installed the vlc plugin too and it was installed sucsessfuly.But it doesnt working, I mean when I click a link of a mpg file one pinky screen opening in my browser.???Do you have any idea of this ?? Thank you for your consideration...... Eray BALAT ERAY BALAT --------------------------------- Do you Yahoo!? Win 1 of 4,000 free domain names from Yahoo! Enter now. -------------- next part -------------- An HTML attachment was scrubbed... URL: From hussain at mytum.de Wed Sep 1 14:22:38 2004 From: hussain at mytum.de (Hussain Ali Pardawalla) Date: Wed, 01 Sep 2004 14:22:38 +0200 Subject: [vlc] =?iso-8859-1?q?Re=3A_Please_Confirm?= Message-ID: Hi. Could you please tell me which segements of the code I would need to look at to try and implement this. At the moment I want to foucus of the pause, and then move on to rewind and forward. Thanks. Hussain --- Derk-Jan Hartman wrote: > No. I don't think it is. > Not sure what the outstanding issue are, i'll ask > around. > > You can seek in the stream though. (most of the time > :) > > > > On 31 aug 2004, at 14:39, Hussain Ali Pardawalla > wrote: > > > I have VLC 0.7.2. Is this version of VLC capable > of pausing, > > forwarding and rewinding a stream, which is being > streamed from the > > Darwin server? > > > > Thanks > > > > Hussain > --- From Dennis.vanAmerongen at nob.nl Wed Sep 1 15:40:32 2004 From: Dennis.vanAmerongen at nob.nl (Dennis van Amerongen) Date: Wed, 1 Sep 2004 15:40:32 +0200 Subject: [vlc] Re: VLC and Kasenna Message-ID: <29D7A7147DC1D611919C0008028AC1840339C070@post.int.nob.nl> Hi Deon, Yes we have succesfull importing of of about 100 TS streams/assets on a Kasenna Mediabase server all day long :) The MPEG2's we use are made with Mobius MPEG2 hardware encoders. We had the exact same Kasenna errors you mention with MPEG2's produced with an older encoder SDK/driver where the transport PES size setting used in the encoder wasn't the optimum of 2024. A transport PES size of 2024 is a multiple of 184 (188 - 4 header) this reduces/eliminates Zero Length Adaption Fields in the stream. Zero Length Adaptation Fields seem to break many parser/demultiplexer implementations (Stradis analyser, Kasenna Mediabase, older Kraetel set top boxes etc.) despite the fact that this is legal MPEG! So basically Kasenna has problems calculating the proper bitrate with Zero length adaption fields in the stream and mis-interprets the stream as being <64kbit and refuses to import. (It also can't calculate properly if the file to be imported is too small, let's say a few seconds in length and then it also gives the same error). The optimized transport PES size also majorly improved streaming to all sorts of streaming clients (VLC, set top boxes etc.) from our platform. So I suggest you take a look at the PES size that is used in the encoded files or perhaps the files you use are too small... P.S. we even manage to encode/stream live MPEG2 and MPEG4 (x264) with VLC to the Kasenna server, and stream/cast this live (simulated or true multicast) using the Kasenna server and it's playable from VLC as well (and playing on-demand MPEG2 files with VLC from Kasenna server is still experimental). Hope this helps.. Dennis -----Oorspronkelijk bericht----- Van: deon stoltz [mailto:deon at cyberconn.co.za] Verzonden: woensdag 1 september 2004 2:53 Aan: vlc at videolan.org Onderwerp: [vlc] VLC and Kasenna Has anybody had success in loading video assets on a Kasenna Server? I am using vlc to convert vob files to TS streams (required by Kasenna, MPEG2) but the server rejects it with the message: "asset has a bit-rate less than 64 kbps" Using VLC-0.7.2 on FC2 Any help much appreciated Deon -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists at digital.ktu.lt Wed Sep 1 15:57:44 2004 From: lists at digital.ktu.lt (Easy) Date: Wed, 1 Sep 2004 16:57:44 +0300 Subject: [vlc] LUA and what? Message-ID: <002b01c4902b$aa0b0960$0105070a@b08admin> Hello, I'm quite new to Girder programming, but it seems easy enough. Now that I'we come to the point where Girder's own programming is not enough. It seems LUA scripts woul be the ansewer. But. But I can't find the relation between them. LUA language is easy to understand especially if you know programming at all. But how to make script to execute some groups or commands in Girder? It means, I take the variable and depending on its value I've some different Girder commands to execute. As there are a lot more than 2 commands it would be a lot of work to do this with usual girder commands. Especially if some checks are needed. I.m. if var=1001011 the the commands 1, 2, 4, and 7 should be executed. How can this be done? Sincerelly Yours Algirdas Brazas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From PRae at aminocom.com Wed Sep 1 16:25:13 2004 From: PRae at aminocom.com (Paul Rae) Date: Wed, 1 Sep 2004 10:25:13 -0400 Subject: [vlc] Re: VLC and Kasenna Message-ID: What version of mediabase? Also does the TS have a ac3 audio track? Medibase can be real picky about assets with AC3 audio tracks. -----Original Message----- From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On Behalf Of deon stoltz Sent: Tuesday, August 31, 2004 8:53 PM To: vlc at videolan.org Subject: [vlc] VLC and Kasenna Has anybody had success in loading video assets on a Kasenna Server? I am using vlc to convert vob files to TS streams (required by Kasenna, MPEG2) but the server rejects it with the message: "asset has a bit-rate less than 64 kbps" Using VLC-0.7.2 on FC2 Any help much appreciated Deon -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From elan01 at mac.com Wed Sep 1 18:51:17 2004 From: elan01 at mac.com (Christopher Kennedy) Date: Wed, 01 Sep 2004 12:51:17 -0400 Subject: [vlc] Re: fullscreen to TV thats my secondary display In-Reply-To: <20040831215623.GB31428@kikal.org> References: <548D0A7A-FB85-11D8-8E73-0003931BBF9C@mac.com> <20040831215623.GB31428@kikal.org> Message-ID: <10282410.1094057477602.JavaMail.elan01@mac.com> that does nothing, no change at all. On Tuesday, August 31, 2004, at 05:56PM, Benjamin PRACHT wrote: >On Tue, Aug 31, 2004, Christopher J. Kennedy wrote : >> I have a G5 running 10.3.5 with a new 20" display as my primary and a >> 42" ViewSonic plasma TV as my secondary. I try to go to Video device to >> set fullscreen to the Plasma but it's greyed out and I cannot select >> anything. Any suggestions? >> > >Could you try selecting the quartz video Output ? > >Open the preferences, modules, interface, macosx, select advanced, and >change "video rendering mode" to quartz. Save the prefs and restart VLC. > >-- >BigBen > >-- >This is the vlc mailing-list, see http://www.videolan.org/vlc/ >To unsubscribe, please read http://www.videolan.org/support/lists.html > > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From deon at cyberconn.co.za Wed Sep 1 10:57:37 2004 From: deon at cyberconn.co.za (deon stoltz) Date: Wed, 01 Sep 2004 10:57:37 +0200 Subject: [vlc] Re: VLC and Kasenna In-Reply-To: <29D7A7147DC1D611919C0008028AC1840339C070@post.int.nob.nl> References: <29D7A7147DC1D611919C0008028AC1840339C070@post.int.nob.nl> Message-ID: <1094029057.2649.68.camel@testy.techsource.co.za> Hi Dennis Thanks for your help. I will look into your suggestions. The note about the file length being too small may also being a problem since when one is testing you do not want to create longer files than necessary! Regards deon On Wed, 2004-09-01 at 15:40, Dennis van Amerongen wrote: > Hi Deon, > > Yes we have succesfull importing of of about 100 TS streams/assets > on a Kasenna Mediabase server all day long :) The MPEG2's we use are > made with Mobius MPEG2 hardware encoders. > > We had the exact same Kasenna errors you mention with MPEG2's produced > with an older encoder SDK/driver where the transport PES size setting > used in the encoder wasn't the optimum of 2024. > > A transport PES size of 2024 is a multiple of 184 (188 - 4 header) > this reduces/eliminates Zero Length Adaption Fields in the stream. > > Zero Length Adaptation Fields seem to break many parser/demultiplexer > implementations (Stradis analyser, Kasenna Mediabase, older Kraetel > set > top boxes etc.) despite the fact that this is legal MPEG! > > So basically Kasenna has problems calculating the proper bitrate with > Zero length adaption fields in the stream and mis-interprets the > stream > as being <64kbit and refuses to import. (It also can't calculate > properly > if the file to be imported is too small, let's say a few seconds in > length and then it also gives the same error). > > The optimized transport PES size also majorly improved streaming to > all > sorts of streaming clients (VLC, set top boxes etc.) from our > platform. > > So I suggest you take a look at the PES size that is used in the > encoded > files or perhaps the files you use are too small... > > P.S. we even manage to encode/stream live MPEG2 and MPEG4 (x264) with > VLC to > the Kasenna server, and stream/cast this live (simulated or true > multicast) > using the Kasenna server and it's playable from VLC as well (and > playing > on-demand MPEG2 files with VLC from Kasenna server is still > experimental). > > Hope this helps.. > > Dennis > > > > -----Oorspronkelijk bericht----- > Van: deon stoltz [mailto:deon at cyberconn.co.za] > Verzonden: woensdag 1 september 2004 2:53 > Aan: vlc at videolan.org > Onderwerp: [vlc] VLC and Kasenna > > > Has anybody had success in loading video assets on a Kasenna Server? > I am using vlc to convert vob files to TS streams (required by > Kasenna, > MPEG2) but the server rejects it with the message: > "asset has a bit-rate less than 64 kbps" > > Using VLC-0.7.2 on FC2 > > Any help much appreciated > Deon > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From deon at cyberconn.co.za Wed Sep 1 11:24:56 2004 From: deon at cyberconn.co.za (deon stoltz) Date: Wed, 01 Sep 2004 11:24:56 +0200 Subject: [vlc] Re: VLC and Kasenna In-Reply-To: References: <1093999981.2682.23.camel@testy.techsource.co.za> Message-ID: <1094030696.2649.93.camel@testy.techsource.co.za> Hi M?ns Do not know about the time stamps but will look into it. Thanks in any case for your assistance. Deon On Wed, 2004-09-01 at 12:12, M?ns Rullg?rd wrote: > deon stoltz writes: > > > Has anybody had success in loading video assets on a Kasenna Server? > > I am using vlc to convert vob files to TS streams (required by Kasenna, > > MPEG2) but the server rejects it with the message: > > "asset has a bit-rate less than 64 kbps" > > Do the timestamps start at zero? I could imagine that it might > miscalculate the bitrate if it doesn't properly deal with non-zero > initial timestamps. OTOH, I'd expect it to be better than that. > > -- > M?ns Rullg?rd > mru at mru.ath.cx -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From deon at cyberconn.co.za Wed Sep 1 12:19:31 2004 From: deon at cyberconn.co.za (deon stoltz) Date: Wed, 01 Sep 2004 12:19:31 +0200 Subject: [vlc] Re: VLC and Kasenna In-Reply-To: References: Message-ID: <1094033970.2649.159.camel@testy.techsource.co.za> Hi Paul The version of Kasenna is: "Kasenna MediaBase XMP v. 7.2 I am using MP3 for audio so this should be ok? Thanks Deon On Wed, 2004-09-01 at 16:25, Paul Rae wrote: > What version of mediabase? Also does the TS have a ac3 audio track? > Medibase can be real picky about assets with AC3 audio tracks. > > -----Original Message----- > From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On Behalf > Of deon stoltz > Sent: Tuesday, August 31, 2004 8:53 PM > To: vlc at videolan.org > Subject: [vlc] VLC and Kasenna > > Has anybody had success in loading video assets on a Kasenna Server? > I am using vlc to convert vob files to TS streams (required by Kasenna, > MPEG2) but the server rejects it with the message: > "asset has a bit-rate less than 64 kbps" > > Using VLC-0.7.2 on FC2 > > Any help much appreciated > Deon > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From Dennis.vanAmerongen at nob.nl Wed Sep 1 21:32:15 2004 From: Dennis.vanAmerongen at nob.nl (Dennis van Amerongen) Date: Wed, 1 Sep 2004 21:32:15 +0200 Subject: [vlc] Re: VLC and Kasenna Message-ID: <29D7A7147DC1D611919C0008028AC1840339C077@post.int.nob.nl> our working setup involves XMP version 6.1.2 and we only use MPEG layer 2 audio. maybe the MP3 is indeed the problem for Kasenna and you should try "mpga" instead of "mp3" audio encoding with VLC. Dennis -----Oorspronkelijk bericht----- Van: deon stoltz [mailto:deon at cyberconn.co.za] Verzonden: woensdag 1 september 2004 12:20 Aan: vlc at videolan.org Onderwerp: [vlc] Re: VLC and Kasenna Hi Paul The version of Kasenna is: "Kasenna MediaBase XMP v. 7.2 I am using MP3 for audio so this should be ok? Thanks Deon On Wed, 2004-09-01 at 16:25, Paul Rae wrote: > What version of mediabase? Also does the TS have a ac3 audio track? > Medibase can be real picky about assets with AC3 audio tracks. > > -----Original Message----- > From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On Behalf > Of deon stoltz > Sent: Tuesday, August 31, 2004 8:53 PM > To: vlc at videolan.org > Subject: [vlc] VLC and Kasenna > > Has anybody had success in loading video assets on a Kasenna Server? > I am using vlc to convert vob files to TS streams (required by Kasenna, > MPEG2) but the server rejects it with the message: > "asset has a bit-rate less than 64 kbps" > > Using VLC-0.7.2 on FC2 > > Any help much appreciated > Deon > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From deon at cyberconn.co.za Wed Sep 1 13:07:41 2004 From: deon at cyberconn.co.za (deon stoltz) Date: Wed, 01 Sep 2004 13:07:41 +0200 Subject: [vlc] Re: VLC and Kasenna In-Reply-To: <29D7A7147DC1D611919C0008028AC1840339C077@post.int.nob.nl> References: <29D7A7147DC1D611919C0008028AC1840339C077@post.int.nob.nl> Message-ID: <1094036861.2649.163.camel@testy.techsource.co.za> Ok, will try that tomorrow 11 PM right now and me thinks time to get some shuteye ;-) Deon On Wed, 2004-09-01 at 21:32, Dennis van Amerongen wrote: > our working setup involves XMP version 6.1.2 and we only use > MPEG layer 2 audio. maybe the MP3 is indeed the problem for Kasenna > and you should try "mpga" instead of "mp3" audio encoding with VLC. > > Dennis > > > > -----Oorspronkelijk bericht----- > Van: deon stoltz [mailto:deon at cyberconn.co.za] > Verzonden: woensdag 1 september 2004 12:20 > Aan: vlc at videolan.org > Onderwerp: [vlc] Re: VLC and Kasenna > > > Hi Paul > The version of Kasenna is: > "Kasenna MediaBase XMP v. 7.2 > I am using MP3 for audio so this should be ok? > Thanks > Deon > > > On Wed, 2004-09-01 at 16:25, Paul Rae wrote: > > What version of mediabase? Also does the TS have a ac3 audio track? > > Medibase can be real picky about assets with AC3 audio tracks. > > > > -----Original Message----- > > From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On > Behalf > > Of deon stoltz > > Sent: Tuesday, August 31, 2004 8:53 PM > > To: vlc at videolan.org > > Subject: [vlc] VLC and Kasenna > > > > Has anybody had success in loading video assets on a Kasenna Server? > > I am using vlc to convert vob files to TS streams (required by > Kasenna, > > MPEG2) but the server rejects it with the message: > > "asset has a bit-rate less than 64 kbps" > > > > Using VLC-0.7.2 on FC2 > > > > Any help much appreciated > > Deon > > > > -- > > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > > To unsubscribe, please read > http://www.videolan.org/support/lists.html > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From PRae at aminocom.com Wed Sep 1 22:37:48 2004 From: PRae at aminocom.com (Paul Rae) Date: Wed, 1 Sep 2004 16:37:48 -0400 Subject: [vlc] Re: VLC and Kasenna Message-ID: mp3 audio in a mpeg1/2 asset will not work. change it to mpga instead -----Original Message----- From: vlc-bounce at videolan.org on behalf of Dennis van Amerongen Sent: Wed 9/1/2004 3:32 PM To: 'vlc at videolan.org' Cc: Subject: [vlc] Re: VLC and Kasenna our working setup involves XMP version 6.1.2 and we only use MPEG layer 2 audio. maybe the MP3 is indeed the problem for Kasenna and you should try "mpga" instead of "mp3" audio encoding with VLC. Dennis -----Oorspronkelijk bericht----- Van: deon stoltz [mailto:deon at cyberconn.co.za] Verzonden: woensdag 1 september 2004 12:20 Aan: vlc at videolan.org Onderwerp: [vlc] Re: VLC and Kasenna Hi Paul The version of Kasenna is: "Kasenna MediaBase XMP v. 7.2 I am using MP3 for audio so this should be ok? Thanks Deon On Wed, 2004-09-01 at 16:25, Paul Rae wrote: > What version of mediabase? Also does the TS have a ac3 audio track? > Medibase can be real picky about assets with AC3 audio tracks. > > -----Original Message----- > From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On Behalf > Of deon stoltz > Sent: Tuesday, August 31, 2004 8:53 PM > To: vlc at videolan.org > Subject: [vlc] VLC and Kasenna > > Has anybody had success in loading video assets on a Kasenna Server? > I am using vlc to convert vob files to TS streams (required by Kasenna, > MPEG2) but the server rejects it with the message: > "asset has a bit-rate less than 64 kbps" > > Using VLC-0.7.2 on FC2 > > Any help much appreciated > Deon > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From post-meridian at comcast.net Wed Sep 1 23:19:58 2004 From: post-meridian at comcast.net (post-meridian at comcast.net) Date: Wed, 01 Sep 2004 21:19:58 +0000 Subject: [vlc] Digest Available? Message-ID: <090120042119.27787.41363CFE000781D800006C8B2200745672020E070B079D0A03D39B9C019F@comcast.net> The talk list is very helpful, but is there a way to get postings in digest form rather than individually? Thanks, Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From courmisch at via.ecp.fr Thu Sep 2 09:55:07 2004 From: courmisch at via.ecp.fr (=?iso-8859-15?q?R=E9mi_Denis-Courmont?=) Date: Thu, 2 Sep 2004 09:55:07 +0200 Subject: [vlc] Re: Digest Available? In-Reply-To: <090120042119.27787.41363CFE000781D800006C8B2200745672020E070B079D0A03D39B9C019F@comcast.net> References: <090120042119.27787.41363CFE000781D800006C8B2200745672020E070B079D0A03D39B9C019F@comcast.net> Message-ID: <200409020955.10563.courmisch@via.ecp.fr> Le Mercredi 1 Septembre 2004 23:19, post-meridian at comcast.net a ?crit : > The talk list is very helpful, but is there a way to get postings in > digest form rather than individually? Send a mail to ecartis at videolan.org with subject: set vlc digest Sincerely, -- R?mi Denis-Courmont http://www.simphalempin.com/home/infos/cv.shtml.fr -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From rakoto at fresenius-vial.fr Wed Sep 1 09:10:42 2004 From: rakoto at fresenius-vial.fr (rakoto at fresenius-vial.fr) Date: Wed, 1 Sep 2004 09:10:42 +0200 Subject: [vlc] read asf strream on a http server Message-ID: <007501c48ff2$cb3544e0$64d0910a@freseniusvial.fr> I am trying to read an asf video stream from an http server: the file location on the server is /img/video.asf I am able to get a video file using wget http://server.ip/img/video.asf but with vlc i get the following error. main debug: creating new input thread main: playlist item `http://192.168.30.5:80/img/video.asf' main debug: waiting for thread completion main debug: access `http', demux `', name `192.168.30.5:80/img/video.asf' main debug: looking for access module main debug: probing 1 candidate main debug: thread 3120 (input) created at priority 1 (src/input/input.c:326) main debug: cmd=state old=10 new=1 main debug: playing at normal rate access_http debug: http: server='192.168.30.5' port=80 file='/img/video.asf main debug: net: connecting to '192.168.30.5:80' main debug: looking for network module main debug: probing 2 candidates ipv4 debug: connection in progress main debug: using network module "ipv4" main debug: unlocking module "ipv4" access_http debug: protocol 'HTTP' answer code 206 access_http debug: Content-Type: application/octet-stream access_http debug: stream size=4522 main debug: using access module "access_http" main debug: looking for demux module main debug: probing 7 candidates dshow warning: dshow plugin discarded (not a valid stream) dshow warning: dshow plugin discarded (not a valid stream) ts_dvbpsi warning: TS module discarded (lost sync) ts warning: TS module discarded (lost sync) main debug: demux2_New: 'http://192.168.30.5:80/img/video.asf' -> access='' demux='' path='192.168.30.5:80/img/video.asf' main debug: looking for demux2 module main debug: probing 27 candidates asf debug: found object guid: 0x75b22630-0x668e-0x11cf-0xa6d900aa0062ce6c size:327 asf debug: read "header object" subobj:3, reserved1:1, reserved2:2 asf debug: found object guid: 0x8cabdca1-0xa947-0x11cf-0x8ee400c00c205365 size:104 asf debug: read "file properties object" file_id:0x67452301-0xab89-0xefcd-0x0000000000000000 file_size:4294967295 creation_date:0 data_packets_count:4294967295 play_duration:4294967295 send_duration:16777215 preroll:0 flags:1 min_data_packet_size:2000 max_data_packet_size:2000 max_bitrate:40000 asf debug: found object guid: 0xb7dc0791-0xa9b7-0x11cf-0x8ee600c00c205365 size:147 asf debug: read "stream Properties object" stream_type:0xbc19efc0-0x5b4d-0x11cf-0xa8fd00805f5c442b error_correction_type:0x20fb5700-0x5b55-0x11cf-0xa8fd00805f5c442b time_offset:0 type_specific_data_length:69 error_correction_data_length:0 flags:0x1 stream_number:1 asf debug: found object guid: 0x5fbf03b5-0xa92e-0x11cf-0x8ee300c00c205365 size:46 asf debug: read "header extention object" reserved1:0xabd3d211-0xa9ba-0x11cf-0x8ee600c00c205365 reserved2:6 header_extention_size:0 asf debug: found object guid: 0x75b22636-0x668e-0x11cf-0xa6d900aa0062ce6c size:-72057594037927937 asf debug: read "data object" file_id:0x67452301-0xab89-0xefcd-0x0000000000000000 total data packet:0 reserved:257 asf debug: found 1 streams asf debug: added new video stream(ID:1) main debug: using demux2 module "asf" main debug: using demux module "demux2" main debug: meta informations: main debug: - track[0]: main debug: selecting ES 0x1 main debug: looking for decoder module main debug: probing 22 candidates ffmpeg debug: libavcodec already initialized ffmpeg debug: postprocessing disabled ffmpeg debug: using direct rendering ffmpeg debug: ffmpeg codec (MPEG-4 Video) started main debug: using decoder module "ffmpeg" main debug: thread 3400 (decoder) created at priority 0 (src/input/input_dec.c:161) asf warning: cannot peek while getting new packet, EOF ? main: EOF reached main debug: 1 loops main debug: dumping stream ID 0x0 [OK:0/D:0] main debug: seekable stream, position: 4377/4522 (-:--:--/-:--:--) main debug: dumping program 0x0, version 0 (partial) main debug: ES 0x0, stream 0x0, fourcc `null', not selected [OK:0/ERR:0] main debug: ES 0x1, stream 0x0, fourcc `MP4S', selected [OK:0/ERR:0] asf debug: free asf object 0x8cabdca1-0xa947-0x11cf-0x8ee400c00c205365 asf debug: free asf object 0xb7dc0791-0xa9b7-0x11cf-0x8ee600c00c205365 asf debug: free asf object 0x5fbf03b5-0xa92e-0x11cf-0x8ee300c00c205365 asf debug: free asf object 0x75b22630-0x668e-0x11cf-0xa6d900aa0062ce6c asf debug: free asf object 0x75b22636-0x668e-0x11cf-0xa6d900aa0062ce6c main debug: unselecting ES 0x1 ffmpeg debug: ffmpeg codec (MPEG-4 Video) stopped main debug: unlocking module "ffmpeg" main debug: thread 3400 joined (src/input/input_dec.c:203) main debug: killing decoder fourcc `MP4S', 0 PES in FIFO main debug: no more selected ES main debug: unlocking module "asf" main debug: unlocking module "demux2" main debug: unlocking module "access_http" main debug: pes: 0 packets main debug: data: 0 packets main debug: buffers: 2 packets main debug: freeing info structures... main debug: thread 3120 joined (src/input/input.c:373) I think I need to modify some parameters in VLC but I don't see where?. Thank you. Franck -------------- next part -------------- An HTML attachment was scrubbed... URL: From bernat at free.fr Thu Sep 2 10:26:03 2004 From: bernat at free.fr (Vincent Bernat) Date: Thu, 02 Sep 2004 10:26:03 +0200 Subject: [vlc] DVB access Message-ID: Hello ! Is DVB working again in SVN ? I have tried the last debian package from Sam which has dvb support enabled, however, the qpsk/ts2 module is not present any more. What should I use instead to stream multiple channels with one DVB budget card ? -- BOFH excuse #69: knot in cables caused data stream to become twisted and kinked -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Thu Sep 2 14:11:51 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Thu, 2 Sep 2004 05:11:51 -0700 (PDT) Subject: [vlc] Re: Problem Compiling in Redhat 9.0 with kernel 2.4.22 In-Reply-To: <1094021139.2502.28.camel@gasluft.ethz.ch> Message-ID: <20040902121151.88592.qmail@web41013.mail.yahoo.com> Thnaks for kindly reply but i still counter 1 problem after i install XFree86,Xfree86-devel error message as below src/misc/vlm.c:1985:1: warning: no newline at end of file src/misc/vlm.c: In function `vlm_ScheduleSetup': src/misc/vlm.c:1985: parse error at end of input src/misc/vlm.c:1940: warning: unused variable `date' src/misc/vlm.c:54: warning: `vlm_MessageNew' used but never defined src/misc/vlm.c:55: warning: `vlm_MessageAdd' used but never defined src/misc/vlm.c:65: warning: `Manage' declared `static' but never defined make[2]: *** [src/misc/lib_libvlc_a-vlm.o] Error 1 make[2]: Leaving directory `/usr/src/vlc-0.7.2' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/src/vlc-0.7.2' make: *** [all] Error 2 --- Torsten Spindler wrote: > On Wed, 2004-09-01 at 05:19, Yong Chu Eu (??????) wrote: > > I am having problem in compiling vlc 0.7.2(even in vlc 0.6.0),error > > message came out said Checking for X= no, Checking for X library=no. > why? > > i configure with ./configure --disable-dvd --disable-ffmpeg > > Do you have XFree86 and XFree86-devel installed? On a RH9 installation I > use > the following versions: > > [spindler at acryl spindler]$ rpm -q XFree86 > XFree86-4.3.0-2.90.55 > [spindler at acryl spindler]$ rpm -q XFree86-devel > XFree86-devel-4.3.0-2.90.55 > > BTW to grab some updates for RH9 I recommend checking out > http://www.fedoralegacy.org. > There are some updates for RH9 and RH7.3 available. > > Bye, > Torsten > > ATTACHMENT part 2 application/pgp-signature name=signature.asc ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm My Blog: http://ceyong.blogspot.com/ __________________________________ Do you Yahoo!? Take Yahoo! Mail with you! Get it on your mobile phone. http://mobile.yahoo.com/maildemo -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From deon at cyberconn.co.za Thu Sep 2 15:58:25 2004 From: deon at cyberconn.co.za (deon stoltz) Date: Thu, 02 Sep 2004 15:58:25 +0200 Subject: [vlc] Re: VLC and Kasenna In-Reply-To: <29D7A7147DC1D611919C0008028AC1840339C077@post.int.nob.nl> References: <29D7A7147DC1D611919C0008028AC1840339C077@post.int.nob.nl> Message-ID: <1094133505.2504.26.camel@testy.techsource.co.za> Dennis Sorry, yes I did convert to mpga audio. I have had a look thru the documentation but am not sure where to start! Can you give me a hint were I will be able to read more on the setting of the PES header you mentioned previously? Thanks Deon On Wed, 2004-09-01 at 21:32, Dennis van Amerongen wrote: > our working setup involves XMP version 6.1.2 and we only use > MPEG layer 2 audio. maybe the MP3 is indeed the problem for Kasenna > and you should try "mpga" instead of "mp3" audio encoding with VLC. > > Dennis > > > > -----Oorspronkelijk bericht----- > Van: deon stoltz [mailto:deon at cyberconn.co.za] > Verzonden: woensdag 1 september 2004 12:20 > Aan: vlc at videolan.org > Onderwerp: [vlc] Re: VLC and Kasenna > > > Hi Paul > The version of Kasenna is: > "Kasenna MediaBase XMP v. 7.2 > I am using MP3 for audio so this should be ok? > Thanks > Deon > > > On Wed, 2004-09-01 at 16:25, Paul Rae wrote: > > What version of mediabase? Also does the TS have a ac3 audio track? > > Medibase can be real picky about assets with AC3 audio tracks. > > > > -----Original Message----- > > From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On > Behalf > > Of deon stoltz > > Sent: Tuesday, August 31, 2004 8:53 PM > > To: vlc at videolan.org > > Subject: [vlc] VLC and Kasenna > > > > Has anybody had success in loading video assets on a Kasenna Server? > > I am using vlc to convert vob files to TS streams (required by > Kasenna, > > MPEG2) but the server rejects it with the message: > > "asset has a bit-rate less than 64 kbps" > > > > Using VLC-0.7.2 on FC2 > > > > Any help much appreciated > > Deon > > > > -- > > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > > To unsubscribe, please read > http://www.videolan.org/support/lists.html > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Thu Sep 2 16:52:24 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Thu, 2 Sep 2004 16:52:24 +0200 Subject: [vlc] Re: DVB access In-Reply-To: References: Message-ID: <20040902145224.GA31641@kikal.org> On Thu, Sep 02, 2004, Vincent Bernat wrote : > Hello ! > > Is DVB working again in SVN ? I have tried the last debian package > from Sam which has dvb support enabled, however, the qpsk/ts2 module > is not present any more. What should I use instead to stream multiple > channels with one DVB budget card ? Is should be there. However, this module has been rewritten since 0.7.2. It is called dvb. The ts2 demux has also been renames into ts. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From nicolas00 at wanadoo.fr Thu Sep 2 17:34:43 2004 From: nicolas00 at wanadoo.fr (Eric NICOLAS) Date: Thu, 2 Sep 2004 17:34:43 +0200 (CEST) Subject: [vlc] Codecs questions Message-ID: <25919316.1094139283657.JavaMail.www@wwinf0302> Hi, Thanks to all for VLC which is a wonderfull player, I use it daily on MacOSX and it works fine (except for minor glitches with the MacOSX audio system, but not a biggy). I have a question regarding streaming and v.o.d. What is currently your best codec for doing video streaming assuming VideoLan as server and VLC as client) ? (Which for video, which for audio, which container). I heared H.264 is really ahead of other codecs in term of quality vs bandwidth. How does that relate to your best supported codec ? Is there any plan for supporting H.264 as well ? Thanks a lot for your answer. Eric. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From john at gocoretec.com Thu Sep 2 21:50:36 2004 From: john at gocoretec.com (John Anderson) Date: Thu, 2 Sep 2004 15:50:36 -0400 Subject: [vlc] RTSP on Linux does nothing. Message-ID: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> I built the daily build on my RH Linux box so that I could use RTSP. However, when I tried using RTSP it didn't seem to do anything. It works fine on the Windows binary distribution. So I used Ethereal to see what kind of RTSP requests were going out on the network. Turns out that no RTSP packets were being sent out. Anyone have any ideas on this? John -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Thu Sep 2 22:05:00 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Thu, 2 Sep 2004 22:05:00 +0200 Subject: [vlc] Re: RTSP on Linux does nothing. In-Reply-To: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> References: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> Message-ID: <20040902200500.GA5928@kikal.org> On Thu, Sep 02, 2004, John Anderson wrote : > I built the daily build on my RH Linux box so that I could use RTSP. > However, when I tried using RTSP it didn't seem to do anything. It works > fine on the Windows binary distribution. So I used Ethereal to see what > kind of RTSP requests were going out on the network. Turns out that no RTSP > packets were being sent out. Anyone have any ideas on this? > Did you compile the live.com library ? It is required to get rtsp support. If yes, could you send us some debug info ? -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ollie at predict.com Thu Sep 2 22:41:28 2004 From: ollie at predict.com (Ollie Eisman) Date: Thu, 02 Sep 2004 14:41:28 -0600 Subject: [vlc] Re: RTSP on Linux does nothing. In-Reply-To: <20040902200500.GA5928@kikal.org> References: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> <20040902200500.GA5928@kikal.org> Message-ID: <41378578.4050000@predict.com> I am having a similar problem. I compiled the live.com library but was confused as to which components of the library need to be installed, and where. It has multiple subdirectories. For instance, these directories are created after compiling: BasicUsageEnvironment/ groupsock/ UsageEnvironment/ liveMedia/ Within each, should I just pull out the *.a and *.h and link to my /usr/local/? The installation docs for live.com are very confusing. Benjamin PRACHT wrote: > On Thu, Sep 02, 2004, John Anderson wrote : > >>I built the daily build on my RH Linux box so that I could use RTSP. >>However, when I tried using RTSP it didn't seem to do anything. It works >>fine on the Windows binary distribution. So I used Ethereal to see what >>kind of RTSP requests were going out on the network. Turns out that no RTSP >>packets were being sent out. Anyone have any ideas on this? >> > > > Did you compile the live.com library ? It is required to get rtsp > support. > > If yes, could you send us some debug info ? > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Thu Sep 2 22:44:38 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Thu, 2 Sep 2004 22:44:38 +0200 Subject: [vlc] Re: RTSP on Linux does nothing. In-Reply-To: <41378578.4050000@predict.com> References: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> <20040902200500.GA5928@kikal.org> <41378578.4050000@predict.com> Message-ID: <20040902204438.GB5928@kikal.org> On Thu, Sep 02, 2004, Ollie Eisman wrote : > I am having a similar problem. I compiled the live.com library but was > confused as to which components of the library need to be installed, and > where. It has multiple subdirectories. > > For instance, these directories are created after compiling: > > BasicUsageEnvironment/ groupsock/ > UsageEnvironment/ liveMedia/ > > Within each, should I just pull out the *.a and *.h and link to my > /usr/local/? The installation docs for live.com are > very confusing. > The live.com lib has to belinked staticaly. Just add the --with-livedotcom-tree=/path/to/live/sources as argument to vlc's configure script. No installation is required. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From gbazin at altern.org Thu Sep 2 23:20:49 2004 From: gbazin at altern.org (Gildas Bazin) Date: Thu, 2 Sep 2004 23:20:49 +0200 Subject: [vlc] [ANN] VLC 0.8.0-test1 Message-ID: <200409022320.49513.gbazin@altern.org> Hello everybody, Here is the first test release in preparation for 0.8.0 (aka Janus). You will find the tarball here: http://download.videolan.org/pub/videolan/testing/vlc-0.8.0-test1/ Binaries for Win32, MacOSX and BeOS have also already been uploaded. As usual, this release contains an amazing amount of new features as well as bug fixes. To name just a few: * Re-write of the input layer. (better, faster, more extensible - eg. allows multi-input support). * Re-write of the transcoding layer. (everything VLC plays can now be transcoded). * New plugins cache system to speed up launch time. * Improvements to the subtitles/OSD subsystem. * Vastly improved DVD support. * DirectX Media Object decoder/encoder (Win32 only - supports WMV3). * Cross-platform OpenGL video output. * New screen capture input plugin (to stream your desktop). * Windows Media Server RTSP support. * Multipart JPEG demuxing/muxing. (for video streaming to a Mozilla Web Browser) * DVB subtitles decoding/encoding. * Audio equalizer. * etc... See http://developers.videolan.org/vlc/NEWS for the extensive list. Please, test heavily and report any problems you might have. Enjoy! For the VideoLAN team, -- Gildas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ollie at predict.com Thu Sep 2 23:39:55 2004 From: ollie at predict.com (Ollie Eisman) Date: Thu, 02 Sep 2004 15:39:55 -0600 Subject: [vlc] Re: RTSP on Linux does nothing. In-Reply-To: <20040902204438.GB5928@kikal.org> References: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> <20040902200500.GA5928@kikal.org> <41378578.4050000@predict.com> <20040902204438.GB5928@kikal.org> Message-ID: <4137932B.50608@predict.com> Thank you. I just recompiled with that flag and it seems to be working better. It now plays .rm but .ra and .ram files do nothing. I have my browser set to use vlc for all of these formats. Any ideas? Benjamin PRACHT wrote: > On Thu, Sep 02, 2004, Ollie Eisman wrote : > >>I am having a similar problem. I compiled the live.com library but was >>confused as to which components of the library need to be installed, and >>where. It has multiple subdirectories. >> >>For instance, these directories are created after compiling: >> >>BasicUsageEnvironment/ groupsock/ >>UsageEnvironment/ liveMedia/ >> >>Within each, should I just pull out the *.a and *.h and link to my >>/usr/local/? The installation docs for live.com are >>very confusing. >> > > > The live.com lib has to belinked staticaly. Just add the > --with-livedotcom-tree=/path/to/live/sources as argument to vlc's > configure script. No installation is required. > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hussain at mytum.de Fri Sep 3 07:02:21 2004 From: hussain at mytum.de (Hussain P.) Date: Fri, 03 Sep 2004 07:02:21 +0200 Subject: [vlc] =?iso-8859-1?q?Re=3A_=5Bvlc=5D_RTSP_+_VOD?= Message-ID: Hi, --- AndromedE182 at aol.com wrote: > Hello, > > i'm aiming to build a Video-On-Demand server, > intranet, probably using RTSP protocol. > Now i'm wondering about using RTSP protocol, is it a > lot better than HTTP ? what does it gives ? RTSP allows you to use UDP ports, which are usually preffered for video streaming. > > And that's why i'm also wondering how to use VLC as > a RTSP server. Also as far as I know, VLC cannot act as an RTSP server. You might want to try the Darwin server. Hussain From spindler at hbt.arch.ethz.ch Fri Sep 3 08:47:47 2004 From: spindler at hbt.arch.ethz.ch (Torsten Spindler) Date: Fri, 03 Sep 2004 08:47:47 +0200 Subject: [vlc] Re: Problem Compiling in Redhat 9.0 with kernel 2.4.22 In-Reply-To: <20040902121151.88592.qmail@web41013.mail.yahoo.com> References: <20040902121151.88592.qmail@web41013.mail.yahoo.com> Message-ID: <1094194067.2518.10.camel@gasluft.ethz.ch> On Thu, 2004-09-02 at 14:11, Yong Chu Eu (??????) wrote: > Thnaks for kindly reply but i still counter 1 problem after i install > XFree86,Xfree86-devel > > error message as below > > src/misc/vlm.c:1985:1: warning: no newline at end of file > src/misc/vlm.c: In function `vlm_ScheduleSetup': > src/misc/vlm.c:1985: parse error at end of input > src/misc/vlm.c:1940: warning: unused variable `date' > src/misc/vlm.c:54: warning: `vlm_MessageNew' used but never defined > src/misc/vlm.c:55: warning: `vlm_MessageAdd' used but never defined > src/misc/vlm.c:65: warning: `Manage' declared `static' but never defined > make[2]: *** [src/misc/lib_libvlc_a-vlm.o] Error 1 > make[2]: Leaving directory `/usr/src/vlc-0.7.2' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/usr/src/vlc-0.7.2' > make: *** [all] Error 2 No idea what's happening here. It looks like vlm.c got corrupted (src/misc/vlm.c:1985: parse error at end of input). Probably a make clean and then make will help? More likely you'll have to replace vlm.c with the one found in the vlc.tar.gz Bye, Torsten -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From sigmunau at stud.ntnu.no Fri Sep 3 09:41:12 2004 From: sigmunau at stud.ntnu.no (Sigmund Augdal) Date: Fri, 3 Sep 2004 09:41:12 +0200 Subject: [vlc] Re: RTSP on Linux does nothing. In-Reply-To: <41378578.4050000@predict.com> References: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> <20040902200500.GA5928@kikal.org> <41378578.4050000@predict.com> Message-ID: <20040903074112.GA22847@hobbes> You should use the --with-livedotcom-tree switch to vlc's configure to point it to your compiled live.com sources. No install needed. Sigmund On Thu, Sep 02, 2004 at 02:41:28PM -0600, Ollie Eisman wrote: > I am having a similar problem. I compiled the live.com library but was > confused as to which components of the library need to be installed, and > where. It has multiple subdirectories. > > For instance, these directories are created after compiling: > > BasicUsageEnvironment/ groupsock/ > UsageEnvironment/ liveMedia/ > > Within each, should I just pull out the *.a and *.h and link to my > /usr/local/? The installation docs for live.com are > very confusing. > > > Benjamin PRACHT wrote: > >On Thu, Sep 02, 2004, John Anderson wrote : > > > >>I built the daily build on my RH Linux box so that I could use RTSP. > >>However, when I tried using RTSP it didn't seem to do anything. It works > >>fine on the Windows binary distribution. So I used Ethereal to see what > >>kind of RTSP requests were going out on the network. Turns out that no > >>RTSP > >>packets were being sent out. Anyone have any ideas on this? > >> > > > > > >Did you compile the live.com library ? It is required to get rtsp > >support. > > > >If yes, could you send us some debug info ? > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From gbazin at altern.org Thu Sep 2 23:20:49 2004 From: gbazin at altern.org (Gildas Bazin) Date: Thu, 2 Sep 2004 23:20:49 +0200 Subject: [vlc] [ANN] VLC 0.8.0-test1 Message-ID: <200409022320.49513.gbazin@altern.org> Hello everybody, Here is the first test release in preparation for 0.8.0 (aka Janus). You will find the tarball here: http://download.videolan.org/pub/videolan/testing/vlc-0.8.0-test1/ Binaries for Win32, MacOSX and BeOS have also already been uploaded. As usual, this release contains an amazing amount of new features as well as bug fixes. To name just a few: * Re-write of the input layer. (better, faster, more extensible - eg. allows multi-input support). * Re-write of the transcoding layer. (everything VLC plays can now be transcoded). * New plugins cache system to speed up launch time. * Improvements to the subtitles/OSD subsystem. * Vastly improved DVD support. * DirectX Media Object decoder/encoder (Win32 only - supports WMV3). * Cross-platform OpenGL video output. * New screen capture input plugin (to stream your desktop). * Windows Media Server RTSP support. * Multipart JPEG demuxing/muxing. (for video streaming to a Mozilla Web Browser) * DVB subtitles decoding/encoding. * Audio equalizer. * etc... See http://developers.videolan.org/vlc/NEWS for the extensive list. Please, test heavily and report any problems you might have. Enjoy! For the VideoLAN team, -- Gildas -- This is the videolan-announce mailing-list, see http://www.videolan.org/ To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From debe at galliera.it Fri Sep 3 12:13:40 2004 From: debe at galliera.it (Marco De Benedetto) Date: Fri, 3 Sep 2004 12:13:40 +0200 Subject: [vlc] Hauppauge 350: cat /dev/video0 is ok, vlc pvr:/dev/video0:... is not Message-ID: <20040903101340.GA23401@galliera.it> Hello, I'm using vlc 0.7.2.svn20040827-1 with Hauppauge 350 PVR and I'm trying to see/stream S-Video input. I load modules and set the card with this script: #!/bin/sh modprobe i2c-core modprobe i2c-algo-bit modprobe tuner type=5 modprobe msp3400 modprobe videodev modprobe saa7115 modprobe ivtv sleep 2 test_ioctl -p0 -u 0xff ### END ### % cat /dev/video0 > /tmp/v.mpg  % vlc /tmp/v.mpg this works fine, I can see the S-Video input, but *not* with: % vlc -vvv \ pvr:/dev/video0:norm=pal:channel=2:size=720x576:bitrate=4000000:maxbitrate=6000000 \ 2>&1 | grep error [00000217] main demuxer error: no access_demux module matched "pvr" Is it correct channel=2 for S-Video input? and what does that error mean? -- thank you, debe -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ZERBIT at terra.es Fri Sep 3 13:48:11 2004 From: ZERBIT at terra.es (ZERBIT) Date: Fri, 03 Sep 2004 13:48:11 +0200 Subject: [vlc] HTTP interface in 0.8.0 test1 Message-ID: <1ac2f61a67c7.1a67c71ac2f6@teleline.es> Hi all, I have downloaded this new version and the HTTP interface doesn?t work properly. First you don?t have all control sentences that 0.7.2 website has (simply copy the website from the last version to the new one) and also if you want to add a file to the playlist you haven?t any response. I have VLC Win32 prebuilt binaries with W2K pro SP4 Regards Juan Carlos Montes -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From balajiami at hotmail.com Fri Sep 3 15:23:12 2004 From: balajiami at hotmail.com (balaji shanmugam) Date: Fri, 03 Sep 2004 13:23:12 +0000 Subject: [vlc] Streaming MP3 over RTP (Helix DNA server) Message-ID: Hi I am using Helix DNA server in my system to stream out MP3 Files as RTP (over UDP) payload and with RTSP as the Control Protocol. On the client side, I am running VLC Player. I captured the RTP packets that starts flowing from the server and have observed that the Helix Server is sending only the Header+CRC+Side Information of the MP3 frame intact but sending the Main Data of the frame across the frames. i.e., the Main Data of 1 st frame may be available in the future frames. I like to know how VLC player is handling the packet loss ? What will happen if we happen to loose one RTP packet in the stream ? How to reconstruct the MP3 frames? Any help much appreciated Balaji Shanmugam _________________________________________________________________ Marriage by choice.... http://www.shaadi.com/ptnr.php?ptnr=hmltag Log onto Shaadi.com. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 3 17:24:13 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 3 Sep 2004 17:24:13 +0200 Subject: [vlc] Re: Subtitles In-Reply-To: <000801c4912c$1fb12c70$9d00a8c0@mattias> References: <000801c4912c$1fb12c70$9d00a8c0@mattias> Message-ID: <20040903152413.GA28549@kikal.org> On Thu, Sep 02, 2004, Mattias Svensson wrote : > Hello. > > I was wondering if it is possible to autostart the subtitles in a movie. > > i.e. If you have a two CD movie and the computer is in another room and you dont want to run away to that other room to activate the text when the second CD starts. > The subtitle track should be selected automatically if you define explicitely the subtitle file to use in the open advanced dialog. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 3 17:26:25 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 3 Sep 2004 17:26:25 +0200 Subject: [vlc] Re: RTSP + VOD In-Reply-To: References: Message-ID: <20040903152625.GB28549@kikal.org> On Fri, Sep 03, 2004, Hussain P. wrote : > > Also as far as I know, VLC cannot act as an RTSP server. You might want to try the Darwin server. > Well, this is only half right. VLC features a RTSP server indeed. However, this one is still quite limited (no pause / trickplay, each user share the same stream, for instance) This will hopefully be improved in the future... -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jhonlarsson at yahoo.com Sat Sep 4 01:31:54 2004 From: jhonlarsson at yahoo.com (Jhon Larsson) Date: Fri, 3 Sep 2004 16:31:54 -0700 (PDT) Subject: [vlc] suggestion about WEB Multimedia collaboration Application Message-ID: <20040903233154.29176.qmail@web52410.mail.yahoo.com> I'm student of Computer Science in The University of Sidney, I'm developing a WEB Multimedia Collaborative System for my Project of last year in College the have the features of messaging with roster and groups management, file transfer, chat, meetings, and sharing of resources as Voice and Video. I'm doing this Project and have carried out the private and group Messaging and file transfer functionality but this are restricted to connect through Proxies and Firewalls. I have realized a strong search in google, Open Source sites as sourceforge and others and asked questions in various forums and too in various mailing list and don't find the solution. can someone suggest me some Java/JSP Open Source WEB collaborative Applications as a guide for can develop my Project of last year in College. Thanks greatly in Advance for your valuable help. --------------------------------- Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! -------------- next part -------------- An HTML attachment was scrubbed... URL: From finlayson at live.com Sat Sep 4 06:28:59 2004 From: finlayson at live.com (Ross Finlayson) Date: Fri, 03 Sep 2004 21:28:59 -0700 Subject: [vlc] Re: Streaming MP3 over RTP (Helix DNA server) In-Reply-To: References: Message-ID: <6.1.2.0.1.20040903211935.027fbd70@localhost> >I am using Helix DNA server in my system to stream out MP3 Files as RTP >(over UDP) payload and with RTSP as the Control Protocol. > >On the client side, I am running VLC Player. I captured the RTP packets >that starts flowing from the server and have observed that the Helix >Server is sending only the Header+CRC+Side Information of the MP3 frame >intact but sending the Main Data of the frame across the frames. i.e., the >Main Data of 1 st frame may be available in the future frames. > >I like to know how VLC player is handling the packet loss ? What will >happen if we happen to loose one RTP packet in the stream ? How to >reconstruct the MP3 frames? Balaji, You have identified a known problem with RFC 2250-compliant MP3/RTP streaming: The use of a 'bit reservoir' within MP3 frames means that - when packets get lost - the reconstructed MP3 data will contain audio artifacts. The solution is to use the newer "audio/mpa-robust" RTP payload format defined by RFC 3119: see and . I don't know whether "Helix DNA server" supports this; however, the LIVE.COM "testMP3Streamer" (multicast) and "testOnDemandRTSPServer" (unicast) test programs (see ) do support this, as an option. (You will need to uncomment the line #define STREAM_USING_ADUS 1 and recompile.) I suggest that you use one of these applications instead of "Helix DNA server". And, of course, the VLC media player client will handle either payload format. Ross Finlayson LIVE.COM -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sat Sep 4 11:25:46 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sat, 4 Sep 2004 11:25:46 +0200 Subject: [vlc] Re: Codecs questions In-Reply-To: References: <25919316.1094139283657.JavaMail.www@wwinf0302> Message-ID: <20040904092546.GA24016@kikal.org> On Fri, Sep 03, 2004, Eric Nicolas wrote : > I'm sorry, but: > - the web site don't mension H.264 as being supported > - in VLC 0.8.0 when I open the transcode dialog, I don't have this > codec as an option > > So supported or not ??? > Might be that the test release hasn't been compiled with the experimental x264 codec. You can compile your own version of vlc with this support... -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sat Sep 4 11:59:15 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sat, 4 Sep 2004 11:59:15 +0200 Subject: [vlc] Re: Codecs questions In-Reply-To: <20040904092546.GA24016@kikal.org> References: <25919316.1094139283657.JavaMail.www@wwinf0302> <20040904092546.GA24016@kikal.org> Message-ID: <20040904095915.GB24016@kikal.org> On Sat, Sep 04, 2004, Benjamin PRACHT wrote : > On Fri, Sep 03, 2004, Eric Nicolas wrote : > > I'm sorry, but: > > - the web site don't mension H.264 as being supported > > - in VLC 0.8.0 when I open the transcode dialog, I don't have this > > codec as an option > > > > So supported or not ??? > > > > Might be that the test release hasn't been compiled with the > experimental x264 codec. You can compile your own version of vlc with > this support... > ...or just that we haven't updated the gui yet... You can check if the module is included by using vlc -l, and checking if x264 is there. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From lists at digital.ktu.lt Sat Sep 4 13:06:17 2004 From: lists at digital.ktu.lt (Easy) Date: Sat, 4 Sep 2004 14:06:17 +0300 Subject: [vlc] Test version 4 Windows Message-ID: <001901c4926f$33ed4770$0105070a@b08admin> Hello, I was wondering, may be someone has compiled any of source versions newer than 0.7.2 for use on M$ Windoows? If so, please let me have a link. I'd be verry thankfull. Respect Algirdas Brazas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From zorglub at via.ecp.fr Sat Sep 4 13:33:54 2004 From: zorglub at via.ecp.fr (=?iso-8859-15?Q?Cl=E9ment?= Stenac) Date: Sat, 4 Sep 2004 13:33:54 +0200 Subject: [vlc] Re: Test version 4 Windows In-Reply-To: <001901c4926f$33ed4770$0105070a@b08admin> References: <001901c4926f$33ed4770$0105070a@b08admin> Message-ID: <20040904113354.GA18406@via.ecp.fr> Hello, VLC 0.8.0-test1 was released a few days ago. You can download it on http://download.videolan.org/pub/testing/vlc-0.8.0-test1/win32 -- Zorglub Cl?ment Stenac -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From lists at digital.ktu.lt Sun Sep 5 01:19:02 2004 From: lists at digital.ktu.lt (Easy) Date: Sun, 5 Sep 2004 02:19:02 +0300 Subject: [vlc] Re: Test version 4 Windows References: <001901c4926f$33ed4770$0105070a@b08admin> <20040904113354.GA18406@via.ecp.fr> Message-ID: <001b01c492d5$91b787b0$0105070a@b08admin> Thnx -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sun Sep 5 09:27:30 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sun, 5 Sep 2004 09:27:30 +0200 Subject: [vlc] Re: Codecs questions In-Reply-To: <19C17433-FE6A-11D8-98F7-000A95D8A6EC@dvdfr.com> References: <25919316.1094139283657.JavaMail.www@wwinf0302> <20040904092546.GA24016@kikal.org> <20040904095915.GB24016@kikal.org> <19C17433-FE6A-11D8-98F7-000A95D8A6EC@dvdfr.com> Message-ID: <20040905072730.GA18503@kikal.org> On Sat, Sep 04, 2004, Eric Nicolas wrote : > > En ligne de commande j'ai: > h264 D?multiplexeur vid?o H264 > packetizer_h264 Empaqueteur H264 vid?o > Keep the thread in English, please ! These are used for H264 playback. The encoding module is named x264. I'm afraid you'll have to comile VLC yourself, or wait that a release with this support copiled in comes out. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sun Sep 5 09:30:54 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sun, 5 Sep 2004 09:30:54 +0200 Subject: [vlc] Re: VLC Auto Crop In-Reply-To: References: Message-ID: <20040905073054.GB18503@kikal.org> On Sat, Sep 04, 2004, Kmike wrote : > Hi, > > I m using VLC 0.7.2 under Mac OS X 10.3.5 on an Powermac Quicksilver 933 > with 1 GB Ram and nVidia GF4 MX. When i use the auto crop feature, the movie > starts without the blackborders, everything is fine to this point. But > during playback, the video will be cropped more and more, so at the end i > can only see an 3 cm line part of my movie. > So do have any tips for me to avoid this. i want to use this feature because > it is very helpful in my eyes > Well, we are aware that the autocrop feature is not really usable ATM... Somebody should have a look at it one day (Be aware that it's probably not really a high priority task for current project developpers though) -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From pype at gameflux.com Sun Sep 5 13:43:28 2004 From: pype at gameflux.com (PyPe) Date: Sun, 05 Sep 2004 13:43:28 +0200 Subject: [vlc] Using / editing http interface In-Reply-To: <001b01c492d5$91b787b0$0105070a@b08admin> References: <001901c4926f$33ed4770$0105070a@b08admin> <20040904113354.GA18406@via.ecp.fr> Message-ID: <5.2.0.9.0.20040905134131.02021dc8@213.186.38.100> Hello, I want to know if it is possible to have the directory, hosts and connections properties to work under the http interface ? thanks -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From joelja at darkwing.uoregon.edu Sun Sep 5 16:09:44 2004 From: joelja at darkwing.uoregon.edu (Joel Jaeggli) Date: Sun, 5 Sep 2004 07:09:44 -0700 (PDT) Subject: [vlc] Re: Feeture request In-Reply-To: References: Message-ID: On Sat, 4 Sep 2004, Hrafn ?ki Hrafnsson wrote: > Hi I'm a proud owener of Airport Extreeme wireless soloution from Apple. I > stream my music through iTunes to my stereo. I would like to stream the audio > of video files the same way i do in iTunes. No wires , it's more fun and so > much cooler that way. Any way to get the developers to pick this technology > up? apple encrypts the rtsp stream that they ship to the airport from itunes it's already been cracked in my understanding but that doesn't make it a terribly friendly device. > -- -------------------------------------------------------------------------- Joel Jaeggli Unix Consulting joelja at darkwing.uoregon.edu GPG Key Fingerprint: 5C6E 0104 BAF0 40B0 5BD3 C38B F000 35AB B67F 56B2 From Dennis.vanAmerongen at nob.nl Sun Sep 5 17:04:54 2004 From: Dennis.vanAmerongen at nob.nl (Dennis van Amerongen) Date: Sun, 5 Sep 2004 17:04:54 +0200 Subject: [vlc] Re: Codecs questions Message-ID: <29D7A7147DC1D611919C0008028AC1840339C093@post.int.nob.nl> I'd say H.264 is the way to go when it comes to quality vs bandwith, however you still need a proper player to support it. What good is MPEG4 v10/AVC/H.264 if you need a different streaming player (or commercial plugin) and even platform (server) for each different streaming implementation by Real/Envivio, Apple, Optibase, VBrick etc? WM9 seems to be going strong at the moment. Even Blu-ray (http://www.blu-ray.com/) has adopted WMV9. The WM9 player also supports protocol rollover (multi to unicast, udp, tcp) hereby also fixing the NAT issue a lot of other clients still have (including set top boxes). From benmomo at doctor.upv.es Mon Sep 6 09:48:49 2004 From: benmomo at doctor.upv.es (Benjamin Molina) Date: Mon, 06 Sep 2004 09:48:49 +0200 Subject: [vlc] vlc vs. vls In-Reply-To: References: <25919316.1094139283657.JavaMail.www@wwinf0302> Message-ID: <413C1661.5010600@doctor.upv.es> Hello, I've been using vls and vlc for about a year in video streaming applications. I know vls has been left appart for the rich and full of features vlc. However, vls is a small lightweight server whose encoding delay is very small compared to vlc : - vls delay is practically unnoticeable - vlc delay is over a second Is it possible to reduce this delay in vlc ? Is it possible to reduce vlc size to a more lightweight server ? Compiling vlc with the minimal requirements/libraries the size is much greater compared to vls compilation. I've been trying to understand the source code, but I don't know which parts add significant delay; besides, I find the documentation a bit hard for understanding how vlc/vls is developed. Thanks in advance, Benjamin -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Mon Sep 6 11:47:04 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Mon, 6 Sep 2004 11:47:04 +0200 Subject: [vlc] Re: Problem when streaming from v4l device. In-Reply-To: <20040830142422.GA20565@via.ecp.fr> References: <200408301153.33465.philippe.vanhecke@belnet.be> <200408301254.32090.philippe.vanhecke@belnet.be> <20040830142422.GA20565@via.ecp.fr> Message-ID: <200409061147.04275.philippe.vanhecke@belnet.be> On Monday 30 August 2004 16:24, Christophe Massiot wrote: > CM Could you also check the memory usage ("free") ? I have a memleak with > CM v4l devices here, which I haven't had time to track down yet. Hi sorry for late answer, can you tell me more about the information you need You want "free" information at different time ? Regards, Philippe. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From dermot at dspsrv.com Mon Sep 6 15:23:56 2004 From: dermot at dspsrv.com (Dermot McGahon) Date: Mon, 06 Sep 2004 14:23:56 +0100 Subject: [vlc] Re: Problem when streaming from v4l device. In-Reply-To: <200409061147.04275.philippe.vanhecke@belnet.be> References: <200408301153.33465.philippe.vanhecke@belnet.be> <200408301254.32090.philippe.vanhecke@belnet.be> <20040830142422.GA20565@via.ecp.fr> <200409061147.04275.philippe.vanhecke@belnet.be> Message-ID: On Mon, 6 Sep 2004 11:47:04 +0200, Philippe Van Hecke wrote: > On Monday 30 August 2004 16:24, Christophe Massiot wrote: >> CM Could you also check the memory usage ("free") ? I have a memleak >> with >> CM v4l devices here, which I haven't had time to track down yet. > > Hi sorry for late answer, can you tell me more about the information you > need > You want "free" information at different time ? [dermot at dermot-ws dermot]$ echo $SHELL /bin/bash [dermot at dermot-ws dermot]$ while true; do free; sleep 30; date; echo " "; done total used free shared buffers cached Mem: 387172 383492 3680 0 38920 95600 -/+ buffers/cache: 248972 138200 Swap: 1036176 2676 1033500 You could also run top and use shift-M to sort by memory usage. Dermot. -- -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jeroenh at noterik.nl Mon Sep 6 15:30:54 2004 From: jeroenh at noterik.nl (Jeroen Heijhoff) Date: Mon, 06 Sep 2004 15:30:54 +0200 Subject: [vlc] vlc doesn't play h263 file ... why? Message-ID: <413C668E.4060705@noterik.nl> Hi, I'm trying to play a h263 file with vlc but somehow vlc just doesn't seem to get it. It really should play it, on the website the specifications say vlc mediaplayer supports the format. Is there anybody who can say more about this problem? Thanks in advance, Jeroen H -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Mon Sep 6 16:37:55 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Mon, 6 Sep 2004 16:37:55 +0200 Subject: [vlc] Re: vlc vs. vls In-Reply-To: <413C1661.5010600@doctor.upv.es> References: <25919316.1094139283657.JavaMail.www@wwinf0302> <413C1661.5010600@doctor.upv.es> Message-ID: <20040906143755.GA2376@kikal.org> On Mon, Sep 06, 2004, Benjamin Molina wrote : > Hello, > > I've been using vls and vlc for about a year in video streaming > applications. > I know vls has been left appart for the rich and full of features vlc. > However, vls is a small lightweight server whose encoding delay is very > small compared to vlc : > - vls delay is practically unnoticeable > - vlc delay is over a second > Is it possible to reduce this delay in vlc ? > Is it possible to reduce vlc size to a more lightweight server ? > Compiling vlc with the minimal requirements/libraries the size is much > greater compared to vls compilation. > I've been trying to understand the source code, but I don't know which > parts add significant delay; besides, I find the documentation a bit > hard for understanding how vlc/vls is developed. > Delay can be reduced by using the --sout-udp-caching option (in ms) Dealy will also change with what you are doing. transcoding adds delay... -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ZERBIT at terra.es Mon Sep 6 17:01:02 2004 From: ZERBIT at terra.es (ZERBIT) Date: Mon, 06 Sep 2004 17:01:02 +0200 Subject: [vlc] Re: vlc vs. vls Message-ID: <6a2766b444.6b4446a276@teleline.es> Estimado Benjamin, Permiteme presentarme, me llamo Juan Carlos Montes soy jefe de proyecto de una peque?a empresa en Madrid. Llevo alg?n tiempo trabajando con VLC y sistemas de video IP en tiempo real RTSP-RTP (smartsight, ImPath, eimagina.net y AXIS). Me alegra escuchar a alguien de habla hispana en este foro ;D. Por lo que veo estas utilizando VLS. Me gustaria saber el alcance de vuestras pruebas, as? como la plataforma que est?s utilizando ya que estamos interesados en este tipo de desarrollos para evaluar una futura cooperaci?n. Espero tus comentarios. Sin m?s, atentamente. Juan Carlos Montes Costa Jefe proyecto ZerBit S.L. Maestro Guerrero N?1-1-4 Alcobendas, Madrid 28107 ----- Mensaje Original ----- De: Benjamin Molina Fecha: Lunes, Septiembre 6, 2004 9:48 am Asunto: [vlc] vlc vs. vls > Hello, > > I've been using vls and vlc for about a year in video streaming > applications. > I know vls has been left appart for the rich and full of features vlc. > However, vls is a small lightweight server whose encoding delay is > very > small compared to vlc : > - vls delay is practically unnoticeable > - vlc delay is over a second > Is it possible to reduce this delay in vlc ? > Is it possible to reduce vlc size to a more lightweight server ? > Compiling vlc with the minimal requirements/libraries the size is > much > greater compared to vls compilation. > I've been trying to understand the source code, but I don't know > which > parts add significant delay; besides, I find the documentation a > bit > hard for understanding how vlc/vls is developed. > > Thanks in advance, > > Benjamin > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From courmisch at via.ecp.fr Mon Sep 6 17:16:39 2004 From: courmisch at via.ecp.fr (=?iso-8859-1?q?R=E9mi_Denis-Courmont?=) Date: Mon, 6 Sep 2004 17:16:39 +0200 Subject: [vlc] Re: Using / editing http interface In-Reply-To: <5.2.0.9.0.20040905134131.02021dc8@213.186.38.100> References: <001901c4926f$33ed4770$0105070a@b08admin> <20040904113354.GA18406@via.ecp.fr> <5.2.0.9.0.20040905134131.02021dc8@213.186.38.100> Message-ID: <200409061716.43209.courmisch@via.ecp.fr> Le Dimanche 5 Septembre 2004 13:43, PyPe a ?crit : > I want to know if it is possible to have the directory, hosts and > connections properties to work under the http interface ? What do you mean exactly? The HTTP interface has two options, both of them supposed to work fine: --http-host specifies the host's address to bind the HTTP interface to. --http-src specifies the root directory for the HTTP interface's mini Web server. -- R?mi Denis-Courmont http://www.simphalempin.com/home/infos/cv.shtml.fr -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From ZERBIT at terra.es Mon Sep 6 17:19:43 2004 From: ZERBIT at terra.es (ZERBIT) Date: Mon, 06 Sep 2004 17:19:43 +0200 Subject: [vlc] Re: vlc vs. vls Message-ID: <6798467d51.67d5167984@teleline.es> Sorry, the last email was a private email. Regards ----- Mensaje Original ----- De: Benjamin Molina Fecha: Lunes, Septiembre 6, 2004 9:48 am Asunto: [vlc] vlc vs. vls > Hello, > > I've been using vls and vlc for about a year in video streaming > applications. > I know vls has been left appart for the rich and full of features vlc. > However, vls is a small lightweight server whose encoding delay is > very > small compared to vlc : > - vls delay is practically unnoticeable > - vlc delay is over a second > Is it possible to reduce this delay in vlc ? > Is it possible to reduce vlc size to a more lightweight server ? > Compiling vlc with the minimal requirements/libraries the size is > much > greater compared to vls compilation. > I've been trying to understand the source code, but I don't know > which > parts add significant delay; besides, I find the documentation a > bit > hard for understanding how vlc/vls is developed. > > Thanks in advance, > > Benjamin > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From pype at gameflux.com Mon Sep 6 17:21:13 2004 From: pype at gameflux.com (PyPe) Date: Mon, 06 Sep 2004 17:21:13 +0200 Subject: [vlc] Re: Using / editing http interface In-Reply-To: <200409061716.43209.courmisch@via.ecp.fr> References: <5.2.0.9.0.20040905134131.02021dc8@213.186.38.100> <001901c4926f$33ed4770$0105070a@b08admin> <20040904113354.GA18406@via.ecp.fr> <5.2.0.9.0.20040905134131.02021dc8@213.186.38.100> Message-ID: <5.2.0.9.0.20040906171900.0201ddd8@213.186.38.100> Its not about the options of the interface itself. It's about the things we can do with the html page like admin/index.html which is supposed to print out the current connections to the stream. But this page is not working, and i would like to know why ? is it working only for non streaming files ? At 17:16 06/09/2004 +0200, you wrote: >Le Dimanche 5 Septembre 2004 13:43, PyPe a ?crit : > > I want to know if it is possible to have the directory, hosts and > > connections properties to work under the http interface ? > >What do you mean exactly? >The HTTP interface has two options, both of them supposed to work fine: >--http-host specifies the host's address to bind the HTTP interface to. >--http-src specifies the root directory for the HTTP interface's mini >Web server. > >-- >R?mi Denis-Courmont >http://www.simphalempin.com/home/infos/cv.shtml.fr -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From conundrums at myway.com Mon Sep 6 17:31:14 2004 From: conundrums at myway.com (Hussain) Date: Mon, 6 Sep 2004 11:31:14 -0400 (EDT) Subject: [vlc] capturing pause, forward and rewind signals Message-ID: <20040906153114.5EAD93970@mprdmxin.myway.com> Hello. Does anyone know how to caputre the pause, rewind and forward signals, in the livedotcom.cpp code. Thanks. Hussain _______________________________________________ No banners. No pop-ups. No kidding. Make My Way your home on the Web - http://www.myway.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From rayesteq at yahoo.com Tue Sep 7 17:04:43 2004 From: rayesteq at yahoo.com (Eray BALAT) Date: Tue, 7 Sep 2004 08:04:43 -0700 (PDT) Subject: [vlc] A question includes VLC-Mozilla-Streaming??? In-Reply-To: <20040906153114.5EAD93970@mprdmxin.myway.com> Message-ID: <20040907150443.9269.qmail@web11410.mail.yahoo.com> Hi everrybody; I finally setup VLC and its plugin for my Linux.I have a server which shows different jpeg's in an order.What i want to do is, at end of my jpeg files I want to (to show ofcourse) add a small video file and watch all these stuff ( video and the pictures ) from mozilla. First question is (I know this not the right place but maybe someone knows) : For example in IE can show the pictures without a delay but in mozilla I have to wait almost 1 -2 seconds.While this is going on Mozilla shows me a black screen? Second question : Do I have to install a VLS on my Server for showing this video?Because when I add this video file, Mozilla crashes when the turn comes to video?I think VLC doesnt start straeming or caching(whatever you say I don't know) anyway Do you have any idea? (Ps:I use a javaScript to show the pictures.In every 5 seconds it freshs the browser and when I want to show my file i wrote an embeded HTML code and I give this htm. file for the purpose of playing the video in the browser. ) I am very grateful your patiance and helpful..Thank You ERAY BALAT --------------------------------- Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! -------------- next part -------------- An HTML attachment was scrubbed... URL: From bigben+spam at videolan.org Tue Sep 7 17:48:42 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Tue, 7 Sep 2004 17:48:42 +0200 Subject: [vlc] Re: Codecs questions In-Reply-To: References: <29D7A7147DC1D611919C0008028AC1840339C093@post.int.nob.nl> Message-ID: <20040907154842.GB3024@kikal.org> On Sun, Sep 05, 2004, Eric Nicolas wrote : > Thanks for these interesting insights on the question. > > I would have the same question then, what is the level of support for > WM9 > (encoding and decoding) in VLC ? Isn't that format completely Microsoft > proprietary ? Can an open source streaming server (such as Darwin) be > used to do V.O.D. in WM9 as it is possible with MPEG4 ? > > VLC cannot encode WM9, and only decode it under windows using proprietary codecs from microsoft through the DMO API. I don't think DSS allows to stream WM9 (at least not in a way readable by WMP). -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From john at gocoretec.com Tue Sep 7 21:33:01 2004 From: john at gocoretec.com (John Anderson) Date: Tue, 7 Sep 2004 15:33:01 -0400 Subject: [vlc] Re: RTSP on Linux does nothing. References: <0a2101c49126$1e762320$1dc8c8c8@CheesyPoof> <20040902200500.GA5928@kikal.org> Message-ID: <021f01c49511$7d559580$1dc8c8c8@CheesyPoof> ----- Original Message ----- From: "Benjamin PRACHT" To: Sent: Thursday, September 02, 2004 4:05 PM Subject: [vlc] Re: RTSP on Linux does nothing. > On Thu, Sep 02, 2004, John Anderson wrote : > > I built the daily build on my RH Linux box so that I could use RTSP. > > However, when I tried using RTSP it didn't seem to do anything. It works > > fine on the Windows binary distribution. So I used Ethereal to see what > > kind of RTSP requests were going out on the network. Turns out that no RTSP > > packets were being sent out. Anyone have any ideas on this? > > > > Did you compile the live.com library ? It is required to get rtsp > support. > > If yes, could you send us some debug info ? The problem was that I did not have the Live library configured. Thanks, working now! -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Wed Sep 8 09:52:52 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Wed, 8 Sep 2004 09:52:52 +0200 Subject: [vlc] Re: Problem when streaming from v4l device. In-Reply-To: <20040830142422.GA20565@via.ecp.fr> References: <200408301153.33465.philippe.vanhecke@belnet.be> <200408301254.32090.philippe.vanhecke@belnet.be> <20040830142422.GA20565@via.ecp.fr> Message-ID: <200409080952.52366.philippe.vanhecke@belnet.be> > > >It might be a problem with CPU resources so I'd first recommend > > > to use a lower resolution stream. You could also use the > > > "hurry-up" option in the ffmpeg encoder module (eg. > > > #transcode{...keyint=80,venc=ffmpeg{hurry-up}}). I have try your suggestions but have also the problem but more later > Could you also check the memory usage ("free") ? I have a memleak with > v4l devices here, which I haven't had time to track down yet. You can find here http://mcast-server.belnet.be/vlc-v4l-log-svn-062004.tgz log file and free stat file for the given period where vlc was running. Regards LePhiloux -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Wed Sep 8 13:54:41 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Wed, 8 Sep 2004 04:54:41 -0700 (PDT) Subject: [vlc] X11/extensions/Xinerama.h: present but cannot be compiled Message-ID: <20040908115441.50692.qmail@web41011.mail.yahoo.com> Anyone know how to fix this? checking X11/Xlib.h usability... yes checking X11/Xlib.h presence... yes checking for X11/Xlib.h... yes checking X11/extensions/Xinerama.h usability... no checking X11/extensions/Xinerama.h presence... yes configure: WARNING: X11/extensions/Xinerama.h: present but cannot be compiled configure: WARNING: X11/extensions/Xinerama.h: check for missing prerequisite headers? configure: WARNING: X11/extensions/Xinerama.h: see the Autoconf documentation configure: WARNING: X11/extensions/Xinerama.h: section "Present But Cannot Be Compiled" configure: WARNING: X11/extensions/Xinerama.h: proceeding with the preprocessor's result configure: WARNING: X11/extensions/Xinerama.h: in the future, the compiler will take precedence configure: WARNING: ## ------------------------------ ## configure: WARNING: ## Report this to the vlc lists. ## configure: WARNING: ## ------------------------------ ## checking for X11/extensions/Xinerama.h... yes checking for XineramaQueryExtension in -lXinerama... yes checking X11/extensions/Xv.h usability... yes checking X11/extensions/Xv.h presence... yes checking for X11/extensions/Xv.h... yes ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm My Blog: http://ceyong.blogspot.com/ _______________________________ Do you Yahoo!? Express yourself with Y! Messenger! Free. Download now. http://messenger.yahoo.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Wed Sep 8 15:20:21 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Wed, 8 Sep 2004 06:20:21 -0700 (PDT) Subject: [vlc] Error compiling vlc on redhat Message-ID: <20040908132021.6812.qmail@web41004.mail.yahoo.com> i try to compile all lib & pluggin and vlc for many days but still not get all done,hope someone can guide me 1) i compile & install wxX11-2.4.1 with x11 support as GUI,but When i compile my vlc with ./configure --disable-ffmpeg,its come out with this error message. If i disable ffmpeg,can i recv any multicast(VCD or DVD) stream from vls? interface.cpp: In member function `void wxVolCtrl::UpdateVolume()': interface.cpp:1433: `SetToolTip' undeclared (first use this function) interface.cpp:1433: (Each undeclared identifier is reported only once for each function it appears in.) make[6]: *** [libwxwindows_plugin_a-interface.o] Error 1 make[6]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui/wxwindows' make[5]: *** [all-modules] Error 1 make[5]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui/wxwindows' make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui' make[3]: *** [all] Error 2 make[3]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/usr/src/vlc-0.7.2/modules' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/src/v lc-0.7.2' make: *** [all] Error 2 2)Even i install libcddb 0.9.5 into /usr/local/lib but when i compile,still have such error,i did type ldconfig with /usr/local/lib written on /etc/ld.so.conf . where to get libvcdinfo 0.7.20 package? it seem not available on net? checking for libcddb >= 0.9.4... Package libcddb was not found in the pkg-config search path. Perhaps you should add the directory containing `libcddb.pc' to the PKG_CONFIG_PATH environment variable No package 'libcddb' found configure: WARNING: new enough libcddb not found. CDDB access disabled checking for libvcdinfo >= 0.7.20... Package libvcdinfo was not found in the pkg-config search path. Perhaps you should add the directory containing `libvcdinfo.pc' to the PKG_CONFIG_PATH environment variable No package 'libvcdinfo' found configure: WARNING: vcdinfo library not found 3) Even i did install ffmpeg,but when i compile vlc, it come out with this error: checking ffmpeg/avcodec.h usability... no checking ffmpeg/avcodec.h presence... no checking for ffmpeg/avcodec.h... no configure: error: Missing header file ffmpeg/avcodec.h. ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm My Blog: http://ceyong.blogspot.com/ _______________________________ Do you Yahoo!? Win 1 of 4,000 free domain names from Yahoo! Enter now. http://promotions.yahoo.com/goldrush -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Wed Sep 8 15:22:33 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Wed, 8 Sep 2004 06:22:33 -0700 (PDT) Subject: [vlc] Error compiling vlc on redhat Message-ID: <20040908132233.67344.qmail@web41011.mail.yahoo.com> i try to compile all lib & pluggin and vlc for many days but still not get all done,hope someone can guide me 1) i compile & install wxX11-2.4.1 with x11 support as GUI,but When i compile my vlc with ./configure --disable-ffmpeg,its come out with this error message. If i disable ffmpeg,can i recv any multicast(VCD or DVD) stream from vls? interface.cpp: In member function `void wxVolCtrl::UpdateVolume()': interface.cpp:1433: `SetToolTip' undeclared (first use this function) interface.cpp:1433: (Each undeclared identifier is reported only once for each function it appears in.) make[6]: *** [libwxwindows_plugin_a-interface.o] Error 1 make[6]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui/wxwindows' make[5]: *** [all-modules] Error 1 make[5]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui/wxwindows' make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui' make[3]: *** [all] Error 2 make[3]: Leaving directory `/usr/src/vlc-0.7.2/modules/gui' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/usr/src/vlc-0.7.2/modules' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/src/v lc-0.7.2' make: *** [all] Error 2 2)Even i install libcddb 0.9.5 into /usr/local/lib but when i compile,still have such error,i did type ldconfig with /usr/local/lib written on /etc/ld.so.conf . where to get libvcdinfo 0.7.20 package? it seem not available on net? checking for libcddb >= 0.9.4... Package libcddb was not found in the pkg-config search path. Perhaps you should add the directory containing `libcddb.pc' to the PKG_CONFIG_PATH environment variable No package 'libcddb' found configure: WARNING: new enough libcddb not found. CDDB access disabled checking for libvcdinfo >= 0.7.20... Package libvcdinfo was not found in the pkg-config search path. Perhaps you should add the directory containing `libvcdinfo.pc' to the PKG_CONFIG_PATH environment variable No package 'libvcdinfo' found configure: WARNING: vcdinfo library not found 3) Even i did install ffmpeg,but when i compile vlc, it come out with this error: checking ffmpeg/avcodec.h usability... no checking ffmpeg/avcodec.h presence... no checking for ffmpeg/avcodec.h... no configure: error: Missing header file ffmpeg/avcodec.h. ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm My Blog: http://ceyong.blogspot.com/ __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From spindler at hbt.arch.ethz.ch Wed Sep 8 15:42:36 2004 From: spindler at hbt.arch.ethz.ch (Torsten Spindler) Date: Wed, 08 Sep 2004 15:42:36 +0200 Subject: [vlc] Re: Error compiling vlc on redhat In-Reply-To: <20040908132233.67344.qmail@web41011.mail.yahoo.com> References: <20040908132233.67344.qmail@web41011.mail.yahoo.com> Message-ID: <1094650956.2600.77.camel@gasluft.ethz.ch> Not sure if it's of help for you: I placed my latest rpm build and source rpms for RH9 at http://fett.ethz.ch/~spindler/apt/redhat/9/en/i386/ In the RPMS.ts.vlc directory various rpms for building and running vlc on RH9 can be found, though not necessarily all you need. Besides rpms from http://www.fedoralegacy.org I also use rpms from http://www.freshrpms.net and http://dag.wieers.com on the RH9 boxes. Bye, Torsten On Wed, 2004-09-08 at 15:22, Yong Chu Eu (??????) wrote: > i try to compile all lib & pluggin and vlc for many days but still not get > all done,hope someone can guide me > > 1) i compile & install wxX11-2.4.1 with x11 support as GUI,but When i > compile my vlc with ./configure --disable-ffmpeg,its come out with this > error message. If i disable ffmpeg,can i recv any multicast(VCD or DVD) > stream from vls? > > interface.cpp: In member function `void > wxVolCtrl::UpdateVolume()': > interface.cpp:1433: `SetToolTip' undeclared (first use > this function) > interface.cpp:1433: (Each undeclared identifier is > reported only once for each > function it appears in.) > make[6]: *** [libwxwindows_plugin_a-interface.o] Error > 1 > make[6]: Leaving directory > `/usr/src/vlc-0.7.2/modules/gui/wxwindows' > make[5]: *** [all-modules] Error 1 > make[5]: Leaving directory > `/usr/src/vlc-0.7.2/modules/gui/wxwindows' > make[4]: *** [all-recursive] Error 1 > make[4]: Leaving directory > `/usr/src/vlc-0.7.2/modules/gui' > make[3]: *** [all] Error 2 > make[3]: Leaving directory > `/usr/src/vlc-0.7.2/modules/gui' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory > `/usr/src/vlc-0.7.2/modules' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/usr/src/v > lc-0.7.2' > make: *** [all] Error 2 > > 2)Even i install libcddb 0.9.5 into /usr/local/lib but when i > compile,still have such error,i did type ldconfig with /usr/local/lib > written on /etc/ld.so.conf . where to get libvcdinfo 0.7.20 package? it > seem not available on net? > > checking for libcddb >= 0.9.4... Package libcddb was > not found in the pkg-config search path. > Perhaps you should add the directory containing > `libcddb.pc' > to the PKG_CONFIG_PATH environment variable > No package 'libcddb' found > configure: WARNING: new enough libcddb not found. CDDB > access disabled > checking for libvcdinfo >= 0.7.20... Package > libvcdinfo was not found in the pkg-config search > path. > Perhaps you should add the directory containing > `libvcdinfo.pc' > to the PKG_CONFIG_PATH environment variable > No package 'libvcdinfo' found > configure: WARNING: vcdinfo library not found > > 3) Even i did install ffmpeg,but when i compile vlc, it come out with this > error: > > checking ffmpeg/avcodec.h usability... no > checking ffmpeg/avcodec.h presence... no > checking for ffmpeg/avcodec.h... no > configure: error: Missing header file > ffmpeg/avcodec.h. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From bigben+spam at videolan.org Wed Sep 8 17:14:28 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 8 Sep 2004 17:14:28 +0200 Subject: [vlc] Re: Error compiling vlc on redhat In-Reply-To: <20040908132021.6812.qmail@web41004.mail.yahoo.com> References: <20040908132021.6812.qmail@web41004.mail.yahoo.com> Message-ID: <20040908151428.GA25105@kikal.org> On Wed, Sep 08, 2004, Yong Chu Eu (??????) wrote : > i try to compile all lib & pluggin and vlc for many days but still not get > all done,hope someone can guide me > > 1) i compile & install wxX11-2.4.1 with x11 support as GUI,but When i > compile my vlc with ./configure --disable-ffmpeg,its come out with this > error message. If i disable ffmpeg,can i recv any multicast(VCD or DVD) > stream from vls? > You'd better use the version of wxwindows we have put in our contribs : http://download.videolan.org/pub/videolan/vlc/0.7.2/contrib/wxWindows-20031222.tar.gz Moreover, I don't you haven't already done it, you should compile wxwindows with the --with-gtk option You don't need ffmpeg to receive MPEG2/ts streams (which you are likely doing if you are using vls). You however need libmpeg2 (mpeg2dec) and libdvbpsi > 3) Even i did install ffmpeg,but when i compile vlc, it come out with this > error: > > checking ffmpeg/avcodec.h usability... no > checking ffmpeg/avcodec.h presence... no > checking for ffmpeg/avcodec.h... no > configure: error: Missing header file > ffmpeg/avcodec.h. > ffmpeg should be compiled statically, with the --with-ffmpeg-tree=/path/to/ffmpeg/sources option -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ricardo at americasnet.com Wed Sep 8 19:30:20 2004 From: ricardo at americasnet.com (Ricardo Kleemann) Date: Wed, 8 Sep 2004 10:30:20 -0700 Subject: [vlc] Please help with RTP streaming Message-ID: <006101c495c9$83a1ca40$0c46170a@LA.FRD.DIRECTV.COM> Hello, I just installed VLC on windows and I'm quite impressed with it. Has anyone had success with RTP streaming to a Darwin Streaming Server? I attempted to setup the RTP settings and configure the SDP file appropriately but it doesn't seem to work. If anyone knows how to make this work, please help me out. :-) Thanks Ricardo -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Wed Sep 8 19:44:08 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 8 Sep 2004 19:44:08 +0200 Subject: [vlc] Re: Please help with RTP streaming In-Reply-To: <006101c495c9$83a1ca40$0c46170a@LA.FRD.DIRECTV.COM> References: <006101c495c9$83a1ca40$0c46170a@LA.FRD.DIRECTV.COM> Message-ID: <20040908174408.GB6214@kikal.org> On Wed, Sep 08, 2004, Ricardo Kleemann wrote : > Hello, > > I just installed VLC on windows and I'm quite impressed with it. > > Has anyone had success with RTP streaming to a Darwin Streaming Server? I > attempted to setup the RTP settings and configure the SDP file appropriately > but it doesn't seem to work. > > If anyone knows how to make this work, please help me out. :-) > AFAIK, this is currently impossible. Might come in the future... -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Wed Sep 8 20:48:46 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Wed, 8 Sep 2004 20:48:46 +0200 Subject: [vlc] Re: Please help with RTP streaming In-Reply-To: <20040908174408.GB6214@kikal.org> References: <006101c495c9$83a1ca40$0c46170a@LA.FRD.DIRECTV.COM> <20040908174408.GB6214@kikal.org> Message-ID: And please don't ask a question multiple times in multiple places.... It's just more work and clutter for us. DJ On 08 sep 2004, at 19:44, Benjamin PRACHT wrote: > On Wed, Sep 08, 2004, Ricardo Kleemann wrote : >> Hello, >> >> I just installed VLC on windows and I'm quite impressed with it. >> >> Has anyone had success with RTP streaming to a Darwin Streaming >> Server? I >> attempted to setup the RTP settings and configure the SDP file >> appropriately >> but it doesn't seem to work. >> >> If anyone knows how to make this work, please help me out. :-) >> > > AFAIK, this is currently impossible. Might come in the future... > > -- > BigBen > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ricardo at americasnet.com Wed Sep 8 20:51:28 2004 From: ricardo at americasnet.com (Ricardo Kleemann) Date: Wed, 8 Sep 2004 11:51:28 -0700 Subject: [vlc] Re: Please help with RTP streaming References: <006101c495c9$83a1ca40$0c46170a@LA.FRD.DIRECTV.COM> <20040908174408.GB6214@kikal.org> Message-ID: <00a901c495d4$d95a84d0$0c46170a@LA.FRD.DIRECTV.COM> Are you referring to my post on the Web Forum? I first posted on the Forum, then decided to subscribe to the list and ask here. How can I know that the same people frequent both (and thus cause more "work and clutter"?) ----- Original Message ----- From: "Derk-Jan Hartman" To: Cc: "Ricardo Kleemann" Sent: Wednesday, September 08, 2004 11:48 AM Subject: Re: [vlc] Re: Please help with RTP streaming > And please don't ask a question multiple times in multiple places.... > It's just more work and clutter for us. > > DJ > > On 08 sep 2004, at 19:44, Benjamin PRACHT wrote: > > > On Wed, Sep 08, 2004, Ricardo Kleemann wrote : > >> Hello, > >> > >> I just installed VLC on windows and I'm quite impressed with it. > >> > >> Has anyone had success with RTP streaming to a Darwin Streaming > >> Server? I > >> attempted to setup the RTP settings and configure the SDP file > >> appropriately > >> but it doesn't seem to work. > >> > >> If anyone knows how to make this work, please help me out. :-) > >> > > > > AFAIK, this is currently impossible. Might come in the future... > > > > -- > > BigBen > > > > -- > > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > > To unsubscribe, please read http://www.videolan.org/support/lists.html > > > > > --- > Universiteit Twente > Derk-Jan Hartman (d.hartman at student.utwente dot nl) > http://home.student.utwente.nl/d.hartman > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Thu Sep 9 03:09:40 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Wed, 8 Sep 2004 18:09:40 -0700 (PDT) Subject: [vlc] Re: Error compiling vlc on redhat In-Reply-To: <20040908151428.GA25105@kikal.org> Message-ID: <20040909010940.5428.qmail@web41004.mail.yahoo.com> Thanks for giving such a big guide,really appreciate it. but i did install gtk+-1.2.7 or gtk+-1.2.8 or gtk+-1.2.9(from source code or from rpm form), but when i compile & install wxwindow(the one i download from videolan or even wxX11-12.4.1),it always stated cannot find gtk_config (the library was install into /usr/local/lib) file,i really frustrate with it --- Benjamin PRACHT wrote: > On Wed, Sep 08, 2004, Yong Chu Eu (??????) wrote : > > i try to compile all lib & pluggin and vlc for many days but still not > get > > all done,hope someone can guide me > > > > 1) i compile & install wxX11-2.4.1 with x11 support as GUI,but When i > > compile my vlc with ./configure --disable-ffmpeg,its come out with > this > > error message. If i disable ffmpeg,can i recv any multicast(VCD or > DVD) > > stream from vls? > > > > You'd better use the version of wxwindows we have put in our contribs : > > http://download.videolan.org/pub/videolan/vlc/0.7.2/contrib/wxWindows-20031222.tar.gz > > Moreover, I don't you haven't already done it, you should compile > wxwindows with the --with-gtk option > > You don't need ffmpeg to receive MPEG2/ts streams (which you are likely > doing if you are using vls). You however need libmpeg2 (mpeg2dec) and > libdvbpsi > > > 3) Even i did install ffmpeg,but when i compile vlc, it come out with > this > > error: > > > > checking ffmpeg/avcodec.h usability... no > > checking ffmpeg/avcodec.h presence... no > > checking for ffmpeg/avcodec.h... no > > configure: error: Missing header file > > ffmpeg/avcodec.h. > > > > ffmpeg should be compiled statically, with the > --with-ffmpeg-tree=/path/to/ffmpeg/sources option > > -- > BigBen > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm My Blog: http://ceyong.blogspot.com/ __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ricardo at americasnet.com Thu Sep 9 05:28:56 2004 From: ricardo at americasnet.com (Ricardo Kleemann) Date: Wed, 8 Sep 2004 20:28:56 -0700 Subject: [vlc] very bad and choppy capture References: <006101c495c9$83a1ca40$0c46170a@LA.FRD.DIRECTV.COM> <20040908174408.GB6214@kikal.org> Message-ID: <001f01c4961d$23e1b8f0$0101a8c0@home1> Hi, I have a USB 2.0 external capture device (Digital Creator 150) and it uses a VfW driver. If I use the video software provided with this equipment, the video capture is perfect. However with VLC capture, the image is horrible, full of noise, never stable. I even disconnected the device from the video camera and still, I get a black screen with a ton of noise on it. Is this a configuration problem? Or maybe VLC simply doesn't work with my equipment? Thanks Ricardo -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Thu Sep 9 06:38:15 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Wed, 8 Sep 2004 21:38:15 -0700 (PDT) Subject: [vlc] Re: Error compiling vlc on redhat In-Reply-To: <20040909010940.5428.qmail@web41004.mail.yahoo.com> Message-ID: <20040909043815.66038.qmail@web41006.mail.yahoo.com> There problem i had! When i compile wxwindows,i got such a message even i install gtk+-1.2.9(from the early i did install gtk+-1.2.10 rpm but fail so i try to use rpm --force -Uvh gtk+-1.2.9,after that i wish to remove the rpm with rpm -e gtk,its stated not installed) checking for gtk-config... /usr/local/bin/gtk-config checking for GTK - version >= 1.2.7... *** 'gtk-config --version' returned 1.2.9, but GTK+ (1.2.10) *** was found! If gtk-config was correct, then it is best *** to remove the old version of GTK+. You may also be able to fix the error *** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing *** /etc/ld.so.conf. Make sure you have run ldconfig if that is *** required on your system. *** If gtk-config was wrong, set the environment variable GTK_CONFIG *** to point to the correct copy of gtk-config, and remove the file config.cache *** before re-running configure no checking for gtk-config... (cached) /usr/local/bin/gtk-config checking for GTK - version >= 1.2.3... *** 'gtk-config --version' returned 1.2.9, but GTK+ (1.2.10) *** was found! If gtk-config was correct, then it is best *** to remove the old version of GTK+. You may also be able to fix the error *** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing *** /etc/ld.so.conf. Make sure you have run ldconfig if that is *** required on your system. *** If gtk-config was wrong, set the environment variable GTK_CONFIG *** to point to the correct copy of gtk-config, and remove the file config.cache *** before re-running configure no configure: error: Please check that gtk-config is in path, the directory where GTK+ libraries are installed (returned by 'gtk-config --libs' command) is in LD_LIBRARY_PATH or equivalent variable and GTK+ is version 1.2.3 or above. [root at localhost wxWindows-20031222]# gtk-config --libs -L/usr/local/lib -L/usr/X11R6/lib -lgtk -lgdk -L/usr/lib -rdynamic -lgmodule -lglib -ldl -lXext -lX11 -lm --- "Yong Chu Eu (??????)" wrote: > Thanks for giving such a big guide,really appreciate it. > > but i did install gtk+-1.2.7 or gtk+-1.2.8 or gtk+-1.2.9(from source > code > or from rpm form), but when i compile & install wxwindow(the one i > download from videolan or even wxX11-12.4.1),it always stated cannot > find > gtk_config (the library was install into /usr/local/lib) file,i really > frustrate with it > > --- Benjamin PRACHT wrote: > > > On Wed, Sep 08, 2004, Yong Chu Eu (??????) wrote : > > > i try to compile all lib & pluggin and vlc for many days but still > not > > get > > > all done,hope someone can guide me > > > > > > 1) i compile & install wxX11-2.4.1 with x11 support as GUI,but When > i > > > compile my vlc with ./configure --disable-ffmpeg,its come out with > > this > > > error message. If i disable ffmpeg,can i recv any multicast(VCD or > > DVD) > > > stream from vls? > > > > > > > You'd better use the version of wxwindows we have put in our contribs > : > > > > > http://download.videolan.org/pub/videolan/vlc/0.7.2/contrib/wxWindows-20031222.tar.gz > > > > Moreover, I don't you haven't already done it, you should compile > > wxwindows with the --with-gtk option > > > > You don't need ffmpeg to receive MPEG2/ts streams (which you are > likely > > doing if you are using vls). You however need libmpeg2 (mpeg2dec) and > > libdvbpsi > > > > > 3) Even i did install ffmpeg,but when i compile vlc, it come out > with > > this > > > error: > > > > > > checking ffmpeg/avcodec.h usability... no > > > checking ffmpeg/avcodec.h presence... no > > > checking for ffmpeg/avcodec.h... no > > > configure: error: Missing header file > > > ffmpeg/avcodec.h. > > > > > > > ffmpeg should be compiled statically, with the > > --with-ffmpeg-tree=/path/to/ffmpeg/sources option > > > > -- > > BigBen > > > > -- > > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > > To unsubscribe, please read http://www.videolan.org/support/lists.html > > > > > > > ===== > ???????????????????????? Happy & Healthy Always ! ^_^ ! > ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong > ???????????? Buddhist Page: > http://planet.time.net.my/SunwayCity/ceyong/artikel.htm > My Blog: http://ceyong.blogspot.com/ > > > > __________________________________ > Do you Yahoo!? > Yahoo! Mail - 50x more storage than other providers! > http://promotions.yahoo.com/new_mail > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From spindler at hbt.arch.ethz.ch Thu Sep 9 09:07:34 2004 From: spindler at hbt.arch.ethz.ch (Torsten Spindler) Date: Thu, 09 Sep 2004 09:07:34 +0200 Subject: [vlc] Re: Error compiling vlc on redhat In-Reply-To: <20040909043815.66038.qmail@web41006.mail.yahoo.com> References: <20040909043815.66038.qmail@web41006.mail.yahoo.com> Message-ID: <1094713654.2991.5.camel@gasluft.ethz.ch> On Thu, 2004-09-09 at 06:38, Yong Chu Eu (??????) wrote: > There problem i had! > > When i compile wxwindows,i got such a message even i > install gtk+-1.2.9(from the early i did > install gtk+-1.2.10 rpm but fail so i try to use rpm > --force -Uvh gtk+-1.2.9,after that i wish > to remove the rpm with rpm -e gtk,its stated not > installed) You can check with rpm --verify gtk+ gtk+-devel if the rpm is properly installed or altered. For interpreting the output of rpm --verify please look at the man pages and look for --verify. On the rh9 box I've compiled vlc 0.8.0.test1 the following versions are installed: [root at taler vlc-trunk]# rpm -q gtk+ gtk+-1.2.10-25 [root at taler vlc-trunk]# rpm -q gtk+-devel gtk+-devel-1.2.10-25 [root at taler vlc-trunk]# rpm -q wxGTK-devel wxGTK-devel-2.4.2-4.0.rh9.dag [root at taler vlc-trunk]# rpm -q wxGTK wxGTK-2.4.2-4.0.rh9.dag Bye, Torsten -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From hartman at videolan.org Thu Sep 9 10:21:08 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Thu, 9 Sep 2004 10:21:08 +0200 Subject: [vlc] Re: VLC and Vox In-Reply-To: <000301c49574$4e3508e0$043115d9@samsolutions.net> References: <000301c49574$4e3508e0$043115d9@samsolutions.net> Message-ID: <33A37254-0239-11D9-8CA1-0030656CFA88@videolan.org> When Voxware will opensource their codec, or when someone will reverse engineer it. DJ On 08 sep 2004, at 09:20, Vitaly Trifonov wrote: > Hi, VideoLAN team! > > When your VLC will be support VoxwareMetasound > - widely distributed audiocodec in avi-films ? > -- > with best regards, Vitaly3 > ICQ=69918815 > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Thu Sep 9 10:30:07 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Thu, 9 Sep 2004 10:30:07 +0200 Subject: [vlc] Re: [ANN] VLC 0.8.0-test1 In-Reply-To: References: <200409022320.49513.gbazin@altern.org> Message-ID: <74D611AE-023A-11D9-8CA1-0030656CFA88@videolan.org> On 08 sep 2004, at 01:57, Bob Cannard wrote: > Okay... > > Second screen output on MacOSX is broken - it just gives a > black screen. The Quartz option has disappeared from the > preferences; on 0.7.2 this was essential for second screen > output. The video device submenu no longer works. These are > show-stoppers. titer, bigben? any of you have a 2nd screen setup? I sure don't... opengl and quartz is now chosen by selecting either mac or opengl from 'Preferences->Video->Video Output module". The opengl has been brought to a lower level platform... > The "Use DVD Menus" option is also broken. "Tokyo Godfathers" > went straight into Play without going to the menu. "Crying > Freeman" went into the menu but it wasn't possible to select > anything. VLC crashed when I tried to run the next volume. > "Voices of a Distant Star" also went into the menu but > wouldn't allow anything to be selected. Basically unusable. > > Very disappointing; it didn't even get to first base. Error messages? debug messages from View->Messages? --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From conundrums at gmail.com Thu Sep 9 13:49:50 2004 From: conundrums at gmail.com (Hussain) Date: Thu, 9 Sep 2004 04:49:50 -0700 Subject: [vlc] Re: RTSP + VOD Message-ID: <9466e64304090904493a8f0dbe@mail.gmail.com> --- Benjamin PRACHT wrote: > On Fri, Sep 03, 2004, Hussain P. wrote : > > > > Also as far as I know, VLC cannot act as an RTSP > server. You might want to try the Darwin server. > Well, this is only half right. VLC features a RTSP > server indeed. > However, this one is still quite limited (no pause / > trickplay, each > user share the same stream, for instance) > > This will hopefully be improved in the future... But isn't VLC also limited by the fact that it can only stream a single video, and not multiple videos?? Hussain -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Thu Sep 9 17:35:39 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Thu, 9 Sep 2004 17:35:39 +0200 Subject: [vlc] Re: RTSP + VOD In-Reply-To: <9466e64304090904493a8f0dbe@mail.gmail.com> References: <9466e64304090904493a8f0dbe@mail.gmail.com> Message-ID: <20040909153539.GB5346@kikal.org> On Thu, Sep 09, 2004, Hussain wrote : > > But isn't VLC also limited by the fact that it can only stream a > single video, and not multiple videos?? > Well, vlm already allows VLC to stream several videos from one single instance of the program. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From pype at gameflux.com Thu Sep 9 18:55:52 2004 From: pype at gameflux.com (PyPe) Date: Thu, 09 Sep 2004 18:55:52 +0200 Subject: [vlc] Error compiling subversion with cygwin In-Reply-To: <20040909043815.66038.qmail@web41006.mail.yahoo.com> References: <20040909010940.5428.qmail@web41004.mail.yahoo.com> Message-ID: <5.2.0.9.0.20040909185315.01980ae8@localhost> I have an error since i change my harddrive and reinstall cygwin. make[4]: Entering directory `/cygdrive/k/utils/dev/vlc/vlc/vlc-trunk/modules/con trol' if gcc -mno-cygwin -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/win32/include -I/usr /win32/include/ebml -D_OFF_T_ -D_off_t=long -DSYS_MINGW32 -I../../include `top_b uilddir="../.." ../../vlc-config --cflags plugin gestures` -Wsign-compare -Wall -mms-bitfields -pipe -MT libgestures_plugin_a-gestures.o -MD -MP -MF ".deps/lib gestures_plugin_a-gestures.Tpo" -c -o libgestures_plugin_a-gestures.o `test -f ' gestures.c' || echo './'`gestures.c; \ then mv -f ".deps/libgestures_plugin_a-gestures.Tpo" ".deps/libgestures_plugin_a -gestures.Po"; else rm -f ".deps/libgestures_plugin_a-gestures.Tpo"; exit 1; fi In file included from gestures.c:29: /usr/i686-pc-mingw32/include/unistd.h:23: error: parse error before "off_t" /usr/i686-pc-mingw32/include/unistd.h:24: error: parse error before "off_t" /usr/i686-pc-mingw32/include/unistd.h: In function `ftruncate': /usr/i686-pc-mingw32/include/unistd.h:26: error: `__fd' undeclared (first use in this function) /usr/i686-pc-mingw32/include/unistd.h:26: error: (Each undeclared identifier is reported only once /usr/i686-pc-mingw32/include/unistd.h:26: error: for each function it appears in .) /usr/i686-pc-mingw32/include/unistd.h:26: error: `__length' undeclared (first us e in this function) make[4]: *** [libgestures_plugin_a-gestures.o] Error 1 make[4]: Leaving directory `/cygdrive/k/utils/dev/vlc/vlc/vlc-trunk/modules/cont rol' make[3]: *** [all-modules] Error 1 make[3]: Leaving directory `/cygdrive/k/utils/dev/vlc/vlc/vlc-trunk/modules/cont rol' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/cygdrive/k/utils/dev/vlc/vlc/vlc-trunk/modules' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/cygdrive/k/utils/dev/vlc/vlc/vlc-trunk' make: *** [all] Error 2 I think it's a cygwin thing, but not sure. Please someone could help me on this ? I followed the same steps i made when i installed cygwin and compiled successfully VLC before i changed my hard drive. thanks -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From gbazin at altern.org Thu Sep 9 20:23:51 2004 From: gbazin at altern.org (Gildas Bazin) Date: Thu, 9 Sep 2004 20:23:51 +0200 Subject: [vlc] Re: Error compiling subversion with cygwin In-Reply-To: <5.2.0.9.0.20040909185315.01980ae8@localhost> References: <20040909010940.5428.qmail@web41004.mail.yahoo.com> <5.2.0.9.0.20040909185315.01980ae8@localhost> Message-ID: <200409092023.51641.gbazin@altern.org> On Thursday 09 September 2004 18:55, PyPe wrote: > I have an error since i change my harddrive and reinstall cygwin. > > make[4]: Entering directory > `/cygdrive/k/utils/dev/vlc/vlc/vlc-trunk/modules/con > trol' ... > In file included from gestures.c:29: > /usr/i686-pc-mingw32/include/unistd.h:23: error: parse error before "off_t" > /usr/i686-pc-mingw32/include/unistd.h:24: error: parse error before "off_t" > This was fixed this afternoon. Try a "svn update" and make again. There might be other modules with the same problem, if so you can report it here. -- Gildas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From pype at gameflux.com Thu Sep 9 22:58:29 2004 From: pype at gameflux.com (PyPe) Date: Thu, 09 Sep 2004 22:58:29 +0200 Subject: [vlc] Re: Error compiling subversion with cygwin In-Reply-To: <200409092023.51641.gbazin@altern.org> References: <5.2.0.9.0.20040909185315.01980ae8@localhost> <20040909010940.5428.qmail@web41004.mail.yahoo.com> <5.2.0.9.0.20040909185315.01980ae8@localhost> Message-ID: <5.2.0.9.0.20040909225659.01978d38@localhost> thanx it worked. keep going with the good job. merci pour tout. a+ At 20:23 09/09/2004 +0200, you wrote: >On Thursday 09 September 2004 18:55, PyPe wrote: > > I have an error since i change my harddrive and reinstall cygwin. > > > > make[4]: Entering directory > > `/cygdrive/k/utils/dev/vlc/vlc/vlc-trunk/modules/con > > trol' >... > > In file included from gestures.c:29: > > /usr/i686-pc-mingw32/include/unistd.h:23: error: parse error before >"off_t" > > /usr/i686-pc-mingw32/include/unistd.h:24: error: parse error before >"off_t" > > > >This was fixed this afternoon. Try a "svn update" and make again. >There might be other modules with the same problem, if so you can report it >here. > >-- >Gildas > >-- >This is the vlc mailing-list, see http://www.videolan.org/vlc/ >To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From conundrums at gmail.com Fri Sep 10 13:52:57 2004 From: conundrums at gmail.com (Hussain) Date: Fri, 10 Sep 2004 04:52:57 -0700 Subject: [vlc] Re: RTSP + VOD In-Reply-To: <20040909153539.GB5346@kikal.org> References: <9466e64304090904493a8f0dbe@mail.gmail.com> <20040909153539.GB5346@kikal.org> Message-ID: <9466e643040910045253ea63fe@mail.gmail.com> > Well, vlm already allows VLC to stream several videos from one single > instance of the program. > > -- > BigBen > Hi Ben, is there any documentation on how this can be done? I could not seem to find any in the VideoLAN FAQ's, VideoLAN HOW TO or the VLC user guide on the videolan page. Thanks Hussain -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 10 19:59:22 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 10 Sep 2004 19:59:22 +0200 Subject: [vlc] Re: RTSP + VOD In-Reply-To: <9466e643040910045253ea63fe@mail.gmail.com> References: <9466e64304090904493a8f0dbe@mail.gmail.com> <20040909153539.GB5346@kikal.org> <9466e643040910045253ea63fe@mail.gmail.com> Message-ID: <20040910175922.GA12618@kikal.org> On Fri, Sep 10, 2004, Hussain wrote : > > Well, vlm already allows VLC to stream several videos from one single > > instance of the program. > > > > -- > > BigBen > > > > Hi Ben, is there any documentation on how this can be done? I could > not seem to find any in the VideoLAN FAQ's, VideoLAN HOW TO or the VLC > user guide on the videolan page. > VLM still being quite experimental, I don't think it is covered by the vlc user guide or the videolan howto. You'll find some docs in the doc/vlm.txt file of vlc's sources though -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From fk at aenneburghardt.de Fri Sep 10 21:36:26 2004 From: fk at aenneburghardt.de (=?ISO-8859-1?Q?Felix_K=FChne?=) Date: Fri, 10 Sep 2004 21:36:26 +0200 Subject: [vlc] Re: videolan rocks In-Reply-To: <411B8C680047D1CD@vsmtp1.tin.it> (added by postmaster@virgilio.it) References: <411B8C680047D1CD@vsmtp1.tin.it> (added by postmaster@virgilio.it) Message-ID: As you can see in our web-forum a first beta version has been released a couple of days ago. Feel free to try it out and provide feedback. I don't think that a final release date has already been set, since at least one beta will propably follow after this one. Regards, Felix -- VideoLAN Felix K?hne German translator http://www.videolan.org -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 10 21:39:36 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 10 Sep 2004 21:39:36 +0200 Subject: [vlc] Re: VLC Problem In-Reply-To: <41415C96.6040301@prism.co.za> References: <41415C96.6040301@prism.co.za> Message-ID: <20040910193936.GA20383@kikal.org> On Fri, Sep 10, 2004, Deon Potgieter wrote : > Hi, > > I have a 2003 PowerBook G4 1Ghz, 1Gb with a SuperDrive. My DVD locked > into a particular zone about a month ago - not sure which. I donwloaded > VLC, but unfortunately it only plays DVDs that DVDPlayer can play, ie > it only plays DVDs supported by the DVD player. Here are the details: > Apple uses dvd drives with a region lock system libdvdcss cannot override on its latest products. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From matt at gneilson.plus.com Sat Sep 11 00:13:23 2004 From: matt at gneilson.plus.com (Matthew Neilson) Date: Fri, 10 Sep 2004 23:13:23 +0100 Subject: [vlc] Re: VLC Problem In-Reply-To: <41415C96.6040301@prism.co.za> References: <41415C96.6040301@prism.co.za> Message-ID: Hey Deon, This isn't a problem with VLC, it's a hardware problem (or, rather, a firmware problem). If you flash your superdrive with region-free firmware, you will be able to watch DVDs of any region using VLC (but not Apple DVD Player). The firmware you are looking for is available (along with an extensive FAQ) from: http://superdrive.cynikal.net/ You'll want to download the updater which "Flashes UJ-815 -> UJ-815 X0CB" - at least, that's what I used on my 1GHz Titanium Powerbook. You *could* use the D0CB firmware instead (which allows for 2x DVD-R burning speeds and support for DVD-RW media as well as being region-free), I suppose, but I can't vouch for it since I haven't used it myself. Like I said, I flashed my 1GHz TiBook with the X0CB firmware almost a year ago, and it's been working flawlessly - any DVD, any region. :) -Matt On 10 Sep 2004, at 08:49, Deon Potgieter wrote: > Hi, > > I have a 2003 PowerBook G4 1Ghz,? 1Gb with a SuperDrive.? My DVD > locked into a particular zone about a month ago - not sure which.? I > donwloaded VLC,? but unfortunately it only plays DVDs that DVDPlayer > can play,? ie it only plays DVDs supported by the DVD player.? Here > are the details: > > CD-RW/DVD-R > Disc Burning?? ??? ??? ??? ??? Fully supported > Unit number?? ?? ?? ?? ??? ??? 0 > ATA Device Type?? ??? ??? atapi > Device Serial?? ?? ?? ?? ??? ??? - > Device Revision?? ?? ?? ?? ?? DOC4 > Product Identification?? ?? ? DVD-R UJ-815 > Vendor Identification?? ?? ?? MATSHITA > > Here is the output from VLC after inserting a non region code matching > DVD: > > > main debug: CPU has capabilities AltiVec FPU > > main debug: looking for memcpy module > > main debug: probing 2 candidates > > main debug: using memcpy module "memcpyaltivec" > > main debug: creating group Normal with id 1 at position 0 > > main debug: waiting for thread completion > > main debug: thread 7827360 (playlist) created at priority -47 > (src/playlist/playlist.c:109) > > main debug: looking for interface module > > main debug: probing 1 candidate > > main debug: using interface module "hotkeys" > > main debug: interface initialized > > main debug: thread 7307632 (interface) created at priority -47 > (src/interface/interface.c:152) > > main debug: looking for interface module > > main debug: probing 2 candidates > > main debug: using interface module "macosx" > > main debug: interface initialized > > main debug: thread 46086736 (manager) created at priority -47 > (src/interface/interface.c:136) > > main debug: adding playlist item `rdisk1' ( dvdplay:///dev/rdisk1 ) > > main debug: creating new input thread > > main: playlist item `dvdplay:///dev/rdisk1' > > main debug: waiting for thread completion > > main debug: thread 47278000 (input) created at priority 37 > (src/input/input.c:326) > > main debug: cmd=state old=10 new=1 > > main debug: playing at normal rate > > main debug: access `dvdplay', demux `', name `/dev/rdisk1' > > main debug: looking for access module > > main debug: probing 1 candidate > > dvdplay debug: dvdroot=/dev/rdisk1 title=0 chapter=1 angle=1 > > dvdplay warning: cannot open /dev/rdisk1 > > main warning: no access module matching "dvdplay" could be loaded > > main debug: looking for access module > > main debug: probing 7 candidates > > dvdplay warning: cannot stat() source `dvdplay:///dev/rdisk1' (No such > file or directory) > > dvdread warning: cannot stat() source `dvdplay:///dev/rdisk1' (No such > file or directory) > > dvd warning: cannot stat() device `dvdplay:///dev/rdisk1' (No such > file or directory) > > vcd warning: could not open dvdplay:///dev/rdisk1 > > cdda warning: could not open dvdplay:///dev/rdisk1 > > access_file warning: cannot stat() file `dvdplay:///dev/rdisk1' (No > such file or directory) > > main error: no suitable access module for `/://dvdplay:///dev/rdisk1' > > main debug: pes: 0 packets > > main debug: data: 0 packets > > main debug: buffers: 0 packets > main debug: thread 47278000 joined (src/input/input.c:373) > > Thank you very much, > > Regards > Deon Potgieter > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 4292 bytes Desc: not available URL: From ricardo at americasnet.com Sat Sep 11 02:17:32 2004 From: ricardo at americasnet.com (Ricardo Kleemann) Date: Fri, 10 Sep 2004 17:17:32 -0700 Subject: [vlc] hauppauge wintv-d References: <411B8C680047D1CD@vsmtp1.tin.it> (added by postmaster@virgilio.it) Message-ID: <003001c49794$bbeea630$0301a8c0@laptop> Hi, Does anyone have experience with the hauppauge wintv-d card under both windows and linux? How well does it work with VLC for live capture, under either windows or linux? thanks Ricardo -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Sat Sep 11 07:06:46 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Fri, 10 Sep 2004 22:06:46 -0700 (PDT) Subject: [vlc] problem in ffmpeg Message-ID: <20040911050646.27102.qmail@web41014.mail.yahoo.com> Hi,I did finish compiling & installing vlc 0.7.0(even 0.7.2) with disable ffmpeg but i will fail if i enable ffmpeg,i don't know why, i did finish install ffmpeg 0.4.8 & ffmpeg-devel 0.4.8 but it seem error message said cannot find the header,don't know why, anyone can help? can i play vcd(recv multicast stream from vls) and dvd if i disable ffmpeg? checking ffmpeg/avcodec.h usability... no checking ffmpeg/avcodec.h presence... no checking for ffmpeg/avcodec.h... no configure: error: Missing header file ffmpeg/avcodec.h. ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm __________________________________ Do you Yahoo!? Y! Messenger - Communicate in real time. Download now. http://messenger.yahoo.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Sat Sep 11 07:12:53 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Fri, 10 Sep 2004 22:12:53 -0700 (PDT) Subject: [vlc] Re: Error compiling vlc on redhat In-Reply-To: <1094713654.2991.5.camel@gasluft.ethz.ch> Message-ID: <20040911051253.25817.qmail@web41010.mail.yahoo.com> Now i know why i having such a problem. i compile & install gtk+-1.2.9 from source,later i install again gtk+-1.2.10 form rpm but i still encounter file header miss. it is because i forgot to install gtk-devel+-1.2.10 so problem,so later i uninstall gkt+-1.2.9 from the source code then install again gtk+-1.2.10 and gtk-devel+-1.2.10, problem fixed. Thanks help from Torsten Spindler and Benjamin PRACHT. i learn a lot. Thanks again --- Torsten Spindler wrote: > On Thu, 2004-09-09 at 06:38, Yong Chu Eu (??????) wrote: > > There problem i had! > > > > When i compile wxwindows,i got such a message even i > > install gtk+-1.2.9(from the early i did > > install gtk+-1.2.10 rpm but fail so i try to use rpm > > --force -Uvh gtk+-1.2.9,after that i wish > > to remove the rpm with rpm -e gtk,its stated not > > installed) > > You can check with > rpm --verify gtk+ gtk+-devel > if the rpm is properly installed or altered. For interpreting the output > of rpm --verify please look at the man pages and look for --verify. > > On the rh9 box I've compiled vlc 0.8.0.test1 the following versions are > installed: > > [root at taler vlc-trunk]# rpm -q gtk+ > gtk+-1.2.10-25 > [root at taler vlc-trunk]# rpm -q gtk+-devel > gtk+-devel-1.2.10-25 > [root at taler vlc-trunk]# rpm -q wxGTK-devel > wxGTK-devel-2.4.2-4.0.rh9.dag > [root at taler vlc-trunk]# rpm -q wxGTK > wxGTK-2.4.2-4.0.rh9.dag > > Bye, > Torsten > > > ATTACHMENT part 2 application/pgp-signature name=signature.asc ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm _______________________________ Do you Yahoo!? Shop for Back-to-School deals on Yahoo! Shopping. http://shopping.yahoo.com/backtoschool -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sat Sep 11 09:22:55 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sat, 11 Sep 2004 09:22:55 +0200 Subject: [vlc] Re: problem in ffmpeg In-Reply-To: <20040911050646.27102.qmail@web41014.mail.yahoo.com> References: <20040911050646.27102.qmail@web41014.mail.yahoo.com> Message-ID: <20040911072255.GA7043@kikal.org> On Fri, Sep 10, 2004, Yong Chu Eu (??????) wrote : > Hi,I did finish compiling & installing vlc 0.7.0(even 0.7.2) with disable > ffmpeg but i will fail if i enable ffmpeg,i don't know why, i did finish > install ffmpeg 0.4.8 & ffmpeg-devel 0.4.8 but it seem error message said > cannot find the header,don't know why, anyone can help? can i play > vcd(recv multicast stream from vls) and dvd if i disable ffmpeg? > Please compile ffmpeg statically (--with-ffmprg-tree=/path/to/ffmpeg/sources) -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sun Sep 12 10:41:33 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sun, 12 Sep 2004 10:41:33 +0200 Subject: [vlc] Re: [vlc] In-Reply-To: <000501c4983d$310ae0c0$3e9a59c8@las19pqe3psq5o> References: <000501c4983d$310ae0c0$3e9a59c8@las19pqe3psq5o> Message-ID: <20040912084133.GA6011@kikal.org> On Sat, Sep 11, 2004, lamarca wrote : > can be added subtitulos to films in format srt and any other Have a look at the sbtitle option of the open (advanced) window. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sun Sep 12 10:42:17 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sun, 12 Sep 2004 10:42:17 +0200 Subject: [vlc] Re: external subtitles? In-Reply-To: <1094964572.22812.204181935@webmail.messagingengine.com> References: <1094964572.22812.204181935@webmail.messagingengine.com> Message-ID: <20040912084217.GB6011@kikal.org> On Sun, Sep 12, 2004, rajni wrote : > hi! i LOVE vlc, it plays every type of video file. :) thanks for > developing it and sharing it freeware. i was just wondering if you guys > are working on later version that will support external subtitles, like > .srt files? then vlc would be even more perfect! thanks and keep up the > great work. :) > Have a look at subtitle option of the open (advanced) window -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From seb at belanur.de Sun Sep 12 12:21:47 2004 From: seb at belanur.de (Sebastian Heuer) Date: Sun, 12 Sep 2004 12:21:47 +0200 Subject: [vlc] synching streams Message-ID: <4144233B.6060001@belanur.de> Hi all, I have problems synching the separated audio and video stream of a video file... this is what I do: I let vlc split a .wmv file into an audio and a video stream and send them to a client on two different ports. The file gets transcoded into div3 / mp3 before streaming. Here's my command: vlc /var/media/streams/alpha.wmv --sout '#transcode{acodec=mp3,ab=128,vcodec=DIV3,vb=1024}:es{dst-audio=192.168.66.2:3321,mux-audio=es,access-audio=udp,dst-video=192.168.66.2:3322,mux-video=ts,access-video=udp}' I can receive both streams, but they are not synched sometimes, audio seems to start about 0,5 seconds before video does. Is there any possibilty to synch those streams before sending them? Thank, Sebastian Heuer -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sun Sep 12 13:00:49 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sun, 12 Sep 2004 13:00:49 +0200 Subject: [vlc] Re: synching streams In-Reply-To: <4144233B.6060001@belanur.de> References: <4144233B.6060001@belanur.de> Message-ID: <20040912110049.GA12129@kikal.org> On Sun, Sep 12, 2004, Sebastian Heuer wrote : > Hi all, > > I have problems synching the separated audio and video stream of a video > file... this is what I do: > > I let vlc split a .wmv file into an audio and a video stream and send > them to a client on two different ports. The file gets transcoded into > div3 / mp3 before streaming. Here's my command: > > vlc /var/media/streams/alpha.wmv --sout > '#transcode{acodec=mp3,ab=128,vcodec=DIV3,vb=1024}:es{dst-audio=192.168.66.2:3321,mux-audio=es,access-audio=udp,dst-video=192.168.66.2:3322,mux-video=ts,access-video=udp}' > Achieving proper syncronisation this way seems quite impossible : even if vlc would send both stream syncronized, the receiving player would lack the proper information to play them at the right time. What you seem to need is rtp : both es are sent on different udp ports, but a timestamp is added in each audio/video packet, to allow playback at the appropriate time. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From prdutta at cisco.com Tue Sep 14 10:48:45 2004 From: prdutta at cisco.com (Pranjal Dutta (prdutta)) Date: Tue, 14 Sep 2004 14:18:45 +0530 Subject: [vlc] Play Multicast Stream without send IGMP join/leave Message-ID: <4.3.2.7.2.20040914141245.027cfda8@codc-mira-1.cisco.com> Hi All, I am doing some experiment on Live/Multicast streaming with VLC. When VLC is started to receive a Multicast Stream lets say coming at 224.10.10.1 and port 2001 , VLC immediately sends out IGMPv2/v3 join message and plays the stream as well. Now I have another agent in my Network that sends out IGMPv2/v3 message and I just want VLC to receive and play the Multicast Stream only(The way it received and play a UDP unicast stream). I don't want VLC to send IGMPv2/v3 message.Is there any possible way to do it? Any pointers will be of great help. Thanks, Pranjal -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From dermot at dspsrv.com Tue Sep 14 13:01:14 2004 From: dermot at dspsrv.com (Dermot McGahon) Date: Tue, 14 Sep 2004 12:01:14 +0100 Subject: [vlc] Re: [streaming] client not showing video? In-Reply-To: References: Message-ID: On Mon, 13 Sep 2004 17:22:49 -0400, David Clemmer wrote: > The mini-server is reading off of a proprietary device using read()'s off > of a device file, with straight TS being output. Your problem is here. > What happens, every time we start the client, is that it will not display > any video. As near as we can tell, the device is outputing a legitimate > transport stream, and packets are being sent (and getting to the target > machine), but nothing shows up. It can't be legitimate ts. > However, if we have vlms read from a > normal file, everything works fine. What's more, if we restart the > server after reading a normal file, and have it go back to the device > file > (without doing anything to the client), everything will then work fine as > well. This is strange though. If you dump this stream and compare it with the first, what is the difference? > Going even further, it appears that VLC is getting the stream, even when > it isn't showing it... I set it up to raw dump what came in, and it > looked > like a legitimate transport stream. At least, I see 0x4710 followed by > (what appears to be) an increasing sequence number every 188 bytes. That > file will not play directly either, though, FWIW. Compare it with the one which will play after the server restart. > As another test, we also tried reading the device file using dd, and then > playing the resulting file back, and that worked perfectly. So dd works, but something with your read() possibly does not. > Anyone seen anything like this before? Or have any ideas for anything > else to try to figure out exactly what's going on? Just the suggestion about comparing the stream (from the custom device) which does play, with the stream (from the custom device) which does not play! Dermot. -- -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From admin at via.ecp.fr Tue Sep 14 13:46:15 2004 From: admin at via.ecp.fr (System Administration) Date: Tue, 14 Sep 2004 13:46:15 +0200 Subject: [vlc] [Surfeasy ] Improvements Message-ID: <20040914114615.GA27490@via.ecp.fr> ----- Forwarded message from Surfeasy ----- From: Surfeasy at t-online.de (Surfeasy) Date: Mon, 13 Sep 2004 19:36:25 +0200 To: Subject: Improvements Reply-To: videolan at videolan.org Hello, I want to suggest some improvements to Videolanclient. First, i found a failure with version 0.7.1, which causes a break in video if pressed pause or if moved the cursor to another time. After doing this the sound can be heard but the video isnt shown anymore. So the video has to start again to see all the video. I cant say what codec it is, because I dont know how to see, but it occured with some videos. Second I find the Extended Screen under Options a good thing. There you can set the video to 16:9 or 4:3. I would like to change the height and widht manually, because there are video, the person are to thin. So setting to 16:9 can help, but sometimes there are videos, where the persons are even too thin at this time. So a manually setting would be fine. Third, some videos are very dark. For example blade 2 or other dark videos. It doesnt change much to set the monitor or other gamma or so on. It makes it only a bit better but the dark becomes only more white, but not more accurate. The gamma with vlc in extended settings cant change this too. But I believe the elecard player can do this. There changing the gamma will get out of the dark places of video what was hide in the video. Its not only set the screen more light, it seems to find out what is hide in video. It seems to be a difference. Some videos are too dark to see because in the dark parts there is nothing detailed, because all is black and the gamma at vlc seems to not correct this fine. Maybe there can be done something. It would be fine. thanks, Sebastian ----- End forwarded message ----- -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From john at gocoretec.com Tue Sep 14 15:45:22 2004 From: john at gocoretec.com (John Anderson) Date: Tue, 14 Sep 2004 09:45:22 -0400 Subject: [vlc] Re: Play Multicast Stream without send IGMP join/leave References: <4.3.2.7.2.20040914141245.027cfda8@codc-mira-1.cisco.com> Message-ID: <005701c49a61$156544c0$1dc8c8c8@CheesyPoof> ----- Original Message ----- From: "Pranjal Dutta (prdutta)" To: Cc: Sent: Tuesday, September 14, 2004 4:48 AM Subject: [vlc] Play Multicast Stream without send IGMP join/leave > Hi All, > I am doing some experiment on Live/Multicast streaming with > VLC. When VLC is started to receive a Multicast Stream lets say coming at > 224.10.10.1 and port 2001 , VLC immediately sends out IGMPv2/v3 join > message and plays the stream as well. Now I have another agent in my > Network that sends out IGMPv2/v3 message and I just want VLC to receive and > play the Multicast Stream only(The way it received and play a UDP unicast > stream). I don't want VLC to send IGMPv2/v3 message.Is there any possible > way to do it? Any pointers will be of great help. What you're asking is a bit unclear. You want VLC to play multicast but not use IGMP to join the multicast group? This would work on a network with cheap unmanaged switches, but the real question is why? So what if you have another agent (not sure what agent is supposed to mean) that uses IGMP. The standard is defined so that everyone can use IGMP as long as it done appropriately. So what is wrong with your agent that it doesn't work right? That's what I would focus on. Nevertheless, you could just get the VLC source and compile it to remove the IGMP group join and leaves. I haven't looked at that part of the code but it is probably some setsockopt statements. However, if you have a network with managed switches that are configured for IGMP snooping and/or queriers then what you want to do will not work. That's because if you don't send out the IGMP requests, then you don't get the stream. That's how it's supposed to work. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From prdutta at cisco.com Tue Sep 14 17:06:48 2004 From: prdutta at cisco.com (Pranjal Dutta (prdutta)) Date: Tue, 14 Sep 2004 20:36:48 +0530 Subject: [vlc] Re: Play Multicast Stream without send IGMP join/leave In-Reply-To: <005701c49a61$156544c0$1dc8c8c8@CheesyPoof> References: <4.3.2.7.2.20040914141245.027cfda8@codc-mira-1.cisco.com> Message-ID: <4.3.2.7.2.20040914203115.027cfda8@codc-mira-1.cisco.com> Hi, Thanks for your reply.The region is that I am using VLC as a Plugin to one Multicast Simulator that sends IGMPv2/v3 join /leave.So VLC should only open a socket to listen to a Multicast Address/Port (with sending a IGMPv2/v3 join.leave)and receive the Network Stream and Play.When I start VLC to receive a Multicast stream by default it sends out IGMPv2/v3 message and then plays the Video. Once I close the video it sends out the IGMPv2/v3 leave message. I wanted to know if there is any option(without changing the source code) to receive a listen to a Multicast Address without sending a IGMP join/leave. Otherwise I will change the source code. Regards, Pranjal At 09:45 AM 9/14/2004 -0400, you wrote: >----- Original Message ----- >From: "Pranjal Dutta (prdutta)" >To: >Cc: >Sent: Tuesday, September 14, 2004 4:48 AM >Subject: [vlc] Play Multicast Stream without send IGMP join/leave > > > > Hi All, > > I am doing some experiment on Live/Multicast streaming with > > VLC. When VLC is started to receive a Multicast Stream lets say coming at > > 224.10.10.1 and port 2001 , VLC immediately sends out IGMPv2/v3 join > > message and plays the stream as well. Now I have another agent in my > > Network that sends out IGMPv2/v3 message and I just want VLC to receive >and > > play the Multicast Stream only(The way it received and play a UDP unicast > > stream). I don't want VLC to send IGMPv2/v3 message.Is there any possible > > way to do it? Any pointers will be of great help. > >What you're asking is a bit unclear. You want VLC to play multicast but not >use IGMP to join the multicast group? This would work on a network with >cheap unmanaged switches, but the real question is why? So what if you have >another agent (not sure what agent is supposed to mean) that uses IGMP. The >standard is defined so that everyone can use IGMP as long as it done >appropriately. So what is wrong with your agent that it doesn't work right? >That's what I would focus on. Nevertheless, you could just get the VLC >source and compile it to remove the IGMP group join and leaves. I haven't >looked at that part of the code but it is probably some setsockopt >statements. > >However, if you have a network with managed switches that are configured for >IGMP snooping and/or queriers then what you want to do will not work. >That's because if you don't send out the IGMP requests, then you don't get >the stream. That's how it's supposed to work. > >-- >This is the vlc mailing-list, see http://www.videolan.org/vlc/ >To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Wed Sep 15 06:53:54 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Tue, 14 Sep 2004 21:53:54 -0700 (PDT) Subject: [vlc] Streaming Video within ipv6 testbed Message-ID: <20040915045354.46801.qmail@web41003.mail.yahoo.com> | 192.168.1.1 3ffe:80f0:ff03:1::1 fxp0 FreeBSD 4.10 Router(Vls Server 0.5.6) vr0 rl0 192.168.2.1 192.168.3.1 3ffe:80f0:ff03:2::1 3ffe:80f0:ff03:3::1 | | | | | | eth0 eth0 3ffe:80f0:ff03:2::2 3ffe:80f0:ff03:3::2 192.168.2.2 192.168.3.2 Linux PC Access Point Linux PC Access Point (HOSTAP 0.13) (HOSTAP 0.13) | | | | br0 br0 192.168.2.3 192.168.3.3 3ffe:80f0:ff03:2::3 3ffe:80f0:ff03:3::3 | | | | wlan0 wlan0 192.168.2.4 192.168.3.4 essid:mipv6a essid:mipv6b ---- | MN | ---- Roaming notebook (VLC player 0.7.2) Linux Kernel 2.4.22 with MIPL 1.0 (Dlink Wireless Card with acx100 driver) 192.168.4.1(Home address 3ffe:80d0:ff03:4::1) Multicast Groups Address will be ff5e:1:1:1::222 I am doing research on micro-mobility in ipv6 wireless network,so i need to multicast dvd video from Multicast Router(VLS) to Mobile Node(MN,VLC Player),what should i do? I am having traffic routing(PING) problem between PC based Access Point with MN. How i am going route traffic(static route) between them? In my design, i wish to multicast video stream to MN while the MN roamming between this 2 access point to test it performance,packet loss & handover delay.I also want the multicast traffic to be buffered on both access point(a member of multicast groups which based on MN's global multicast address assigned by multicast router-foreign agent).Maybe this need some programming to make it buffering function like what i wish I am not sure whether my design is pratical or not,so any of u know & can give me any advice so that i know what to so, what should not do? Thanks! ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Wed Sep 15 21:42:32 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Wed, 15 Sep 2004 21:42:32 +0200 Subject: [vlc] Re: [ANN] VLC 0.8.0-test1+other questions In-Reply-To: <200409022320.49513.gbazin@altern.org> References: <200409022320.49513.gbazin@altern.org> Message-ID: <200409152142.32426.philippe.vanhecke@belnet.be> Since this release and with and with svn from today when i start or stop a stream using wxwindows interface i get the following messages [00000409] main input debug: control type=0 [00000409] main input debug: control: INPUT_CONTROL_SET_DIE proceed [00000409] main input debug: closing input and vlc die. Any idea why ? Other questions: 1) can some body tell me how y can translate following command line with vlm ? /usr/local/bin/vlc /usr/local/video/HET_GROTE_ONGEDULD/transbaltica-1000.mp4 -vvv --intf dummy --sout #rtp{dst=233.10.51.201,sdp=file:///tmp/transbaltica-1000.sdp,email=philippeatdotbelnetdotbe,description="Belgium National Research Network - VUB HET GROTE ONGEDULDE 10 JAAR",url=http://www.belnet.be,name="BELNET-VUB: transbaltica-1000",ttl=5,host="193.190.113.20"} --ttl 5 --sap-interval 15 --loop --mtu 1200 I have read documentation but doesn't see realy how to do it. 2) how i can make multiple transcoding and associate output for the same input ? Regards LePhiloux. -- __________________________________________________________________ Philippe Van Hecke - BELNET, The Belgian Research Network "In a world without walls or fences, who needs Windows and Gates?" __________________________________________________________________ -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Wed Sep 15 22:05:39 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Wed, 15 Sep 2004 22:05:39 +0200 Subject: [vlc] Re: [ANN] VLC 0.8.0-test1+other questions In-Reply-To: <200409152142.32426.philippe.vanhecke@belnet.be> References: <200409022320.49513.gbazin@altern.org> <200409152142.32426.philippe.vanhecke@belnet.be> Message-ID: <200409152205.40201.philippe.vanhecke@belnet.be> > 2) how i can make multiple transcoding and associate output for the same > input ? froget this one. The answer is in the how-to (damned i have not read the Chapter 9 ) -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From PRae at aminocom.com Wed Sep 15 23:06:00 2004 From: PRae at aminocom.com (Paul Rae) Date: Wed, 15 Sep 2004 17:06:00 -0400 Subject: [vlc] Re: vlc plroblem Message-ID: Sounds like your download is corrupt. Try downloading it again. -----Original Message----- From: vlc-bounce at videolan.org on behalf of Effigysinger at aol.com Sent: Wed 9/15/2004 3:42 AM To: vlc at videolan.org Cc: Subject: [vlc] vlc plroblem hey i have windows xp and i have a recently bought custom built pc. I have tried downloading the vlc player i was succsessfull but am unable to run the program or install it. When i try i get the message NSIS ERROR the imstaller you are trying to use is damaged or corrupted this could be the result of a failed disk or virus please contact the author. I changed my compatiable wizard t oall the other windows nothing helped.! Please help!! thanks From philippe.vanhecke at belnet.be Thu Sep 16 00:21:49 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Thu, 16 Sep 2004 00:21:49 +0200 Subject: [vlc] Re: [ANN] VLC 0.8.0-test1+other questions In-Reply-To: <200409152142.32426.philippe.vanhecke@belnet.be> References: <200409022320.49513.gbazin@altern.org> <200409152142.32426.philippe.vanhecke@belnet.be> Message-ID: <200409160021.49708.philippe.vanhecke@belnet.be> Le Mercredi 15 Septembre 2004 21:42, Philippe Van Hecke a ?crit : > Since this release and with and with svn from today when i start > or stop a stream using wxwindows interface i get the following > messages > [00000409] main input debug: control type=0 > [00000409] main input debug: control: INPUT_CONTROL_SET_DIE proceed > [00000409] main input debug: closing input > > and vlc die. Any idea why ? Froget to say i'am working under gentoo linux. and my configure command line is ./configure --prefix=/usr/local -host=i686-pc-linux-gnu --mandir=/usr/local/share/man --infodir=/usr/local/share/info --datadir=/usr/local/share --sysconfdir=/usr/local/etc --localstatedir=/var/lib --enable-nls --disable-slp --disable-xosd --enable-ncurses --enable-alsa --enable-esd --enable-oss --enable-sdl --enable-mad --enable-faad --enable-v4l --enable-dvd --enable-vcd --enable-dvdread --enable-dvdplay --enable-dvdnav --enable-pvr --disable-joystick --disable-lirc --enable-arts --enable-gtk --enable-gnome--enable-ogg --enable-vorbis --disable-speex --disable-mkv --enable-freetype --disable-fribidi --enable-svgalib --disable-fb --enable-aa --enable-caca --enable-xvideo --enable-x11 --disable-glide --disable-mga --enable-flac --with-gnu-ld --enable-a52 --enable-dvbpsi --enable-libmpeg2 --disable-qt --disable-kde --disable-libcdio --disable-libcddb--disable-vcdx --enable-ffmpeg --with-ffmpeg-mp3lame --enable-livedotcom --with-livedotcom-tree=/usr/lib/live --disable-skins2 --enable-pvr --enable-skins --enable-mozilla -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Thu Sep 16 00:34:31 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Thu, 16 Sep 2004 00:34:31 +0200 Subject: [vlc] Re: [ANN] VLC 0.8.0-test1+other questions In-Reply-To: <200409160021.49708.philippe.vanhecke@belnet.be> References: <200409022320.49513.gbazin@altern.org> <200409152142.32426.philippe.vanhecke@belnet.be> <200409160021.49708.philippe.vanhecke@belnet.be> Message-ID: <200409160034.31901.philippe.vanhecke@belnet.be> Le Jeudi 16 Septembre 2004 00:21, Philippe Van Hecke a ?crit : > Le Mercredi 15 Septembre 2004 21:42, Philippe Van Hecke a ?crit : > > Since this release and with and with svn from today when i start > > or stop a stream using wxwindows interface i get the following > > messages > > [00000409] main input debug: control type=0 > > [00000409] main input debug: control: INPUT_CONTROL_SET_DIE proceed > > [00000409] main input debug: closing input > > > > and vlc die. Any idea why ? Problem solved i was using lib live-2004.07.20 going back to live-2004.03.27 solved the problem. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Thu Sep 16 16:52:43 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Thu, 16 Sep 2004 16:52:43 +0200 Subject: [vlc] Does vlc handle correctly TERM signal Message-ID: <200409161652.44910.philippe.vanhecke@belnet.be> Hi would like to ask if vlc handle correcly TERM signal under unix. Should vlc not stop in proper way the current stream and die properly ? I ask this because i am try to record stream using dummy interface and use the --stop-time $time option to let the stream be no longer than $time but the time i use was to high and i want to stop the recording. If i send the sig term signal to vlc process. VLC die but the header for mp4 file i try to save is not write and the recorded stream are lost. LePhiloux -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jfburns at gmail.com Thu Sep 16 19:34:57 2004 From: jfburns at gmail.com (James Burns) Date: Thu, 16 Sep 2004 13:34:57 -0400 Subject: [vlc] OT: Booting a Pace DSL4000 Message-ID: <77114b904091610343ec914d1@mail.gmail.com> I am hoping that someone can help me get my recently acquired Pace DSL4000NT to boot. It's looking for a file /nfsboot/!NFSBoot/!Run that it needs to configure itself (as far as I can tell). I downloaded the RiscOS 4.0 ISO from http://support.riscos.com/Support/RO4DISC.ISO but the included !Run leads to the message "An application that loads a file of this type has not be found the the Filer. Open a directory display containing the application and try again." with the only option being to cancel. I'm currently trying to track down other documentation that will give me more insight into the nature of the file. Any help that anyone can give me would be very much appreciated. Thanks, James -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jfburns at gmail.com Thu Sep 16 21:10:42 2004 From: jfburns at gmail.com (James Burns) Date: Thu, 16 Sep 2004 15:10:42 -0400 Subject: [vlc] Re: OT: Booting a Pace DSL4000 In-Reply-To: <77114b904091610343ec914d1@mail.gmail.com> References: <77114b904091610343ec914d1@mail.gmail.com> Message-ID: <77114b9040916121063074b9e@mail.gmail.com> I hate to reply to my own email, but wanted to let people know that there are a fair number of these on eBay now so if anyone else wants to grab one for under $50 and help me figure this out, that would be cool too. James -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From PRae at aminocom.com Thu Sep 16 21:49:34 2004 From: PRae at aminocom.com (Paul Rae) Date: Thu, 16 Sep 2004 15:49:34 -0400 Subject: [vlc] Re: OT: Booting a Pace DSL4000 Message-ID: if im not mistaken last time i looked at a dsl4000 it required a boot server to run, so the hardware platform alone is no use to you i might be mistaken tho, or could be thinking of a different pace box, someone else might be able to confirm .... -----Original Message----- From: vlc-bounce at videolan.org on behalf of James Burns Sent: Thu 16/09/2004 3:10 PM To: vlc at videolan.org Cc: Subject: [vlc] Re: OT: Booting a Pace DSL4000 I hate to reply to my own email, but wanted to let people know that there are a fair number of these on eBay now so if anyone else wants to grab one for under $50 and help me figure this out, that would be cool too. James -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html N???az?\????x%??ly?m???? /?????????????????&??W????i?m???? /??????????h?????l??? From hchhaya at ti.com Thu Sep 16 21:57:47 2004 From: hchhaya at ti.com (Chhaya, Harshal) Date: Thu, 16 Sep 2004 14:57:47 -0500 Subject: [vlc] Using h/w support for MPEG decoding Message-ID: Hi, Is there any any hardware (video card or dedicated MPEG-2 decoder or anything else) that I can install in my PC that will reduce the load on the CPU when decoding a high-def video stream (.ts or .trp files)? This is for a Windows XP PC, if that makes any difference. I know that some of the HDTV tuner cards have h/w decoding but they have their own players. I want to continue to use VLC and take benefit of any h/w acceleration. I have asked this question in a different way before and never really got a definite answer. Maybe there is no answer but it would really help to know that too. Thanks for vlc and for any help with this. Regards, Harshal -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jfburns at gmail.com Thu Sep 16 22:06:53 2004 From: jfburns at gmail.com (James Burns) Date: Thu, 16 Sep 2004 16:06:53 -0400 Subject: [vlc] Re: OT: Booting a Pace DSL4000 In-Reply-To: References: Message-ID: <77114b9040916130615e3b587@mail.gmail.com> It's true that a boot server is required, however, most of the old RiscOS system software has been released for free. Also there are linux and netbsd versions which run on the hardware. So far I've been able to boot "boot32" from netbsd for the "acorn" computer. The desktop stuff doesn't seem to work though (not that that's what I want to use it for anyways). Are there any free / open source packages for driving these boxes? They seem like a pretty economical choice with a good form factor. -James On Thu, 16 Sep 2004 15:49:34 -0400, Paul Rae wrote: if im not mistaken last time i looked at a dsl4000 it required a boot server to run, so the hardware platform alone is no use to you i might be mistaken tho, or could be thinking of a different pace box, someone else might be able to confirm .... -----Original Message----- From: vlc-bounce at videolan.org on behalf of James Burns Sent: Thu 16/09/2004 3:10 PM To: vlc at videolan.org Cc: Subject: [vlc] Re: OT: Booting a Pace DSL4000 I hate to reply to my own email, but wanted to let people know that there are a fair number of these on eBay now so if anyone else wants to grab one for under $50 and help me figure this out, that would be cool too. James -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Thu Sep 16 22:10:57 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Thu, 16 Sep 2004 22:10:57 +0200 Subject: [vlc] Re: Using h/w support for MPEG decoding In-Reply-To: References: Message-ID: <20040916201057.GA30924@kikal.org> On Thu, Sep 16, 2004, Chhaya, Harshal wrote : > > Hi, > > Is there any any hardware (video card or dedicated MPEG-2 decoder or > anything else) that I can install in my PC that will reduce the load > on the CPU when decoding a high-def video stream (.ts or .trp files)? > This is for a Windows XP PC, if that makes any difference. > > I know that some of the HDTV tuner cards have h/w decoding but they > have their own players. I want to continue to use VLC and take benefit > of any h/w acceleration. > > I have asked this question in a different way before and never really > got a definite answer. Maybe there is no answer but it would really > help to know that too. > > Well, nobody has written any module to use such devices yet (and we won't, as we don't own any of these devices). Moreover, depending on how these devices work, it isn't sure that they will fit well with the way VLC is working. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From timo at dspsrv.com Fri Sep 17 12:44:51 2004 From: timo at dspsrv.com (Tim O'Callaghan) Date: Fri, 17 Sep 2004 12:44:51 +0200 Subject: [vlc] Re: OT: Booting a Pace DSL4000 In-Reply-To: <77114b904091610343ec914d1@mail.gmail.com> References: <77114b904091610343ec914d1@mail.gmail.com> Message-ID: <414AC023.60507@dspsrv.com> James Burns wrote: > I am hoping that someone can help me get my recently acquired Pace > DSL4000NT to boot. It's looking for a file /nfsboot/!NFSBoot/!Run that > it needs to configure itself (as far as I can tell). I downloaded the > RiscOS 4.0 ISO from http://support.riscos.com/Support/RO4DISC.ISO but > the included !Run leads to the message "An application that loads a > file of this type has not be found the the Filer. Open a directory > display containing the application and try again." with the only > option being to cancel. I'm currently trying to track down other > documentation that will give me more insight into the nature of the > file. Any help that anyone can give me would be very much appreciated. > What kind of mechanism are you using to load the system baseline? NFS,SMB or TFTP? your missing file implies NFS. Or are you trying to do something other than tune in to an mpeg stream? Tim. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jkielthy at yahoo.com Fri Sep 17 13:08:05 2004 From: jkielthy at yahoo.com (Jesse Kielthy) Date: Fri, 17 Sep 2004 04:08:05 -0700 (PDT) Subject: [vlc] VLC default settings Message-ID: <20040917110805.25388.qmail@web52401.mail.yahoo.com> Hi, I have used the VLC application for quite a while now, but only recently have I noticed that the default settings for the application are set even though it will play any type of file - audio, video, etc. I was just wonderiung how the VLC application encoding schemes, output modules, etc. and the mechanisms that it employs to decide how and which scheme to use? Is there somewhere I can find this detailed information? Rgds, Jesse __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From dermot at dspsrv.com Fri Sep 17 14:00:31 2004 From: dermot at dspsrv.com (Dermot McGahon) Date: Fri, 17 Sep 2004 13:00:31 +0100 Subject: [vlc] Re: OT: Booting a Pace DSL4000 In-Reply-To: <77114b9040916130615e3b587@mail.gmail.com> References: <77114b9040916130615e3b587@mail.gmail.com> Message-ID: On Thu, 16 Sep 2004 16:06:53 -0400, James Burns wrote: > It's true that a boot server is required, however, most of the old > RiscOS system software has been released for free. Also there are > linux and netbsd versions which run on the hardware. So far I've been > able to boot "boot32" from netbsd for the "acorn" computer. The > desktop stuff doesn't seem to work though (not that that's what I want > to use it for anyways). Are there any free / open source packages for > driving these boxes? They seem like a pretty economical choice with a > good form factor. Reset the box, and hold down the reset button for a couple of seconds. You should be now able to configure the boot options. I'm trying to recall. I think you just have to hold down one button. If not, try variations or holding a couple of front panel buttons for 3-4 seconds. What do you want to run on this? A Pace supplied baseline or something else. You basically set up a tftp server on another machine, point the STB at it, and it should load. Of course, the s/w you want to load has to be something that can run on it. /nfsboot/!NFSBoot/!Run Are you exporting an nfsboot directory on another machine, which contains these files? "An application that loads a file of this type has not be found the the Filer. Open a directory display containing the application and try again." I used to get this a lot when the boot settings were incorrect, or the boot server changed ip address .. that kind of thing. A RISC OS file with ! is basically an executable. Your STB is not finding the s/w. Reconfigure the boot options. What do you want to do with this? There is mpeg decoding h/w but good luck to you getting anything other than the Pace supplied binary drivers to drive it. The processor is not up to much on its own. Dermot. -- -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From dermot at dspsrv.com Fri Sep 17 14:02:49 2004 From: dermot at dspsrv.com (Dermot McGahon) Date: Fri, 17 Sep 2004 13:02:49 +0100 Subject: [vlc] Re: OT: Booting a Pace DSL4000 In-Reply-To: <77114b904091610343ec914d1@mail.gmail.com> References: <77114b904091610343ec914d1@mail.gmail.com> Message-ID: > RiscOS 4.0 ISO from http://support.riscos.com/Support/RO4DISC.ISO but > the included !Run leads to the message "An application that loads a You also need to be asking this question on a RISC OS mailing list. Try and track down the RISC OS gcc people. They might be able to help. I've never heard of RISC OS 4 being run on a DSL4000. Not sure that the processor will be up to it. Dermot. -- -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jfburns at gmail.com Fri Sep 17 14:52:06 2004 From: jfburns at gmail.com (James Burns) Date: Fri, 17 Sep 2004 08:52:06 -0400 Subject: [vlc] Re: OT: Booting a Pace DSL4000 In-Reply-To: <414AC023.60507@dspsrv.com> References: <77114b904091610343ec914d1@mail.gmail.com> <414AC023.60507@dspsrv.com> Message-ID: <77114b9040917055215e7b8b2@mail.gmail.com> I'm trying to use NFS to load something to get it decoding MPEG. I don't have the Pace Baseline so I may be stuck, which would be unfortunate since they're unlikely to let me have it for a more than reasonable amount of money I'm guessing. I managed to get it to load the netbsd/acorn32 bootload and drop into BASIC from there, but that really doesn't get me too far. If what has been said about the binary MPEG driver being necessary, I may have just aquired a somewhat expensive paperweight. Oh well. I really would like to develop some applications with these things, but I'm not a large company or service provider and I don't have lots of cash, so that may not be happening. -James On Fri, 17 Sep 2004 12:44:51 +0200, Tim O'Callaghan wrote: > > > What kind of mechanism are you using to load the system baseline? > NFS,SMB or TFTP? your missing file implies NFS. Or are you trying to do > something other than tune in to an mpeg stream? > > Tim. > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From timo at dspsrv.com Fri Sep 17 15:18:29 2004 From: timo at dspsrv.com (Tim O'Callaghan) Date: Fri, 17 Sep 2004 15:18:29 +0200 Subject: [vlc] Re: OT: Booting a Pace DSL4000 In-Reply-To: <77114b9040917055215e7b8b2@mail.gmail.com> References: <77114b904091610343ec914d1@mail.gmail.com> <414AC023.60507@dspsrv.com> <77114b9040917055215e7b8b2@mail.gmail.com> Message-ID: <414AE425.60302@dspsrv.com> James Burns wrote: > I'm trying to use NFS to load something to get it decoding MPEG. I > don't have the Pace Baseline so I may be stuck, which would be > unfortunate since they're unlikely to let me have it for a more than > reasonable amount of money I'm guessing. I managed to get it to load > the netbsd/acorn32 bootload and drop into BASIC from there, but that > really doesn't get me too far. If what has been said about the binary > MPEG driver being necessary, I may have just aquired a somewhat > expensive paperweight. Oh well. I really would like to develop some > applications with these things, but I'm not a large company or service > provider and I don't have lots of cash, so that may not be happening. > > -James > If you're mounting from a Linux box, I'd go for samba or tftp rather than nfs. As Dermot mentioned, developing apps for it needs a RISCOS development env, such as Virtual Acorn and the Castle C compiler or the RISCOS gcc. IIRC developing drivers or interrupt driven stuff required the Castle compiler as gcc didnt have the capability. For fear of going way off topic, What do you want to do with these things? They are only just capable of playing MPEG properly.... Tim. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From PRae at aminocom.com Fri Sep 17 17:36:30 2004 From: PRae at aminocom.com (Paul Rae) Date: Fri, 17 Sep 2004 11:36:30 -0400 Subject: [vlc] Re: OT: Booting a Pace DSL4000 Message-ID: Ok somewhat of a advertisement, but if your looking for a cheap stb for decoding video, limited browsing etc ... then you might want to take a look at our range of stb's www.aminocom.com (yes i do work for them, but sounds like it might be a lot quicker and easier than what your doing) -----Original Message----- From: vlc-bounce at videolan.org on behalf of Tim O'Callaghan Sent: Fri 17/09/2004 9:18 AM To: vlc at videolan.org Cc: Subject: [vlc] Re: OT: Booting a Pace DSL4000 James Burns wrote: > I'm trying to use NFS to load something to get it decoding MPEG. I > don't have the Pace Baseline so I may be stuck, which would be > unfortunate since they're unlikely to let me have it for a more than > reasonable amount of money I'm guessing. I managed to get it to load > the netbsd/acorn32 bootload and drop into BASIC from there, but that > really doesn't get me too far. If what has been said about the binary > MPEG driver being necessary, I may have just aquired a somewhat > expensive paperweight. Oh well. I really would like to develop some > applications with these things, but I'm not a large company or service > provider and I don't have lots of cash, so that may not be happening. > > -James > If you're mounting from a Linux box, I'd go for samba or tftp rather than nfs. As Dermot mentioned, developing apps for it needs a RISCOS development env, such as Virtual Acorn and the Castle C compiler or the RISCOS gcc. IIRC developing drivers or interrupt driven stuff required the Castle compiler as gcc didnt have the capability. For fear of going way off topic, What do you want to do with these things? They are only just capable of playing MPEG properly.... Tim. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html N???az?\????x%??ly?m???? /?????????????????&??W????i?m???? /??????????h?????l??? From gbazin at altern.org Fri Sep 17 17:58:11 2004 From: gbazin at altern.org (Gildas Bazin) Date: Fri, 17 Sep 2004 17:58:11 +0200 Subject: [vlc] Re: petit souci In-Reply-To: <000001c49ccb$885c9700$0100a8c0@antoszew> References: <000001c49ccb$885c9700$0100a8c0@antoszew> Message-ID: <200409171758.11673.gbazin@altern.org> On Friday 17 September 2004 17:32, Joel Antoszewski wrote: > Bonjour, > > Lorsque j?utilise VLC en lecteur de DVD (menu), le DVD d?marre sur sa > fen?tre menu, lorsque je s?lectionne un item par exemple, Film ou Audio > il y a une erreur WINDOWS : est ce normal ?. > Ma configuration est : > XP Pro 2002, SP1 > Pentium 4 ? > CPU 2.53Ghz > 512 Mo > Essayez la nouvelle version de test (http://www.videolan.org/pub/testing/vlc-0.8.0-test1/win32/). -- Gildas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 17 17:59:07 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 17 Sep 2004 17:59:07 +0200 Subject: [vlc] Re: VLC Media Player for MacOS 9 In-Reply-To: References: Message-ID: <20040917155907.GC14708@kikal.org> On Thu, Sep 16, 2004, Michael Bernhardt wrote : > hello, > > Can you help me? > > I need a player for MacOS 9 but i do?nt can bye a new Computer for MacOSX. > May be, the MacOS9-Version of VLC Player is existing in your Archive? > > Please help us. > Michael > http://www.videolan.org/doc/faq/en/index.html#id2849918 -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 17 18:07:14 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 17 Sep 2004 18:07:14 +0200 Subject: [vlc] Re: Question about VLC for the operating sytems Windows/Mac In-Reply-To: <4149B041.7000802@bluemars.de> References: <4149B041.7000802@bluemars.de> Message-ID: <20040917160714.GD14708@kikal.org> On Thu, Sep 16, 2004, Larissa Hube wrote : > Dear Ladies and Gentlemen, > > we are producing a CD-ROM for one of our customers, a big German > telecommunications company. The CD-ROM is going to be distributed to > private customers - target group: dsl newbies - and comes as an > inclosure with the new connection package. The target of the CD-ROM is > to help and advise the customer and to ease their first exposure to the > internet. Due to that we would like to make your software "VLC" > available to the customers on this CD-ROM. Is it possible to do that at > no charge and/or do we need a license? > > We are looking forward to your feedback! Please send all conversation by > email to these addresses: > to: larissa.hube at bluemars.de > cc: joerg.barth at bluemars.de > As stated in our FAQ, http://www.videolan.org/doc/faq/en/index.html#id2785104, VLC is released under the GNU GPL license. The easiest way to comply with the GPL is to accompany the binaries with their source code. Basicaly, that meant that you need to provide all the source packages listed on this page : http://www.videolan.org/vlc/download-sources.html on the CD. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From john at gocoretec.com Fri Sep 17 18:09:20 2004 From: john at gocoretec.com (John Anderson) Date: Fri, 17 Sep 2004 12:09:20 -0400 Subject: [vlc] Re: VLC IGMP Problems References: <20040916184823.57665.qmail@web41109.mail.yahoo.com> Message-ID: <016d01c49cd0$b1014e80$1dc8c8c8@CheesyPoof> Microsoft Knowledge Base Article - 815752 http://support.microsoft.com/default.aspx?scid=kb;en-us;815752 ----- Original Message ----- From: Yeliseyev Dmitriy To: vlc at videolan.org Sent: Thursday, September 16, 2004 2:48 PM Subject: [vlc] VLC IGMP Problems Hallo. Im using your VLC client and I have the problem. Please, excuse me, if my question very simple or may be I miss the solution for this problem in the vlc settings, but for me it is very important. I use operational system MS Windows XP Home Edition and the problem is that I can use just IGMPv2 reports about multicast group membership. First times VLC sends IGMPv2 reports, now it starts to send IGMPv3 reports. How can I change this back? How I can configure VLC to send to the router IGMPv2 reports instead of IGMPv3 reports? Thank You very much in advance for help! Best wishes Dmitriy Yeliseyev ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! -------------- next part -------------- An HTML attachment was scrubbed... URL: From bigben+spam at videolan.org Fri Sep 17 18:10:48 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 17 Sep 2004 18:10:48 +0200 Subject: [vlc] Re: VLC IGMP Problems In-Reply-To: <20040916184823.57665.qmail@web41109.mail.yahoo.com> References: <20040916184823.57665.qmail@web41109.mail.yahoo.com> Message-ID: <20040917161048.GE14708@kikal.org> On Thu, Sep 16, 2004, Yeliseyev Dmitriy wrote : > Hallo. > > Im using your VLC client and I have the problem. > Please, excuse me, if my question very simple or may be I miss the solution for this problem in the vlc settings, but for me it is very important. > I use operational system MS Windows XP Home Edition and the problem is that I can use just IGMPv2 reports about multicast group membership. First times VLC sends IGMPv2 reports, now it starts to send IGMPv3 reports. How can I change this back? How I can configure VLC to send to the router IGMPv2 reports instead of IGMPv3 reports? > It's not VLC who decides whether it sends IGMPv2 or v3 reports, but rather the OS. The only thing VLC tells to the OS is that it wants to receive the data sent on a multicast group. The OS should detect itself if the network supports IGMPv2 or v3. As a consequence, you problem is rather a Windows XP bug (or configuration issue) than a VLC one... -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 17 18:15:08 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 17 Sep 2004 18:15:08 +0200 Subject: [vlc] Re: VLC and Visual Basic In-Reply-To: <000801c49ca8$e6e7db90$0302a8c0@Dell> References: <000801c49ca8$e6e7db90$0302a8c0@Dell> Message-ID: <20040917161508.GF14708@kikal.org> On Fri, Sep 17, 2004, jtotten wrote : > Hello, > > Just downloaded and tried VLC and it seems to work great, I am wondering if there is any kind of plugin to use it in an application I am writing to play videos rather than the WMP because it has some issues and I really like the quality of the vids with VLC. any help or suggestion would be greatly appreciated. > > All VLC functions are available through the libvlc. This is the library called by the vlc main program and the various mozilla plugins. This lib cna theorically used by any program written in C (or at least with C bindings). please also be aware that VLC is relased using the GPL license. That means that you program will have to be released under a GPL compatible license too. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 17 18:17:28 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 17 Sep 2004 18:17:28 +0200 Subject: [vlc] Re: Sensoray Model 616 Mpeg Encoder In-Reply-To: <414B0188.8000809@cmc.ca> References: <414B0188.8000809@cmc.ca> Message-ID: <20040917161728.GG14708@kikal.org> On Fri, Sep 17, 2004, Nathanael Morrison wrote : > VideoLan Developers, > > I noticed that you currently support the Visiontech Kfir cards. I > currently have the Sensoray Model 616 Mpeg Encoder and tried streaming > from the card using VLC. The command I used is as follows: > > vlc -vvv kfir:/dev/sx16a0 --sout udp:192.168.0.146 --ttl 12 > > Interestingly enough I was successfuly in getting video, however it's a > little choppy and it appears as though some of the frames are out of > order. Other then that the quality is quite good. Has anyone had > experience with the Sensoray card? If not, could you point me to some > resources as to what would be required to implement support for the > Sensoray card. > What kind of video stream does this card output ? (codec/muxer...). What messages are displayes when launching with the -vvv option ? Does the --cr-average 1000 option help ? -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hchhaya at ti.com Fri Sep 17 20:27:57 2004 From: hchhaya at ti.com (Chhaya, Harshal) Date: Fri, 17 Sep 2004 13:27:57 -0500 Subject: [vlc] Re: Using h/w support for MPEG decoding Message-ID: I asked: > > Is there any any hardware (video card or dedicated MPEG-2 decoder or > > anything else) that I can install in my PC that will reduce the load > > on the CPU when decoding a high-def video stream (.ts or .trp files)? > > This is for a Windows XP PC, if that makes any difference. and you said: > Well, nobody has written any module to use such devices yet (and we > won't, as we don't own any of these devices). Moreover, > depending on how these devices work, it isn't sure that they will fit > well with the way VLC is working. Ben, Thanks for this answer. I have been trying to find more information and found that some video cards support DxVA (DirectX Video Acceleration) that can help in video decoding. From what I have read, this is a pretty standard interface (i.e. it is not specific to any device) and supported by multiple cards. And it helps in DVD playback too. If I have a video card that supports this, can VLC use this functionality? Thanks, Harshal -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Fri Sep 17 21:00:13 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Fri, 17 Sep 2004 21:00:13 +0200 Subject: [vlc] Re: VLC Media Player for MacOS 9 In-Reply-To: References: Message-ID: From the first entry of the FAQ: 1.1. Where can I download VLC for Mac OS 9? Where did you read VLC for Mac OS 9 exist? There is not, and will not be, a version for Mac OS 9. http://download.videolan.org/images/vlc-os9.png pre OSX is a completely different system then any of the other systems we support. Supporting it would require an extreme amount of work for a platform that is basically dying out. However, if someone offers to write a OS9 version, he is always welcome... DJ On 16 sep 2004, at 12:28, Michael Bernhardt wrote: > hello, > > Can you help me? > > I need a player for MacOS 9 but i do?nt can bye a new Computer for > MacOSX. > May be, the MacOS9-Version of VLC Player is existing in your Archive? > > Please help us. > Michael > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Fri Sep 17 21:01:05 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Fri, 17 Sep 2004 21:01:05 +0200 Subject: [vlc] Re: VLC default settings In-Reply-To: <20040917110805.25388.qmail@web52401.mail.yahoo.com> References: <20040917110805.25388.qmail@web52401.mail.yahoo.com> Message-ID: Files are preparsed to identify of what type they are. On 17 sep 2004, at 13:08, Jesse Kielthy wrote: > Hi, > > I have used the VLC application for quite a while now, > but only recently have I noticed that the default > settings for the application are set even though it > will play any type of file - audio, video, etc. > > I was just wonderiung how the VLC application encoding > schemes, output modules, etc. and the mechanisms that > it employs to decide how and which scheme to use? Is > there somewhere I can find this detailed information? > > Rgds, > Jesse > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sun Sep 19 10:41:05 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sun, 19 Sep 2004 10:41:05 +0200 Subject: [vlc] Re: vlc help In-Reply-To: <20040917211956.88733.qmail@web20925.mail.yahoo.com> References: <20040917211956.88733.qmail@web20925.mail.yahoo.com> Message-ID: <20040919084105.GA14800@kikal.org> On Fri, Sep 17, 2004, Brett Sherman wrote : > it gives me an error message "main: no suitable > decoder module for fourcc `VP62'. > VLC probably does not support this sound or video > format." > Well, I think this messge is clear... VLC doesn't support this codec. It it totally closed, and no opensource decoder is available. Moreover, AFAIK, On2 didn't relase any decoder for this codec, meaning that there is no way to reqd such files on OSX. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From prdutta at cisco.com Mon Sep 20 06:03:15 2004 From: prdutta at cisco.com (Pranjal Dutta (prdutta)) Date: Mon, 20 Sep 2004 09:33:15 +0530 Subject: [vlc] Re: VLC IGMP Problems In-Reply-To: <20040916184823.57665.qmail@web41109.mail.yahoo.com> Message-ID: <4.3.2.7.2.20040920092433.026daaa8@codc-mira-1.cisco.com> Hi, Whether to send IGMPv2 or IGMPv3 is decided by the OS that you are using.IGMP is a part of IP Layer and so it resides within the TCP/IP stack which in turn is embedded into the OS Kernel.VLC or any other application softwares that use IGMP applies the APIs/Systems Calls(like BSD sockets in Linux) only to ask the kernel to send IGMP join/leave messages.Now it's upto the Kernel to send the latest version of IGMP message that it supports. I think previously your WINXP machine was capable of only sending IGMPv2, but later some setting change or windows update might have updated IGMP to Version 3. Then it will send only IGMPv3 messages. But why do you want to revert back to IGMPv2. Because you don't lose anything with IGMPv3, rather you get the enhanced functionality of SSM(Source Specific Multicast). As far as I know only WINXP supports IGMPv3, others like Win 98/2000 supports only IGMPv2. Hope this helps. Thanks, -Pranjal At 11:48 AM 9/16/2004 -0700, Yeliseyev Dmitriy wrote: >Hallo. > >Im using your VLC client and I have the problem. >Please, excuse me, if my question very simple or may be I miss the >solution for this problem in the vlc settings, but for me it is very important. >I use operational system MS Windows XP Home Edition and the problem is >that I can use just IGMPv2 reports about multicast group membership. First >times VLC sends IGMPv2 reports, now it starts to send IGMPv3 reports. How >can I change this back? How I can configure VLC to send to the router >IGMPv2 reports instead of IGMPv3 reports? > >Thank You very much in advance for help! > >Best wishes >Dmitriy Yeliseyev > > >Do you Yahoo!? >Yahoo! >Mail - 50x more storage than other providers! -------------- next part -------------- An HTML attachment was scrubbed... URL: From philippe.vanhecke at belnet.be Mon Sep 20 12:09:34 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Mon, 20 Sep 2004 12:09:34 +0200 Subject: [vlc] last svn version and dvb program selection problem. Message-ID: <200409201209.34294.philippe.vanhecke@belnet.be> Hi all I am currently make some test with last svn version of vlc and try to select a given program for a given transponder but it seem that vlc select always the first program it see and doesn't take care anymore of the --program param. here is the command line i use. usr/local/bin/vlc --program 3982 -vvv dvb:// --dvb-frequency 12610000 --dvb-tone -1 --dvb-fec 5 --dvb-srate 22000000 --sout udp:239.2.12.42 --intf telnet --extraintf http --sout-all --sap-interval 5 --sout-standard-sap--sout-standard-name BELNET-RTBF-SAT --ttl 1 this work perfectly with 0.7.2 version. I know that there is some changes on the dvb access of the svn version so my question is there is other way to select a given program for the same transponder with the svn version ? Regards, Philippe. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Mon Sep 20 14:26:36 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Mon, 20 Sep 2004 05:26:36 -0700 (PDT) Subject: [vlc] Vls Hang Message-ID: <20040920122636.57032.qmail@web41004.mail.yahoo.com> Hi,I am install vls 0.5.6 on FreeBSD 4.10 from /usr/ports ... After i put the vls.cfg into /usr/local/etc/videolan/vls, i type vls on command, it come out vls 0.5.6 VideoLAN server message then stop on here,nothing else happen,as if it hand,i check form vls.log,dmesg and /var/log/message nothing bug information about it? ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ricardo at americasnet.com Tue Sep 21 04:52:25 2004 From: ricardo at americasnet.com (Ricardo Kleemann) Date: Mon, 20 Sep 2004 19:52:25 -0700 Subject: [vlc] v4l input error: cannot open device (Is a directory) Message-ID: <000d01c49f86$06fa5680$0301a8c0@laptop> Hi all, I just installed VLC on Fedora Core 2. I have a Hauppauge WinTV card which is properly recognized in /dev/video. But when I startup vlc and try to capture, I get the above mentioned message. It mentions "playlist item 'v4l://'" although I'm not trying to do anything with playlist. What is the correct syntax for v4l:// ? BTW, I'm just running "vlc" from the command line without any additional arguments, and then from the GUI I attempt to capture. Thanks for any help Ricardo -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ricardo at americasnet.com Tue Sep 21 05:09:21 2004 From: ricardo at americasnet.com (Ricardo Kleemann) Date: Mon, 20 Sep 2004 20:09:21 -0700 Subject: [vlc] no rtsp access module? Message-ID: <1095736082.3650.2.camel@ws1.americasnet.com> Hi guys, I just installed VLC on Fedora Core 2, and I'm pretty sure I installed all of the suggested RPMs from the videolan.org site (the one that points to fc2) But I can't even access files via RTSP... I thought that would be a default capability. I get this error: [00000249] main input: playlist item `rtsp://www.americasnet.com:554/sample_300kbit.mp4' [00000249] main input error: no access module matched "rtsp" [00000249] v4l input error: cannot open device (No such file or directory) [00000249] v4l input error: cannot open audio device (No such file or directory)[00000249] main input error: no suitable access module for `/://rtsp://www.americasnet.com:554/sample_300kbit.mp4' Is there something else I need to install? Thanks Ricardo -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ricardo at americasnet.com Tue Sep 21 05:20:47 2004 From: ricardo at americasnet.com (Ricardo Kleemann) Date: Mon, 20 Sep 2004 20:20:47 -0700 Subject: [vlc] Re: v4l input error: cannot open device (Is a directory) In-Reply-To: <000d01c49f86$06fa5680$0301a8c0@laptop> References: <000d01c49f86$06fa5680$0301a8c0@laptop> Message-ID: <1095736847.3650.8.camel@ws1.americasnet.com> Hi guys, I actually figured out that I needed to use /dev/video0 rather than /dev/video. At least that didn't give me an error. However, I need to select the composite port of the card (the default port is the TV port). How can I do that? And how can I switch the encoder? I can't see anything in the GUI to change codecs. For example, if I wanted to use the DV codec, how can I configure that? Thanks again Ricardo On Mon, 2004-09-20 at 19:52, Ricardo Kleemann wrote: > Hi all, > > I just installed VLC on Fedora Core 2. I have a Hauppauge WinTV card which > is properly recognized in /dev/video. But when I startup vlc and try to > capture, I get the above mentioned message. > > It mentions "playlist item 'v4l://'" although I'm not trying to do anything > with playlist. > > What is the correct syntax for v4l:// ? > > BTW, I'm just running "vlc" from the command line without any additional > arguments, and then from the GUI I attempt to capture. > > Thanks for any help > > Ricardo > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Tue Sep 21 05:51:30 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Mon, 20 Sep 2004 20:51:30 -0700 (PDT) Subject: [vlc] problem in open dvd file Message-ID: <20040921035130.56136.qmail@web41009.mail.yahoo.com> Hi,i have problem in open dvd file(dts Piano.vob,3-2-pulldown.vob,ai_dolby_digital_ex.vob from videolan) ceynet# vls -vv VideoLAN Server v 0.5.6 (Aug 27 2004) - (c)1999-2003 VideoLAN 2004-09-21 19:04:55 [INFO/Vls] Module "channel:file" registered 2004-09-21 19:04:55 [INFO/Vls] Module "channel:network" registered 2004-09-21 19:04:55 [INFO/Vls] Module "mpegreader:file" registered 2004-09-21 19:04:55 [INFO/Vls] Module "mpegconverter:ts2ts" registered 2004-09-21 19:04:55 [INFO/Vls] Module "mpegconverter:ps2ts" registered 2004-09-21 19:04:55 [INFO/Vls] Module "input:local" registered 2004-09-21 19:04:55 [INFO/Vls] Module "input:video" registered 2004-09-21 19:04:55 [INFO/Vls] Browsing modules in directory "." 2004-09-21 19:04:55 [INFO/Vls] Browsing modules in directory "/usr/local/lib/videolan/vls" 2004-09-21 19:04:55 [INFO/Vls] Module "mpegreader:dvd" registered 2004-09-21 19:04:55 [INFO/Vls] Channel 'localhost' created 2004-09-21 19:04:55 [INFO/Vls] Channel 'dvd_ch' created 2004-09-21 19:04:55 [INFO/Vls] Channel 'multicast' created 2004-09-21 19:04:55 [INFO/Vls] Starting input 'local1' 2004-09-21 19:04:55 [INFO/local1] Added program 'film' 2004-09-21 19:04:55 [INFO/local1] Added program 'matrix' 2004-09-21 19:04:55 [INFO/Vls] Input 'local1' sucessfully initialised 2004-09-21 19:04:55 [INFO/Vls] New admin group "monitor" is ok 2004-09-21 19:04:55 [INFO/Vls] New admin group "master" is ok 2004-09-21 19:04:55 [INFO/Vls] New admin user "mipv6" is ok 2004-09-21 19:04:55 [INFO/Vls] New admin user "ceyong" is ok 2004-09-21 19:04:55 [INFO/Vls] Telnet server initialised 2004-09-21 19:05:01 [INFO/Vls] Processing incoming connection from 127.0.0.1 2004-09-21 19:05:09 [INFO/Vls] User "mipv6" successfully authenticated title == "1" chapter == "1" angle == "" libdvdread: Using libdvdcss version 1.2.8 for DVD access libdvdread: Can't open file VIDEO_TS.IFO. 2004-09-21 19:06:13 [ERROR/local1] Unable to start program matrix 2004-09-21 19:06:13 [ERROR/local1] Error: unable to start streaming of program matrix Error: Unable to create thread Error: Unable to open the IFO file ^C2004-09-21 19:06:33 [WARN/Vls] Received SIGINT: Interrupt from keyboard, launching shutdown sequence... 2004-09-21 19:06:33 [INFO/Vls] Telnet server stopped 2004-09-21 19:06:34 [INFO/Vls] Stopping the manager 2004-09-21 19:06:34 [INFO/Vls] Manager stopped 2004-09-21 19:06:34 [INFO/Vls] Destroying administrator module 2004-09-21 19:06:34 [INFO/Vls] Shutdowning all the opened sessions... 2004-09-21 19:06:34 [INFO/Vls] Closing connection from 127.0.0.1 2004-09-21 19:06:34 [INFO/Vls] Telnet server destroyed 2004-09-21 19:06:34 [INFO/Vls] Destroying manager module 2004-09-21 19:06:34 [INFO/Vls] Destroying the manager 2004-09-21 19:06:34 [INFO/Vls] Input local1 correctly stopped 2004-09-21 19:06:34 [INFO/Vls] Manager destroyed ceynet# vls -vv VideoLAN Server v 0.5.6 (Aug 27 2004) - (c)1999-2003 VideoLAN 2004-09-21 19:07:18 [INFO/Vls] Module "channel:file" registered 2004-09-21 19:07:18 [INFO/Vls] Module "channel:network" registered 2004-09-21 19:07:18 [INFO/Vls] Module "mpegreader:file" registered 2004-09-21 19:07:18 [INFO/Vls] Module "mpegconverter:ts2ts" registered 2004-09-21 19:07:18 [INFO/Vls] Module "mpegconverter:ps2ts" registered 2004-09-21 19:07:18 [INFO/Vls] Module "input:local" registered 2004-09-21 19:07:18 [INFO/Vls] Module "input:video" registered 2004-09-21 19:07:18 [INFO/Vls] Browsing modules in directory "." 2004-09-21 19:07:18 [INFO/Vls] Browsing modules in directory "/usr/local/lib/videolan/vls" 2004-09-21 19:07:18 [INFO/Vls] Module "mpegreader:dvd" registered 2004-09-21 19:07:18 [INFO/Vls] Channel 'localhost' created 2004-09-21 19:07:18 [INFO/Vls] Channel 'dvd_ch' created 2004-09-21 19:07:18 [INFO/Vls] Channel 'multicast' created 2004-09-21 19:07:18 [INFO/Vls] Starting input 'local1' 2004-09-21 19:07:18 [INFO/local1] Added program 'film' 2004-09-21 19:07:18 [INFO/local1] Added program 'matrix' 2004-09-21 19:07:18 [INFO/Vls] Input 'local1' sucessfully initialised 2004-09-21 19:07:18 [INFO/Vls] New admin group "monitor" is ok 2004-09-21 19:07:18 [INFO/Vls] New admin group "master" is ok 2004-09-21 19:07:18 [INFO/Vls] New admin user "mipv6" is ok 2004-09-21 19:07:18 [INFO/Vls] New admin user "ceyong" is ok 2004-09-21 19:07:18 [INFO/Vls] Telnet server initialised 2004-09-21 19:07:33 [INFO/Vls] Processing incoming connection from 127.0.0.1 2004-09-21 19:07:38 [INFO/Vls] User "mipv6" successfully authenticated title == "1" chapter == "1" angle == "" libdvdread: Using libdvdcss version 1.2.8 for DVD access libdvdread: Can't open file VIDEO_TS.IFO. 2004-09-21 19:07:57 [ERROR/local1] Unable to start program matrix 2004-09-21 19:07:57 [ERROR/local1] Error: unable to start streaming of program matrix Error: Unable to create thread Error: Unable to open the IFO file title == "1" chapter == "1" angle == "" libdvdread: Using libdvdcss version 1.2.8 for DVD access libdvdread: Can't open file VIDEO_TS.IFO. 2004-09-21 19:08:55 [ERROR/local1] Unable to start program matrix 2004-09-21 19:08:55 [ERROR/local1] Error: unable to start streaming of program matrix Error: Unable to create thread Error: Unable to open the IFO file ^C2004-09-21 19:11:11 [WARN/Vls] Received SIGINT: Interrupt from keyboard, launching shutdown sequence... 2004-09-21 19:11:11 [INFO/Vls] Telnet server stopped 2004-09-21 19:11:12 [INFO/Vls] Stopping the manager 2004-09-21 19:11:12 [INFO/Vls] Manager stopped 2004-09-21 19:11:12 [INFO/Vls] Destroying administrator module 2004-09-21 19:11:12 [INFO/Vls] Shutdowning all the opened sessions... 2004-09-21 19:11:12 [INFO/Vls] Closing connection from 127.0.0.1 2004-09-21 19:11:12 [INFO/Vls] Telnet server destroyed 2004-09-21 19:11:12 [INFO/Vls] Destroying manager module 2004-09-21 19:11:12 [INFO/Vls] Destroying the manager 2004-09-21 19:11:12 [INFO/Vls] Input local1 correctly stopped 2004-09-21 19:11:12 [INFO/Vls] Manager destroyed # vls configuration file (Example) # Application wide settings BEGIN "Vls" LogFile = "vls.log" # log file ScreenLog = "enable" # log to the console SystemLog = "disable" # log to the systemlog END # Security informations : # # The section "Groups" describes which group is allowed to use which command. # Each user who belongs to the 'master" group has all the power on the server. # Each one who belongs to the "monitor" group is a "read-only" user. BEGIN "Groups" # --- Format: # groupname = "cmd1|cmd2|..." # --- Example: monitor = "help|browse|logout" master = "help|browse|start|resume|suspend|stop|shutdown|logout|config|program|input|channel|show" END # The section "Users" describes each user # Use "mkpasswd" to generate the encrypted password. BEGIN "Users" # --- Format: # username = "encryptedpassword:group" # --- Example: monitor = "3BcKWoiQn0vi6:monitor" # password is 'monitor' bozo = "JKg2TpPerilnw:master" # password is 'bozo' END # Telnet Administration BEGIN "Telnet" # Domain = "Inet6" # Inet4 or Inet6 LocalPort = "9999" # Port to use for that purpose Use = "true" END # Streams sources declaration BEGIN "Inputs" # --- Format: # InputName = "Type" # --- Example: local1 = "local" # Local input example # kfir = "video" # Video input example (mpeg encoder) # dvb = "dvb" # Video input example (DVB card) END # --- Format: # BEGIN "program_number" # Name = "program_name" # Type = "type" # can be Mpeg1-PS, Mpeg2-PS, Mpeg2-TS, or Dvd # FileName = "path" # use this variable if Type is not "Dvd" # Device = "device" # use this variable with type "Dvd" # END # --- Example: #BEGIN "1" # DVD # Name = "film" # Device = "/dev/cdrom" # Type = "dvd" # DvdTitle = "2" # Start title # DvdChapter = "1" # Start chapter #END BEGIN "1" # DVD stored on a hard disk Name = "matrix" Device = "/usr/src/dts Piano.vob" Type = "dvd" DvdTitle = "1" # Start title DvdChapter = "1" # Start chapter END # Video input configuration BEGIN "kfir" # --- Example: # Device = "/dev/video" # Video4linux device (default is /dev/video) # Type = "Mpeg2-PS" # Stream type (default is "Mpeg2-PS") END # Video input (DVB) configuration BEGIN "dvb" # --- Example: # DeviceNumber = "0" # /dev/dvb/adapter # SendMethod = "0" # 0 - Send All Pids # 1 - Send only MPEG2 datas END # Channel (outputs) declaration BEGIN "Channels" # --- Format: # ChannelName = "Type" # --- Example: localhost = "network" # client1 = "network" dvd_ch = "network" multicast = "network" # localfile = "file" END # Channels configuration BEGIN "localhost" # The client is on the same host as the server DstHost = "127.0.0.1" DstPort = "1234" END #BEGIN "client1" # unicast example # DstHost = "192.168.1.2" # destination host # DstPort = "1234" # destination port #END #BEGIN "client2" # unicast with IPv6 example # Domain = "inet6" # DstHost = "3ffe:ffff::2:12:42" # destination host # DstPort = "1234" # destination port #END BEGIN "dvd_ch" # unicast with IPv6 example Domain = "inet6" DstHost = "3ffe:80d0:ff06:1::1" # destination host DstPort = "1234" # destination port END BEGIN "multicast" Domain ="inet6" # multicast example Type = "multicast" TTL = "128" # Time To Live DstHost = "ff6e:1:1:1::2222" # multicast address DstPort = "1234" # destination port END #BEGIN "localfile" # file output example # FileName = "stream.ts" # Append = "no" # rewrite the file if it exists #END # Commands automatically lanched on Startup # Commands shall be like they would be typed in a telnet console. BEGIN "LaunchOnStartUp" # command1 = "start dolby localhost local1 --loop" # command2 = "start 28009 client1 dvb" END ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ollie at predict.com Tue Sep 21 06:45:01 2004 From: ollie at predict.com (Ollie Eisman) Date: Mon, 20 Sep 2004 22:45:01 -0600 Subject: [vlc] Re: v4l input error: cannot open device (Is a directory) In-Reply-To: <000d01c49f86$06fa5680$0301a8c0@laptop> References: <000d01c49f86$06fa5680$0301a8c0@laptop> Message-ID: <414FB1CD.4070208@predict.com> Try this: vlc v4l:/dev/video0:norm=ntsc:size=320x240:channel=0 Ollie p.s. you may need to change norm=ntsc to whatever format you are using (PAL, etc.) Ricardo Kleemann wrote: > Hi all, > > I just installed VLC on Fedora Core 2. I have a Hauppauge WinTV card which > is properly recognized in /dev/video. But when I startup vlc and try to > capture, I get the above mentioned message. > > It mentions "playlist item 'v4l://'" although I'm not trying to do anything > with playlist. > > What is the correct syntax for v4l:// ? > > BTW, I'm just running "vlc" from the command line without any additional > arguments, and then from the GUI I attempt to capture. > > Thanks for any help > > Ricardo > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From spindler at hbt.arch.ethz.ch Tue Sep 21 08:33:39 2004 From: spindler at hbt.arch.ethz.ch (Torsten Spindler) Date: Tue, 21 Sep 2004 08:33:39 +0200 Subject: [vlc] Re: no rtsp access module? In-Reply-To: <1095736082.3650.2.camel@ws1.americasnet.com> References: <1095736082.3650.2.camel@ws1.americasnet.com> Message-ID: <1095748419.2628.24.camel@gasluft.ethz.ch> On Tue, 2004-09-21 at 05:09, Ricardo Kleemann wrote: > But I can't even access files via RTSP... I thought that would be a > default capability. I get this error: vlc needs live.com for this. You can check if it is included with vlc -l | grep live It should read livedotcom live.com (RTSP/RTP/SDP) demuxer livedotcom RTSP/RTP access and demux Bye, Torsten -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From jason at geshp.com Tue Sep 21 13:36:42 2004 From: jason at geshp.com (Jason Luka) Date: Tue, 21 Sep 2004 06:36:42 -0500 Subject: [vlc] Re: no rtsp access module? In-Reply-To: <1095736082.3650.2.camel@ws1.americasnet.com> References: <1095736082.3650.2.camel@ws1.americasnet.com> Message-ID: <4150124A.9090401@geshp.com> Ricardo Kleemann wrote: >Hi guys, > >I just installed VLC on Fedora Core 2, and I'm pretty sure I installed >all of the suggested RPMs from the videolan.org site (the one that >points to fc2) > >But I can't even access files via RTSP... I thought that would be a >default capability. I get this error: > >[00000249] main input: playlist item >`rtsp://www.americasnet.com:554/sample_300kbit.mp4' >[00000249] main input error: no access module matched "rtsp" >[00000249] v4l input error: cannot open device (No such file or >directory) >[00000249] v4l input error: cannot open audio device (No such file or >directory)[00000249] main input error: no suitable access module for >`/://rtsp://www.americasnet.com:554/sample_300kbit.mp4' > >Is there something else I need to install? > >Thanks >Ricardo > > > Adding the RTSP module was not suggested to me until two nights ago. Look for the 0.8.0 to have that feature implemented (hopefully). Jason Luka Fedora Core Maintainer -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Wed Sep 22 01:14:18 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Wed, 22 Sep 2004 01:14:18 +0200 Subject: [vlc] Re: problem in open dvd file In-Reply-To: <20040921035130.56136.qmail@web41009.mail.yahoo.com> References: <20040921035130.56136.qmail@web41009.mail.yahoo.com> Message-ID: vlc vls the shorts are sooo much similar, yet the programs so different. so this would be the VLC mailinglist.... DJ On 21 sep 2004, at 05:51, Yong Chu Eu (??????) wrote: > Hi,i have problem in open dvd file(dts > Piano.vob,3-2-pulldown.vob,ai_dolby_digital_ex.vob from videolan) > > > ceynet# vls -vv > VideoLAN Server v 0.5.6 (Aug 27 2004) - (c)1999-2003 VideoLAN > 2004-09-21 19:04:55 [INFO/Vls] Module "channel:file" registered > 2004-09-21 19:04:55 [INFO/Vls] Module "channel:network" registered > 2004-09-21 19:04:55 [INFO/Vls] Module "mpegreader:file" registered > 2004-09-21 19:04:55 [INFO/Vls] Module "mpegconverter:ts2ts" registered > 2004-09-21 19:04:55 [INFO/Vls] Module "mpegconverter:ps2ts" registered > 2004-09-21 19:04:55 [INFO/Vls] Module "input:local" registered > 2004-09-21 19:04:55 [INFO/Vls] Module "input:video" registered > 2004-09-21 19:04:55 [INFO/Vls] Browsing modules in directory "." > 2004-09-21 19:04:55 [INFO/Vls] Browsing modules in directory > "/usr/local/lib/videolan/vls" > 2004-09-21 19:04:55 [INFO/Vls] Module "mpegreader:dvd" registered > 2004-09-21 19:04:55 [INFO/Vls] Channel 'localhost' created > 2004-09-21 19:04:55 [INFO/Vls] Channel 'dvd_ch' created > 2004-09-21 19:04:55 [INFO/Vls] Channel 'multicast' created > 2004-09-21 19:04:55 [INFO/Vls] Starting input 'local1' > 2004-09-21 19:04:55 [INFO/local1] Added program 'film' > 2004-09-21 19:04:55 [INFO/local1] Added program 'matrix' > 2004-09-21 19:04:55 [INFO/Vls] Input 'local1' sucessfully initialised > 2004-09-21 19:04:55 [INFO/Vls] New admin group "monitor" is ok > 2004-09-21 19:04:55 [INFO/Vls] New admin group "master" is ok > 2004-09-21 19:04:55 [INFO/Vls] New admin user "mipv6" is ok > 2004-09-21 19:04:55 [INFO/Vls] New admin user "ceyong" is ok > 2004-09-21 19:04:55 [INFO/Vls] Telnet server initialised > 2004-09-21 19:05:01 [INFO/Vls] Processing incoming connection from > 127.0.0.1 > 2004-09-21 19:05:09 [INFO/Vls] User "mipv6" successfully authenticated > title == "1" > chapter == "1" > angle == "" > libdvdread: Using libdvdcss version 1.2.8 for DVD access > libdvdread: Can't open file VIDEO_TS.IFO. > 2004-09-21 19:06:13 [ERROR/local1] Unable to start program matrix > 2004-09-21 19:06:13 [ERROR/local1] Error: unable to start streaming of > program matrix > Error: Unable to create thread > Error: Unable to open the IFO file > ^C2004-09-21 19:06:33 [WARN/Vls] Received SIGINT: Interrupt from > keyboard, launching shutdown sequence... > 2004-09-21 19:06:33 [INFO/Vls] Telnet server stopped > 2004-09-21 19:06:34 [INFO/Vls] Stopping the manager > 2004-09-21 19:06:34 [INFO/Vls] Manager stopped > 2004-09-21 19:06:34 [INFO/Vls] Destroying administrator module > 2004-09-21 19:06:34 [INFO/Vls] Shutdowning all the opened sessions... > 2004-09-21 19:06:34 [INFO/Vls] Closing connection from 127.0.0.1 > 2004-09-21 19:06:34 [INFO/Vls] Telnet server destroyed > 2004-09-21 19:06:34 [INFO/Vls] Destroying manager module > 2004-09-21 19:06:34 [INFO/Vls] Destroying the manager > 2004-09-21 19:06:34 [INFO/Vls] Input local1 correctly stopped > 2004-09-21 19:06:34 [INFO/Vls] Manager destroyed > ceynet# vls -vv > VideoLAN Server v 0.5.6 (Aug 27 2004) - (c)1999-2003 VideoLAN > 2004-09-21 19:07:18 [INFO/Vls] Module "channel:file" registered > 2004-09-21 19:07:18 [INFO/Vls] Module "channel:network" registered > 2004-09-21 19:07:18 [INFO/Vls] Module "mpegreader:file" registered > 2004-09-21 19:07:18 [INFO/Vls] Module "mpegconverter:ts2ts" registered > 2004-09-21 19:07:18 [INFO/Vls] Module "mpegconverter:ps2ts" registered > 2004-09-21 19:07:18 [INFO/Vls] Module "input:local" registered > 2004-09-21 19:07:18 [INFO/Vls] Module "input:video" registered > 2004-09-21 19:07:18 [INFO/Vls] Browsing modules in directory "." > 2004-09-21 19:07:18 [INFO/Vls] Browsing modules in directory > "/usr/local/lib/videolan/vls" > 2004-09-21 19:07:18 [INFO/Vls] Module "mpegreader:dvd" registered > 2004-09-21 19:07:18 [INFO/Vls] Channel 'localhost' created > 2004-09-21 19:07:18 [INFO/Vls] Channel 'dvd_ch' created > 2004-09-21 19:07:18 [INFO/Vls] Channel 'multicast' created > 2004-09-21 19:07:18 [INFO/Vls] Starting input 'local1' > 2004-09-21 19:07:18 [INFO/local1] Added program 'film' > 2004-09-21 19:07:18 [INFO/local1] Added program 'matrix' > 2004-09-21 19:07:18 [INFO/Vls] Input 'local1' sucessfully initialised > 2004-09-21 19:07:18 [INFO/Vls] New admin group "monitor" is ok > 2004-09-21 19:07:18 [INFO/Vls] New admin group "master" is ok > 2004-09-21 19:07:18 [INFO/Vls] New admin user "mipv6" is ok > 2004-09-21 19:07:18 [INFO/Vls] New admin user "ceyong" is ok > 2004-09-21 19:07:18 [INFO/Vls] Telnet server initialised > 2004-09-21 19:07:33 [INFO/Vls] Processing incoming connection from > 127.0.0.1 > 2004-09-21 19:07:38 [INFO/Vls] User "mipv6" successfully authenticated > title == "1" > chapter == "1" > angle == "" > libdvdread: Using libdvdcss version 1.2.8 for DVD access > libdvdread: Can't open file VIDEO_TS.IFO. > 2004-09-21 19:07:57 [ERROR/local1] Unable to start program matrix > 2004-09-21 19:07:57 [ERROR/local1] Error: unable to start streaming of > program matrix > Error: Unable to create thread > Error: Unable to open the IFO file > title == "1" > chapter == "1" > angle == "" > libdvdread: Using libdvdcss version 1.2.8 for DVD access > libdvdread: Can't open file VIDEO_TS.IFO. > 2004-09-21 19:08:55 [ERROR/local1] Unable to start program matrix > 2004-09-21 19:08:55 [ERROR/local1] Error: unable to start streaming of > program matrix > Error: Unable to create thread > Error: Unable to open the IFO file > ^C2004-09-21 19:11:11 [WARN/Vls] Received SIGINT: Interrupt from > keyboard, launching shutdown sequence... > 2004-09-21 19:11:11 [INFO/Vls] Telnet server stopped > 2004-09-21 19:11:12 [INFO/Vls] Stopping the manager > 2004-09-21 19:11:12 [INFO/Vls] Manager stopped > 2004-09-21 19:11:12 [INFO/Vls] Destroying administrator module > 2004-09-21 19:11:12 [INFO/Vls] Shutdowning all the opened sessions... > 2004-09-21 19:11:12 [INFO/Vls] Closing connection from 127.0.0.1 > 2004-09-21 19:11:12 [INFO/Vls] Telnet server destroyed > 2004-09-21 19:11:12 [INFO/Vls] Destroying manager module > 2004-09-21 19:11:12 [INFO/Vls] Destroying the manager > 2004-09-21 19:11:12 [INFO/Vls] Input local1 correctly stopped > 2004-09-21 19:11:12 [INFO/Vls] Manager destroyed > > > > # vls configuration file (Example) > > # Application wide settings > BEGIN "Vls" > LogFile = "vls.log" # log file > ScreenLog = "enable" # log to the console > SystemLog = "disable" # log to the systemlog > END > > # Security informations : > # > # The section "Groups" describes which group is allowed to use which > command. > # Each user who belongs to the 'master" group has all the power on the > server. > # Each one who belongs to the "monitor" group is a "read-only" user. > BEGIN "Groups" > # --- Format: > # groupname = "cmd1|cmd2|..." > # --- Example: > monitor = "help|browse|logout" > master = > "help|browse|start|resume|suspend|stop|shutdown|logout|config|program|i > nput|channel|show" > END > > # The section "Users" describes each user > # Use "mkpasswd" to generate the encrypted password. > BEGIN "Users" > # --- Format: > # username = "encryptedpassword:group" > # --- Example: > monitor = "3BcKWoiQn0vi6:monitor" # password is 'monitor' > bozo = "JKg2TpPerilnw:master" # password is 'bozo' > END > > # Telnet Administration > BEGIN "Telnet" > # Domain = "Inet6" # Inet4 or Inet6 > LocalPort = "9999" # Port to use for that purpose > Use = "true" > END > > # Streams sources declaration > BEGIN "Inputs" > # --- Format: > # InputName = "Type" > # --- Example: > local1 = "local" # Local input example > # kfir = "video" # Video input example (mpeg > encoder) > # dvb = "dvb" # Video input example (DVB > card) > END > > # --- Format: > # BEGIN "program_number" > # Name = "program_name" > # Type = "type" # can be Mpeg1-PS, Mpeg2-PS, Mpeg2-TS, > or > Dvd > # FileName = "path" # use this variable if Type is not "Dvd" > # Device = "device" # use this variable with type "Dvd" > # END > > # --- Example: > > #BEGIN "1" # DVD > # Name = "film" > # Device = "/dev/cdrom" > # Type = "dvd" > # DvdTitle = "2" # Start title > # DvdChapter = "1" # Start chapter > #END > > BEGIN "1" # DVD stored on a hard disk > Name = "matrix" > Device = "/usr/src/dts Piano.vob" > Type = "dvd" > DvdTitle = "1" # Start title > DvdChapter = "1" # Start chapter > END > > # Video input configuration > BEGIN "kfir" > # --- Example: > # Device = "/dev/video" # Video4linux device (default is > /dev/video) > # Type = "Mpeg2-PS" # Stream type (default is > "Mpeg2-PS") > END > > # Video input (DVB) configuration > BEGIN "dvb" > # --- Example: > # DeviceNumber = "0" # /dev/dvb/adapter > # SendMethod = "0" # 0 - Send All Pids > # 1 - Send only MPEG2 datas > END > > # Channel (outputs) declaration > BEGIN "Channels" > # --- Format: > # ChannelName = "Type" > # --- Example: > localhost = "network" > # client1 = "network" > dvd_ch = "network" > multicast = "network" > # localfile = "file" > END > > # Channels configuration > BEGIN "localhost" # The client is on the same host as the > server > DstHost = "127.0.0.1" > DstPort = "1234" > END > > #BEGIN "client1" # unicast example > # DstHost = "192.168.1.2" # destination host > # DstPort = "1234" # destination port > #END > > #BEGIN "client2" # unicast with IPv6 example > # Domain = "inet6" > # DstHost = "3ffe:ffff::2:12:42" # destination host > # DstPort = "1234" # destination port > #END > > > BEGIN "dvd_ch" # unicast with IPv6 example > Domain = "inet6" > DstHost = "3ffe:80d0:ff06:1::1" # destination host > DstPort = "1234" # destination port > END > > > BEGIN "multicast" > Domain ="inet6" # multicast example > Type = "multicast" > TTL = "128" # Time To Live > DstHost = "ff6e:1:1:1::2222" # multicast address > DstPort = "1234" # destination port > END > > #BEGIN "localfile" # file output example > # FileName = "stream.ts" > # Append = "no" # rewrite the file if it > exists > #END > > # Commands automatically lanched on Startup > # Commands shall be like they would be typed in a telnet console. > BEGIN "LaunchOnStartUp" > # command1 = "start dolby localhost local1 --loop" > # command2 = "start 28009 client1 dvb" > END > > > > > ===== > ???????????????????????? Happy & Healthy Always ! ^_^ ! > ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong > ???????????? Buddhist Page: > http://planet.time.net.my/SunwayCity/ceyong/artikel.htm > > > > > __________________________________ > Do you Yahoo!? > New and Improved Yahoo! Mail - 100MB free storage! > http://promotions.yahoo.com/new_mail > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From prdutta at cisco.com Wed Sep 22 10:56:19 2004 From: prdutta at cisco.com (Pranjal Dutta (prdutta)) Date: Wed, 22 Sep 2004 14:26:19 +0530 Subject: [vlc] Where to find x264library? Message-ID: <4.3.2.7.2.20040922142221.026b0a70@codc-mira-1.cisco.com> Hi, I am looking for the source code library of x264 and not able to obtain it from SVN Repository as referred in VideoLAN site) # svn co svn://svn.videolan.org/x264/trunk x264). I am at present working on a open source H.264 Decoder and would be very happy to contribute in VLC x264 development. Any pointers for FTP/HTTP download of x264 library will be of great help. Thanks, Pranjal -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Wed Sep 22 11:44:05 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 22 Sep 2004 11:44:05 +0200 Subject: [vlc] Re: OS 9 version of Videolan In-Reply-To: References: Message-ID: <20040922094405.GF26438@kikal.org> On Sun, Sep 19, 2004, K Beach wrote : > A press release states that there is an OS 9 version of VideoLan but I can't > find it. Does anyone have any information on this? > There is no anf will certainly never be a version of VLC for OS 9. The only time this was mentioned on our website was 1st April fool's trick... -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Wed Sep 22 11:46:06 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 22 Sep 2004 11:46:06 +0200 Subject: [vlc] Re: Having Slowdown Problems with VLC In-Reply-To: <414F80E3.1020400@aol.com> References: <414F80E3.1020400@aol.com> Message-ID: <20040922094606.GG26438@kikal.org> On Mon, Sep 20, 2004, David wrote : > Even though I've got all this, it seems every file I've tried to play > through VLC has been very very choppy. It's not too terrible when I > want to see the story of Full Metal Alchemist, but when I want to see a > new Kingdom Hearts 2 trailer I want to see every frame. I'll admit I > used to use Windows Media player until recently it's decided to slow > down on me and get the video out of sync with the sound rather fast. > I've checked out the CPU readout and it doesn't seem to really strain > whenever I play files... it's like it just drops half or more of the > frames. This goes for all files too be they ogm, avi, mov, and mpgs. Do > you guys have any advice for me? I don't think I missed anything vital > in the FAQ... so I'm kind of in a bind. Thank for your time and > hopefully your help.
The fact WMP has hardships to read the stream could be a indication of the fact the file is broken Could you provide us some debug info (view->message) ? -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Wed Sep 22 11:47:23 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 22 Sep 2004 11:47:23 +0200 Subject: [vlc] Re: Where to find x264library? In-Reply-To: <4.3.2.7.2.20040922142221.026b0a70@codc-mira-1.cisco.com> References: <4.3.2.7.2.20040922142221.026b0a70@codc-mira-1.cisco.com> Message-ID: <20040922094723.GH26438@kikal.org> On Wed, Sep 22, 2004, Pranjal Dutta (prdutta) wrote : > Hi, > I am looking for the source code library of x264 and not able to > obtain it from SVN Repository as referred in VideoLAN site) # svn co > svn://svn.videolan.org/x264/trunk x264). I am at present working on a open > source H.264 Decoder and would be very happy to contribute in VLC x264 > development. Any pointers for FTP/HTTP download of x264 library will be of > great help. > Well, AFAIK, svn is currently the only way to get x264. What is exactly your problem with the svn access ? -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From PRae at aminocom.com Wed Sep 22 15:46:42 2004 From: PRae at aminocom.com (Paul Rae) Date: Wed, 22 Sep 2004 09:46:42 -0400 Subject: [vlc] Re: Having Slowdown Problems with VLC Message-ID: Are you seeing this on all files? The fact that your seeing it in both vlc and wmp could indicate either a broken file or maybe somethings changed on your laptop config recently? New drivers, sp2, etc ....? _____ From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On Behalf Of David Sent: Monday, September 20, 2004 9:16 PM To: vlc at videolan.org Subject: [vlc] Having Slowdown Problems with VLC Hey, Alright... first I have to tip my hats at all I've seen the player do on other systems. Very good job, but I've got a problem when I try to run it on mine. I've got an Alienware laptop as such 3Ghz P4 GeForce 5700 Go (latest mobile drivers installed) 1Gig RAM etc etc etc power machine Even though I've got all this, it seems every file I've tried to play through VLC has been very very choppy. It's not too terrible when I want to see the story of Full Metal Alchemist, but when I want to see a new Kingdom Hearts 2 trailer I want to see every frame. I'll admit I used to use Windows Media player until recently it's decided to slow down on me and get the video out of sync with the sound rather fast. I've checked out the CPU readout and it doesn't seem to really strain whenever I play files... it's like it just drops half or more of the frames. This goes for all files too be they ogm, avi, mov, and mpgs. Do you guys have any advice for me? I don't think I missed anything vital in the FAQ... so I'm kind of in a bind. Thank for your time and hopefully your help. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From prdutta at cisco.com Thu Sep 23 14:09:20 2004 From: prdutta at cisco.com (Pranjal Dutta (prdutta)) Date: Thu, 23 Sep 2004 17:39:20 +0530 Subject: [vlc] Re: Where to find x264library? In-Reply-To: <20040922094723.GH26438@kikal.org> References: <4.3.2.7.2.20040922142221.026b0a70@codc-mira-1.cisco.com> <4.3.2.7.2.20040922142221.026b0a70@codc-mira-1.cisco.com> Message-ID: <4.3.2.7.2.20040923173824.0285f5e8@codc-mira-1.cisco.com> Hi, Thanks for your response.Now I am able to access it. here might be some problem in my machine when I tried to access and got no response . -Pranjal At 11:47 AM 9/22/2004 +0200, you wrote: >On Wed, Sep 22, 2004, Pranjal Dutta (prdutta) wrote : > > Hi, > > I am looking for the source code library of x264 and not able to > > obtain it from SVN Repository as referred in VideoLAN site) # svn co > > svn://svn.videolan.org/x264/trunk x264). I am at present working on a open > > source H.264 Decoder and would be very happy to contribute in VLC x264 > > development. Any pointers for FTP/HTTP download of x264 library will be of > > great help. > > > >Well, AFAIK, svn is currently the only way to get x264. What is exactly >your problem with the svn access ? > >-- >BigBen > >-- >This is the vlc mailing-list, see http://www.videolan.org/vlc/ >To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ahthamrin at gmail.com Fri Sep 24 03:54:19 2004 From: ahthamrin at gmail.com (Achmad Husni Thamrin) Date: Fri, 24 Sep 2004 10:54:19 +0900 Subject: [vlc] Several multicast sources on a single group Message-ID: <4250f36104092318545f142e74@mail.gmail.com> Hi All, I tried to use the VLC 0.7.2 on Windows to receive multicast streams on a single group from two sources and I found that the VLC "mixes" the streams so the video I saw was changing all the time, video from source A at a moment, then from source B at the next moment, and so on. Is there any plan in the near future to enable VLC to receive a multicast stream from a single source only? Better yet, to enable VLC to automatically create a window for each sources? Thank you, -husni- -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Fri Sep 24 09:10:28 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Fri, 24 Sep 2004 09:10:28 +0200 Subject: [vlc] Re: Several multicast sources on a single group In-Reply-To: <4250f36104092318545f142e74@mail.gmail.com> References: <4250f36104092318545f142e74@mail.gmail.com> Message-ID: <20040924071028.GA32653@kikal.org> On Fri, Sep 24, 2004, Achmad Husni Thamrin wrote : > Hi All, > > I tried to use the VLC 0.7.2 on Windows to receive multicast streams > on a single group from two sources and I found that the VLC "mixes" > the streams so the video I saw was changing all the time, video from > source A at a moment, then from source B at the next moment, and so > on. > > Is there any plan in the near future to enable VLC to receive a > multicast stream from a single source only? > Better yet, to enable VLC to automatically create a window for each sources? > It is already suppoprted, but you need igmpv3 and PIM SSM to acheive that. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From john at gocoretec.com Fri Sep 24 15:30:26 2004 From: john at gocoretec.com (John Anderson) Date: Fri, 24 Sep 2004 09:30:26 -0400 Subject: [vlc] Re: Several multicast sources on a single group References: <4250f36104092318545f142e74@mail.gmail.com> Message-ID: <003c01c4a23a$a7603700$1dc8c8c8@CheesyPoof> ----- Original Message ----- From: "Achmad Husni Thamrin" To: Sent: Thursday, September 23, 2004 9:54 PM Subject: [vlc] Several multicast sources on a single group > Hi All, > > I tried to use the VLC 0.7.2 on Windows to receive multicast streams > on a single group from two sources and I found that the VLC "mixes" > the streams so the video I saw was changing all the time, video from > source A at a moment, then from source B at the next moment, and so > on. > > Is there any plan in the near future to enable VLC to receive a > multicast stream from a single source only? > Better yet, to enable VLC to automatically create a window for each sources? Could you explain the problem a little better? If you have two streams broadcasting on the same MC group with the same port then it should be expected that the streams will mix. How would you distinguish between the two sources? -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From dermot at dspsrv.com Fri Sep 24 15:41:29 2004 From: dermot at dspsrv.com (Dermot McGahon) Date: Fri, 24 Sep 2004 14:41:29 +0100 Subject: [vlc] Re: Several multicast sources on a single group In-Reply-To: <003c01c4a23a$a7603700$1dc8c8c8@CheesyPoof> References: <4250f36104092318545f142e74@mail.gmail.com> <003c01c4a23a$a7603700$1dc8c8c8@CheesyPoof> Message-ID: On Fri, 24 Sep 2004 09:30:26 -0400, John Anderson wrote: >> Is there any plan in the near future to enable VLC to receive a >> multicast stream from a single source only? >> Better yet, to enable VLC to automatically create a window for each > sources? > > Could you explain the problem a little better? If you have two streams > broadcasting on the same MC group with the same port then it should be > expected that the streams will mix. How would you distinguish between > the > two sources? > There is an IETF draft for source specific multicast (SSM): http://www.ietf.org/internet-drafts/draft-ietf-ssm-arch-06.txt Dermot. -- -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From john at gocoretec.com Fri Sep 24 15:50:01 2004 From: john at gocoretec.com (John Anderson) Date: Fri, 24 Sep 2004 09:50:01 -0400 Subject: [vlc] Re: Several multicast sources on a single group References: <4250f36104092318545f142e74@mail.gmail.com> <003c01c4a23a$a7603700$1dc8c8c8@CheesyPoof> Message-ID: <005001c4a23d$63901bf0$1dc8c8c8@CheesyPoof> ----- Original Message ----- From: "Dermot McGahon" To: Sent: Friday, September 24, 2004 9:41 AM Subject: [vlc] Re: Several multicast sources on a single group > On Fri, 24 Sep 2004 09:30:26 -0400, John Anderson > wrote: > > >> Is there any plan in the near future to enable VLC to receive a > >> multicast stream from a single source only? > >> Better yet, to enable VLC to automatically create a window for each > > sources? > > > > Could you explain the problem a little better? If you have two streams > > broadcasting on the same MC group with the same port then it should be > > expected that the streams will mix. How would you distinguish between > > the > > two sources? > > > > There is an IETF draft for source specific multicast (SSM): > > http://www.ietf.org/internet-drafts/draft-ietf-ssm-arch-06.txt Thanks for the info. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jransay at synelec.fr Fri Sep 24 15:56:15 2004 From: jransay at synelec.fr (Johann Ransay) Date: Fri, 24 Sep 2004 15:56:15 +0200 Subject: [vlc] mp4v support Message-ID: <4154277F.47CD9487@synelec.fr> Hello, Could someone tell me which library has to be compiled to add mp4v support to vlc because I when I am trying to play an MPEG4 file I get the following output: VLC media player 0.7.2 Bond [00000327] main input: playlist item `/mnt/cdrom/test.mpg' libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 0) [00000329] main decoder error: no suitable decoder module for fourcc `mp4v'. VLC probably does not support this sound or video format. [00000327] access_file input: closing `/:///mnt/cdrom/test.mpg' Any help will be appreciated Johann -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Fri Sep 24 16:24:28 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Fri, 24 Sep 2004 16:24:28 +0200 Subject: [vlc] Re: mp4v support In-Reply-To: <4154277F.47CD9487@synelec.fr> References: <4154277F.47CD9487@synelec.fr> Message-ID: <41542E1C.2010005@videolan.org> ffmpeg of course. DJ Johann Ransay wrote: > Hello, > > Could someone tell me which library has to be compiled to add mp4v > support to vlc because I when I am trying to play an MPEG4 file > I get the following output: > > VLC media player 0.7.2 Bond > [00000327] main input: playlist item `/mnt/cdrom/test.mpg' > libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected > 0) > libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected > 0) > [00000329] main decoder error: no suitable decoder module for fourcc > `mp4v'. > VLC probably does not support this sound or video format. > [00000327] access_file input: closing `/:///mnt/cdrom/test.mpg' > > Any help will be appreciated > > Johann > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From finlayson at live.com Fri Sep 24 22:23:13 2004 From: finlayson at live.com (Ross Finlayson) Date: Fri, 24 Sep 2004 13:23:13 -0700 Subject: [vlc] Re: Several multicast sources on a single group In-Reply-To: <003c01c4a23a$a7603700$1dc8c8c8@CheesyPoof> References: <4250f36104092318545f142e74@mail.gmail.com> <003c01c4a23a$a7603700$1dc8c8c8@CheesyPoof> Message-ID: <6.1.2.0.1.20040924130941.02d9aa30@localhost> Some of the answers to the original question have been confused. Source-specific multicast (SSM) and IGMPv3 are irrelevant here. The original poster was *not* asking how to receive multicast streams where non-valid senders have (accidentally or maliciously) been injecting bogus multicast packets. Instead, he was asking about receiving multicast sessions where more than one sender *legitimately* sends to the same multicast group - e.g., multicast conference sessions with more than one concurrent speaker, or more than one video source (e.g., the MBone "Places All Over the World" session). John Anderson asked: >Could you explain the problem a little better? If you have two streams >broadcasting on the same MC group with the same port then it should be >expected that the streams will mix. How would you distinguish between the >two sources? You would distinguish between the two sources by the RTP "SSRC" (synchronization source) field, which would differ for each source. To handle streams like this, two things would need to be done: 1/ The LIVE.COM library code would need to be updated to support demultiplexing an input RTP stream based on SSRC. (At present it delivers a single RTP stream to callers, regardless of the SSRC.) There will also need to be some mechanism for 'triggering' a new handler function whenever a new SSRC is seen - e.g., when a new video source appears. 2/ The VLC code will need to be updated to support the creation of multiple video windows - one for each video source. (Note: For compability with the LIVE.COM code, these multiple video windows should *not* use separate threads.) If support for 2/ is added to VLC, I can take a crack at task 1/. Just let me know... Ross Finlayson LIVE.COM -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sat Sep 25 10:26:16 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sat, 25 Sep 2004 10:26:16 +0200 Subject: [vlc] Re: Errors in VLC In-Reply-To: <000801c4b282$f6079080$0100a8c0@juniam1> References: <000801c4b282$f6079080$0100a8c0@juniam1> Message-ID: <20040925082616.GA11450@kikal.org> On Fri, Oct 15, 2004, bokerlaw wrote : > I use vlc player for a while now. I like the new version 0.7.2. > But, when I use it to preview part files in Emule (using plugin with same version), > after I close the preview I get this error: > The instruction "0x77fcc8e1" referenced memory at "0x019a4a40". > The memory could not be "written" > > Why is that? > The plugin you talking about hasn't been developped by the VideoLAN team, and we cannot make any support for it. Please contact the people who wrote this plugin -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Sat Sep 25 11:20:59 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Sat, 25 Sep 2004 11:20:59 +0200 Subject: [vlc] Re: last svn version and dvb program selection problem. In-Reply-To: <200409201209.34294.philippe.vanhecke@belnet.be> References: <200409201209.34294.philippe.vanhecke@belnet.be> Message-ID: <200409251120.59742.philippe.vanhecke@belnet.be> Le Lundi 20 Septembre 2004 12:09, Philippe Van Hecke a ?crit : > Hi all > > I am currently make some test with last svn version of vlc and try to > select a given program for a given transponder but it seem that vlc select > always the first program it see and doesn't take care anymore of the > --program param. > > here is the command line i use. > > usr/local/bin/vlc --program 3982 -vvv dvb:// --dvb-frequency 12610000 > --dvb-tone -1 --dvb-fec 5 --dvb-srate 22000000 --sout udp:239.2.12.42 > --intf telnet --extraintf http --sout-all --sap-interval 5 > --sout-standard-sap--sout-standard-name BELNET-RTBF-SAT --ttl 1 > > this work perfectly with 0.7.2 version. > > I know that there is some changes on the dvb access of the svn version > so my question is there is other way to select a given program for the same > transponder with the svn version ? > > Any idea here ? I am doing something wrong ? regards, LePhiloux -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Sat Sep 25 12:18:45 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Sat, 25 Sep 2004 12:18:45 +0200 Subject: [vlc] Re: last svn version and dvb program selection problem. In-Reply-To: <200409251120.59742.philippe.vanhecke@belnet.be> References: <200409201209.34294.philippe.vanhecke@belnet.be> <200409251120.59742.philippe.vanhecke@belnet.be> Message-ID: <20040925101845.GA27449@kikal.org> On Sat, Sep 25, 2004, Philippe Van Hecke wrote : > Le Lundi 20 Septembre 2004 12:09, Philippe Van Hecke a ?crit : > > Hi all > > > > I am currently make some test with last svn version of vlc and try to > > select a given program for a given transponder but it seem that vlc select > > always the first program it see and doesn't take care anymore of the > > --program param. > > > > here is the command line i use. > > > > usr/local/bin/vlc --program 3982 -vvv dvb:// --dvb-frequency 12610000 > > --dvb-tone -1 --dvb-fec 5 --dvb-srate 22000000 --sout udp:239.2.12.42 > > --intf telnet --extraintf http --sout-all --sap-interval 5 > > --sout-standard-sap--sout-standard-name BELNET-RTBF-SAT --ttl 1 > > > > this work perfectly with 0.7.2 version. > > Whithout any more complete log, we cannot really help you. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Sat Sep 25 12:35:29 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Sat, 25 Sep 2004 12:35:29 +0200 Subject: [vlc] Re: last svn version and dvb program selection problem. In-Reply-To: <20040925101845.GA27449@kikal.org> References: <200409201209.34294.philippe.vanhecke@belnet.be> <200409251120.59742.philippe.vanhecke@belnet.be> <20040925101845.GA27449@kikal.org> Message-ID: <200409251235.29338.philippe.vanhecke@belnet.be> > Whithout any more complete log, we cannot really help you. > > -- Ok sorry, you can find log here http://users.skynet.be/lephiloux/rtbf-sat-stream.log I am using last svn on linux gentoo box. And the problem is that the program number=12199 is alway selected but i want to select the program number=3982 Thanks, LePhiloux. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Mon Sep 27 08:15:32 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Mon, 27 Sep 2004 08:15:32 +0200 Subject: [vlc] Re: Task about subtitle.... In-Reply-To: <20040926120137.5C27333CCA@rekin5.o2.pl> References: <20040926120137.5C27333CCA@rekin5.o2.pl> Message-ID: <20040927061532.GA20102@kikal.org> On Sun, Sep 26, 2004, nureq at tlen.pl wrote : > Hi I have one litle question. I'm using VideoLAN but, I don't know how make to subtitile bigest. Where do this ?? please answer to me :)) > Size of the subtitles can be changed in the preferences, modules tab, text renderer, freetype -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hmoore at gmail.com Mon Sep 27 08:33:29 2004 From: hmoore at gmail.com (Harry Moore) Date: Mon, 27 Sep 2004 07:33:29 +0100 Subject: [vlc] Re: Task about subtitle.... In-Reply-To: <20040927061532.GA20102@kikal.org> References: <20040926120137.5C27333CCA@rekin5.o2.pl> <20040927061532.GA20102@kikal.org> Message-ID: <24357689040926233312a46f5e@mail.gmail.com> On a related matter, is it possible to stream subtitles? If videolan itself can't do this, has anyone had success doing this any other way? Thanks, Harry On Mon, 27 Sep 2004 08:15:32 +0200, Benjamin PRACHT wrote: > On Sun, Sep 26, 2004, nureq at tlen.pl wrote : > > Hi I have one litle question. I'm using VideoLAN but, I don't know how make to subtitile bigest. Where do this ?? please answer to me :)) > > > > Size of the subtitles can be changed in the preferences, modules tab, > text renderer, freetype > > -- > BigBen > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From sigmunau at stud.ntnu.no Mon Sep 27 08:55:29 2004 From: sigmunau at stud.ntnu.no (Sigmund Augdal) Date: Mon, 27 Sep 2004 08:55:29 +0200 Subject: [vlc] Re: Task about subtitle.... In-Reply-To: <24357689040926233312a46f5e@mail.gmail.com> References: <20040926120137.5C27333CCA@rekin5.o2.pl> <20040927061532.GA20102@kikal.org> <24357689040926233312a46f5e@mail.gmail.com> Message-ID: <20040927065529.GA3746@hobbes> Try with version 0.8.0-test1. Sigmund On Mon, Sep 27, 2004 at 07:33:29AM +0100, Harry Moore wrote: > On a related matter, is it possible to stream subtitles? > > If videolan itself can't do this, has anyone had success doing this > any other way? > Thanks, > Harry > > On Mon, 27 Sep 2004 08:15:32 +0200, Benjamin PRACHT > wrote: > > On Sun, Sep 26, 2004, nureq at tlen.pl wrote : > > > Hi I have one litle question. I'm using VideoLAN but, I don't know how make to subtitile bigest. Where do this ?? please answer to me :)) > > > > > > > Size of the subtitles can be changed in the preferences, modules tab, > > text renderer, freetype > > > > -- > > BigBen > > > > > > > > -- > > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > > To unsubscribe, please read http://www.videolan.org/support/lists.html > > > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From gbazin at altern.org Mon Sep 27 09:00:27 2004 From: gbazin at altern.org (Gildas Bazin) Date: Mon, 27 Sep 2004 09:00:27 +0200 Subject: [vlc] Re: Task about subtitle.... In-Reply-To: <24357689040926233312a46f5e@mail.gmail.com> References: <20040926120137.5C27333CCA@rekin5.o2.pl> <20040927061532.GA20102@kikal.org> <24357689040926233312a46f5e@mail.gmail.com> Message-ID: <200409270900.27817.gbazin@altern.org> On Monday 27 September 2004 08:33, Harry Moore wrote: > On a related matter, is it possible to stream subtitles? > > If videolan itself can't do this, has anyone had success doing this > any other way? > Thanks, > Harry > You should be able to stream text subtitles if you use the MPEG TS, mp4 or Ogg muxers. You can also stream DVD subtitles if you stream in MPEG TS, either as is (which is not standard compliant) or by converting them to DVB subtitles (with the transcoder module). Lastly if you are transcoding the video, you can burn the subtitles directly onto the video. But beware that you'll need VLC 0.8.0-testX and that some of these features have not been extensively tested... but you can report any problems here. -- Gildas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From Pedro.Lorente at upc.es Mon Sep 27 10:58:32 2004 From: Pedro.Lorente at upc.es (Pedro Lorente/UPC) Date: Mon, 27 Sep 2004 10:58:32 +0200 Subject: [vlc] VLC and h261 / h263 Message-ID: Hi all, I'm trying to display a h261/h263 streaming generated by Tandberg 800, but videolan get some warnings about the mpeg ts module. How can I force the vlc for use h261 /h263 codecs for this stream?? Thanks in advance!!! Pedro Lorente -------------- next part -------------- An HTML attachment was scrubbed... URL: From hmoore at gmail.com Mon Sep 27 11:57:02 2004 From: hmoore at gmail.com (Harry Moore) Date: Mon, 27 Sep 2004 10:57:02 +0100 Subject: [vlc] Re: Task about subtitle.... In-Reply-To: <200409270900.27817.gbazin@altern.org> References: <20040926120137.5C27333CCA@rekin5.o2.pl> <20040927061532.GA20102@kikal.org> <24357689040926233312a46f5e@mail.gmail.com> <200409270900.27817.gbazin@altern.org> Message-ID: <2435768904092702571f08656@mail.gmail.com> It took me a while to realise that I had to enable the subtitles track (from video menu) on both the server and client, and that both clients needed to be 0.80, but it works a charm now. Have tested with .srt files, and .sub files, and have found no bugs yet. Many thanks! On Mon, 27 Sep 2004 09:00:27 +0200, Gildas Bazin wrote: > On Monday 27 September 2004 08:33, Harry Moore wrote: > > On a related matter, is it possible to stream subtitles? > > > > If videolan itself can't do this, has anyone had success doing this > > any other way? > > Thanks, > > Harry > > > > You should be able to stream text subtitles if you use the MPEG TS, mp4 or > Ogg muxers. > You can also stream DVD subtitles if you stream in MPEG TS, either as is > (which is not standard compliant) or by converting them to DVB subtitles > (with the transcoder module). > Lastly if you are transcoding the video, you can burn the subtitles directly > onto the video. > > But beware that you'll need VLC 0.8.0-testX and that some of these features > have not been extensively tested... but you can report any problems here. > > -- > Gildas > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From pype at gameflux.com Mon Sep 27 18:44:39 2004 From: pype at gameflux.com (PyPe) Date: Mon, 27 Sep 2004 18:44:39 +0200 Subject: [vlc] vlc and external app Message-ID: <5.2.0.9.0.20040927184430.019cc6d8@localhost> Hello ! the question was already posted, but i would like more precisions. How can i work with libvlc in my external app written in Visual Basic ? If someone already done this, can you tell me exactly how to do it ? I just want the play/stop function to play an internet stream in my app. thanx, vlc is a great prog ! -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From philippe.vanhecke at belnet.be Mon Sep 27 18:56:48 2004 From: philippe.vanhecke at belnet.be (Philippe Van Hecke) Date: Mon, 27 Sep 2004 18:56:48 +0200 Subject: [vlc] Re: last svn version and dvb program selection problem. In-Reply-To: <200409251235.29338.philippe.vanhecke@belnet.be> References: <200409201209.34294.philippe.vanhecke@belnet.be> <20040925101845.GA27449@kikal.org> <200409251235.29338.philippe.vanhecke@belnet.be> Message-ID: <200409271856.49888.philippe.vanhecke@belnet.be> Le Samedi 25 Septembre 2004 12:35, Philippe Van Hecke a ?crit : > > Whithout any more complete log, we cannot really help you. > > > > -- > > Ok sorry, you can find log here > http://users.skynet.be/lephiloux/rtbf-sat-stream.log > I am using last svn on linux gentoo box. And the problem is that the > program number=12199 is alway selected but i want to select the program > number=3982 > > Thanks, > LePhiloux. Does more informations are needed ? Regards, LePhiloux. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From Pedro.Lorente at upc.es Tue Sep 28 09:27:13 2004 From: Pedro.Lorente at upc.es (Pedro Lorente/UPC) Date: Tue, 28 Sep 2004 09:27:13 +0200 Subject: [vlc] VLC and h261 / h263 Message-ID: Hi all, I'm trying to display a h261/h263 streaming generated by Tandberg 800, but videolan get some warnings about the mpeg ts module. How can I force the vlc for use h261 /h263 codecs for this stream?? Thanks in advance!!! Pedro Lorente -------------- next part -------------- An HTML attachment was scrubbed... URL: From gbazin at altern.org Tue Sep 28 10:40:00 2004 From: gbazin at altern.org (Gildas Bazin) Date: Tue, 28 Sep 2004 10:40:00 +0200 Subject: [vlc] Re: VLC and h261 / h263 In-Reply-To: References: Message-ID: <200409281040.01074.gbazin@altern.org> On Tuesday 28 September 2004 09:27, Pedro Lorente/UPC wrote: > Hi all, > > I'm trying to display a h261/h263 streaming generated by Tandberg 800, > but videolan get some warnings about the mpeg ts module. How can I force > the vlc for use h261 /h263 codecs for this stream?? > Unless the Tandberg 800 really produces MPEG TS streams, I doubt you'll be able to use VLC to play its streams. -- Gildas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From Claudio.Cavalera at icn.siemens.it Tue Sep 28 10:41:41 2004 From: Claudio.Cavalera at icn.siemens.it (Cavalera Claudio) Date: Tue, 28 Sep 2004 10:41:41 +0200 Subject: [vlc] H263 2000 in vlc 0-8.0-test Message-ID: >-----Original Message----- >From: Ross Finlayson [mailto:finlayson at live.com] >Sent: mercoled? 26 maggio 2004 3.16 >To: vlc at videolan.org >Subject: [vlc] Re: h263 in RTP: is h263 2000 supported? > > >At 03:35 AM 5/25/04, you wrote: >>I've come to understand that h263-2000 isn't significantly different >>from >>h263+, and vlc only needs to be told that h263-2000 is an alias for >>h263+h263+ >>for this to work. That's just a few lines of code. > >Yes, perhaps just one line of code (in "modules/demux/livedotcom.cpp"). > >The code already checks for a MIME subtype of "H263" and >"H263-1998". Adding (at the same point) a test for >"H263-2000" will likel >be sufficient. > Hello, I've seen that in the last test version of VLC this issue with H263-2000 is still present. Maybe you have just forgotten about, so here is my remind. Keep up the good work with this definitive player! :-) Regards, Claudio -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From oscarfernando.perez at gmail.com Tue Sep 28 13:10:15 2004 From: oscarfernando.perez at gmail.com (oscar perez) Date: Tue, 28 Sep 2004 14:10:15 +0300 Subject: [vlc] Problems with streaming In-Reply-To: <9ab95cb8040928023252abc0ec@mail.gmail.com> References: <9ab95cb8040928023252abc0ec@mail.gmail.com> Message-ID: <9ab95cb8040928041065f0fcc1@mail.gmail.com> Hi! I have compiled VLC but I can't use streaming. For my thesis I need to open streams from the network and display it on VLC. I don't need transcoding that's why I didn' include ffmpeg. when I try to open an stream (UDP/RTP Multicast) appears this message..: [00000384] vobsub demuxer error: this doesn't seem to be a vobsub file, bailing [00000380] main input error: no suitable demux module for `udp/://@239.252.12.1:5555' Here is my configure line..: ./configure --prefix=/usr --disable-ffmpeg --enable-debug --enable-alsa I thought that the library ffmpeg is just for transcoding but maybe I'm wrong. Can anybody tell me where is the error? Which is the proper library to demux mpeg2?? Thanks! Oscar -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Tue Sep 28 07:29:38 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Mon, 27 Sep 2004 22:29:38 -0700 (PDT) Subject: [vlc] video image distorted Message-ID: <20040928052938.50235.qmail@web41013.mail.yahoo.com> Hi, i stream my video stream from VLS 0.5.6(FreeBSD 4.10) throught Redhat Based Access Point to redhat notebook computer(vlc 0.7.0),it seem the image distorted, why? any expert can advice? [root at localhost root]# vlc VideoLAN Client 0.7.0 Bond [00000173] main input: playlist item `udp://192.168.2.4' [00000173] access_udp input error: this UDP syntax is deprecated; the server arg ument will be [00000173] access_udp input error: ignored (192.168.2.4:0). If you wanted to ent er a multicast address [00000173] access_udp input error: or local port, type : udp:@192.168.2.4:0 libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 0) [00000176] a52 decoder: A/52 channels:2 samplerate:48000 bitrate:224000 No accelerated IMDCT transform found libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 5, expected 4) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 7) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 10, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 12, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 11) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 0, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 1) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 14, expected 13) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 2, expected 0) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 9, expected 8) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 12) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 1, expected 15) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 3, expected 2) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 7, expected 6) signal 2 received, terminating vlc - do it again in case it gets stuck libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 6, expected 5) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 11, expected 10) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 15, expected 14) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 8, expected 6) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 13, expected 9) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) libdvbpsi error (PSI decoder): TS discontinuity (received 4, expected 3) user insisted too much, dying badly Aborted ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm ICQ:16994867/ Yahoo Messenger ID:ceyong /MSN Messenger:ceyong at hotmail.com _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From oscarfernando.perez at gmail.com Tue Sep 28 14:46:00 2004 From: oscarfernando.perez at gmail.com (oscar perez) Date: Tue, 28 Sep 2004 15:46:00 +0300 Subject: [vlc] Re: wmv files in VLC In-Reply-To: <4157C6BA.8030005@yes2etl.com> References: <4157C6BA.8030005@yes2etl.com> Message-ID: <9ab95cb8040928054663776dbf@mail.gmail.com> As far as I know, wmv = windows media video and the library that VLC uses for this codec is libavcodec that is inside ffmpeg. Oscar On Mon, 27 Sep 2004 13:22:26 +0530, Minal Aryamane wrote: > Can u please guide me as to which codec is needed to be downloaded to > play .wmv in VLC player? I can see the video but cannot hear the audio. > Matter most urgent. > Minal > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From john at gocoretec.com Tue Sep 28 15:35:18 2004 From: john at gocoretec.com (John Anderson) Date: Tue, 28 Sep 2004 09:35:18 -0400 Subject: [vlc] Re: video image distorted References: <20040928052938.50235.qmail@web41013.mail.yahoo.com> Message-ID: <004a01c4a55f$feecbb60$1dc8c8c8@CheesyPoof> ----- Original Message ----- From: "Yong Chu Eu (??????)" To: ; Cc: Sent: Tuesday, September 28, 2004 1:29 AM Subject: [vlc] video image distorted > Hi, i stream my video stream from VLS 0.5.6(FreeBSD 4.10) throught Redhat > Based Access Point to redhat notebook computer(vlc 0.7.0),it seem the > image distorted, why? any expert can advice? It looks like you are dropping packets. Try using a wired connection and see if the errors go away. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Tue Sep 28 18:25:50 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Tue, 28 Sep 2004 18:25:50 +0200 Subject: [vlc] Re: H263 2000 in vlc 0-8.0-test In-Reply-To: References: Message-ID: <0F537C11-116B-11D9-9E6E-0030656CFA88@videolan.org> On 28 sep 2004, at 10:41, Cavalera Claudio wrote: >> -----Original Message----- >> From: Ross Finlayson [mailto:finlayson at live.com] >> Sent: mercoled? 26 maggio 2004 3.16 >> To: vlc at videolan.org >> Subject: [vlc] Re: h263 in RTP: is h263 2000 supported? >> >> >> At 03:35 AM 5/25/04, you wrote: >>> I've come to understand that h263-2000 isn't significantly different >>> from >>> h263+, and vlc only needs to be told that h263-2000 is an alias for >>> h263+h263+ >>> for this to work. That's just a few lines of code. >> >> Yes, perhaps just one line of code (in >> "modules/demux/livedotcom.cpp"). >> >> The code already checks for a MIME subtype of "H263" and >> "H263-1998". Adding (at the same point) a test for >> "H263-2000" will likel >> be sufficient. >> > > Hello, > I've seen that in the last test version of VLC this issue with > H263-2000 is still present. > Maybe you have just forgotten about, so here is my remind. > Keep up the good work with this definitive player! :-) else if( !strcmp( sub->codecName(), "H263" ) || !strcmp( sub->codecName(), "H263-1998" ) || !strcmp( sub->codecName(), "H263-2000" ) ) Is the latest code. So it should work. Do you have a test URL ? That would truly simplify this a lot. DJ --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From hartman at videolan.org Tue Sep 28 18:31:52 2004 From: hartman at videolan.org (Derk-Jan Hartman) Date: Tue, 28 Sep 2004 18:31:52 +0200 Subject: [vlc] Re: wmv files in VLC In-Reply-To: <9ab95cb8040928054663776dbf@mail.gmail.com> References: <4157C6BA.8030005@yes2etl.com> <9ab95cb8040928054663776dbf@mail.gmail.com> Message-ID: If you cannot hear the audio than the wmv probably uses a audio codec that VLC does not support. In that case there isn't much you can do. DJ On 28 sep 2004, at 14:46, oscar perez wrote: > As far as I know, wmv = windows media video and the library that VLC > uses for this codec is libavcodec that is inside ffmpeg. > Oscar > > > On Mon, 27 Sep 2004 13:22:26 +0530, Minal Aryamane > wrote: >> Can u please guide me as to which codec is needed to be downloaded to >> play .wmv in VLC player? I can see the video but cannot hear the >> audio. >> Matter most urgent. >> Minal >> >> -- >> This is the vlc mailing-list, see http://www.videolan.org/vlc/ >> To unsubscribe, please read http://www.videolan.org/support/lists.html >> >> > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > --- Universiteit Twente Derk-Jan Hartman (d.hartman at student.utwente dot nl) http://home.student.utwente.nl/d.hartman -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From oscarfernando.perez at gmail.com Tue Sep 28 19:25:31 2004 From: oscarfernando.perez at gmail.com (oscar perez) Date: Tue, 28 Sep 2004 20:25:31 +0300 Subject: [vlc] Re: wmv files in VLC In-Reply-To: References: <4157C6BA.8030005@yes2etl.com> <9ab95cb8040928054663776dbf@mail.gmail.com> Message-ID: <9ab95cb804092810252d19bf35@mail.gmail.com> Sorry, I was in a hurry and I read this e-mail quickly and I understood the opposite. If you use windows, you can try the program Gspot to check which audio codec is using ur file.. On Tue, 28 Sep 2004 18:31:52 +0200, Derk-Jan Hartman wrote: > If you cannot hear the audio than the wmv probably uses a audio codec > that VLC does not support. > In that case there isn't much you can do. > > DJ > > > On 28 sep 2004, at 14:46, oscar perez wrote: > > > As far as I know, wmv = windows media video and the library that VLC > > uses for this codec is libavcodec that is inside ffmpeg. > > Oscar > > > > > > On Mon, 27 Sep 2004 13:22:26 +0530, Minal Aryamane > > wrote: > >> Can u please guide me as to which codec is needed to be downloaded to > >> play .wmv in VLC player? I can see the video but cannot hear the > >> audio. > >> Matter most urgent. > >> Minal > >> > >> -- > >> This is the vlc mailing-list, see http://www.videolan.org/vlc/ > >> To unsubscribe, please read http://www.videolan.org/support/lists.html > >> > >> > > > > -- > > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > > To unsubscribe, please read http://www.videolan.org/support/lists.html > > > > > --- > Universiteit Twente > Derk-Jan Hartman (d.hartman at student.utwente dot nl) > http://home.student.utwente.nl/d.hartman > > > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Wed Sep 29 07:58:38 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Tue, 28 Sep 2004 22:58:38 -0700 (PDT) Subject: [vlc] Re: [streaming] Re: video image distorted In-Reply-To: Message-ID: <20040929055838.4796.qmail@web41007.mail.yahoo.com> i tested on peer to peer(wired) between vls & vlc,everything fine & smooth. i think should be wireless envinronment problem, how to reduce the packet loss? The video stream was unicast from vls server to access point(HOSTAP) before reach vlc client. I am not test on multicast yet --- Dermot McGahon wrote: > On Tue, 28 Sep 2004 18:23:35 +0200, Benjamin PRACHT > wrote: > > > On Mon, Sep 27, 2004, Yong Chu Eu (??????) wrote : > >> Hi, i stream my video stream from VLS 0.5.6(FreeBSD 4.10) throught > >> Redhat > >> Based Access Point to redhat notebook computer(vlc 0.7.0),it seem the > >> image distorted, why? any expert can advice? > >> > > > > Well, seems that you have some huge packet loss here... > > Maybe try a smaller MTU or ideally a smaller bandwidth stream. > > > Dermot. > -- > > -- > This is the streaming mailing-list, see > http://www.videolan.org/streaming/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm ICQ:16994867/ Yahoo Messenger ID:ceyong /MSN Messenger:ceyong at hotmail.com __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From remex_cao at sjtu.edu.cn Wed Sep 29 08:30:48 2004 From: remex_cao at sjtu.edu.cn (caoxiang) Date: Wed, 29 Sep 2004 14:30:48 +0800 Subject: [vlc] unicast/multicast on ipv6 with vlc Message-ID: <20040929063153.6F1267B0116@mx1.sjtu.edu.cn> 1. I only can send/receive ipv6 stream in my local pc. While I send the stream to another pc with different ipv6 address, I cannot capture any ipv6 packet flowing out by sniffer. How could that be? 2. I even cannot receive ipv6 multicast stream in my local pc. While the multicast address is ff05::101. I have checked the "force ipv6" option and add the route "ipv6 adu ff::/8 4" by hand. btw:my os is win2k with ipv6 packet and the local pc group's ip address is 3ffe::xxxx/64. Did I miss sth to do? Thanks for any help. -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From Claudio.Cavalera at icn.siemens.it Wed Sep 29 10:54:19 2004 From: Claudio.Cavalera at icn.siemens.it (Cavalera Claudio) Date: Wed, 29 Sep 2004 10:54:19 +0200 Subject: [vlc] Re: H263 2000 in vlc 0-8.0-test Message-ID: <9F883E3916B78C4CBB80AF6FC522015302791B@cingl08a.icn.siemens.it> >> Keep up the good work with this definitive player! :-) > > else if( !strcmp( sub->codecName(), "H263" ) || > !strcmp( sub->codecName(), "H263-1998" ) || > !strcmp( sub->codecName(), "H263-2000" ) ) > >Is the latest code. So it should work. >Do you have a test URL ? >That would truly simplify this a lot. > Sorry DJ, I don't have a public test URL. However I will look further into this and let you know, maybe I just have made another mistake. :-) Regards, Claudio -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jransay at synelec.fr Wed Sep 29 15:04:53 2004 From: jransay at synelec.fr (Johann Ransay) Date: Wed, 29 Sep 2004 15:04:53 +0200 Subject: [vlc] remote command interface Message-ID: <415AB2F5.2DAF9D24@synelec.fr> Hello, Can someone tell me if and how it is possible to configure a vlc player so that it plays a stream sent over another port that the default 1234 with remote command interface, that is with startup command line option: vlc --intf rc I tried: add udp://10.2.0.230:1235 but it does not work (nothing happens) if I send the stream over the default port 1234 then the line add udp://10.2.0.230 works perfectly Any help is appreciated Johann -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From fk at aenneburghardt.de Wed Sep 29 16:41:10 2004 From: fk at aenneburghardt.de (=?ISO-8859-1?Q?Felix_K=FChne?=) Date: Wed, 29 Sep 2004 16:41:10 +0200 Subject: [vlc] Re: WM9 In-Reply-To: <001401c4a588$ad661420$0200000a@NADA> References: <001401c4a588$ad661420$0200000a@NADA> Message-ID: <9AFF1370-1225-11D9-84B3-003065C521C4@aenneburghardt.de> Hi Jonas, with the upcoming 0.8.0-release of VLC, WMV3 aka WM9 will be supported under Win32 by using a Microsoft-Framework. You can already check it out by trying the test1-beta-release of 0.8.0. On all other platforms it is not going to be supported, since no open-source codec does exist yet. We can only support it, if someone reverse-engineers the proprietary codec, which is pretty difficult. By searching our forums (forum.videolan.org), you can find a large discussion on this topic. Regards, Felix -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Wed Sep 29 16:50:44 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 29 Sep 2004 16:50:44 +0200 Subject: [vlc] Re: [streaming] Re: video image distorted In-Reply-To: <20040929055838.4796.qmail@web41007.mail.yahoo.com> References: <20040929055838.4796.qmail@web41007.mail.yahoo.com> Message-ID: <20040929145044.GA23244@kikal.org> On Tue, Sep 28, 2004, Yong Chu Eu (??????) wrote : > i tested on peer to peer(wired) between vls & vlc,everything fine & > smooth. i think should be wireless envinronment problem, how to reduce the > packet loss? The video stream was unicast from vls server to access > point(HOSTAP) before reach vlc client. I am not test on multicast yet > The only way is to redice the bitrate of the stream. You can do this by transcoding the stream. However, VLS is unable to do this, you'll need to use VLC for such streaming applications. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Wed Sep 29 16:55:50 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 29 Sep 2004 16:55:50 +0200 Subject: [vlc] Re: remote command interface In-Reply-To: <415AB2F5.2DAF9D24@synelec.fr> References: <415AB2F5.2DAF9D24@synelec.fr> Message-ID: <20040929145550.GB23244@kikal.org> On Wed, Sep 29, 2004, Johann Ransay wrote : > Hello, > > Can someone tell me if and how it is possible to configure > a vlc player so that it plays a stream sent over another port > that the default 1234 with remote command interface, that is > with startup command line option: vlc --intf rc > > I tried: > add udp://10.2.0.230:1235 > but it does not work (nothing happens) > > if I send the stream over the default port 1234 then the line > add udp://10.2.0.230 works perfectly > UDP streaming is "push" video streaming. That means that the list of clients is specified server side, and that a client cannot make any request to the server. the only thing it can do is listening on a UDP port, waiting for data to be sent. Therefore, "udp://10.2.0.230:1235" is a meaningless playlist item, and VLC prints a warning message, telling that this url won't be parsed completely. As a consequence, the default 1234 port is used. try "add udp://:1235" instead. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From lucabe72 at email.it Wed Sep 29 17:05:11 2004 From: lucabe72 at email.it (Luca Abeni) Date: 29 Sep 2004 17:05:11 +0200 Subject: [vlc] help with the clone filter Message-ID: <1096470311.25276.35.camel@labeni.mm.mbigroup.it> Hi all, I have a linux machine with 2 X servers running, and I'd like to play a video on both the two X servers using the same vlc instance (well, my final goal is to play the video in a window on the first server, and in full screen on the second one). I am wondering if I can use the clone filter for this... By using it, I am able to play the video in two windows, but they are opened on the same X server (I do not know how to open the first window on an X server and the second window on the other server). Can anyone tell me how to achieve this result? Thanks, Luca -- _____________________________________________________________________________ Copy this in your signature, if you think it is important: N O W A R ! ! ! -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jransay at synelec.fr Wed Sep 29 18:13:43 2004 From: jransay at synelec.fr (Johann Ransay) Date: Wed, 29 Sep 2004 18:13:43 +0200 Subject: [vlc] Re: remote command interface References: <415AB2F5.2DAF9D24@synelec.fr> <20040929145550.GB23244@kikal.org> Message-ID: <415ADF37.E5A1380C@synelec.fr> Benjamin PRACHT wrote: > > On Wed, Sep 29, 2004, Johann Ransay wrote : > > Hello, > > > > Can someone tell me if and how it is possible to configure > > a vlc player so that it plays a stream sent over another port > > that the default 1234 with remote command interface, that is > > with startup command line option: vlc --intf rc > > > > I tried: > > add udp://10.2.0.230:1235 > > but it does not work (nothing happens) > > > > if I send the stream over the default port 1234 then the line > > add udp://10.2.0.230 works perfectly > > > > UDP streaming is "push" video streaming. That means that the list of > clients is specified server side, and that a client cannot make any > request to the server. the only thing it can do is listening on a UDP > port, waiting for data to be sent. > > Therefore, "udp://10.2.0.230:1235" is a meaningless playlist item, and > VLC prints a warning message, telling that this url won't be parsed > completely. As a consequence, the default 1234 port is used. > > try "add udp://:1235" instead. > > -- > BigBen > I tried but it still does not work. Here is the output add udp://:1235 trying to add udp://:1235 to playlist [00000189] main playlist debug: adding playlist item `udp://:1235' ( udp://:1235 ) add: returned 0 (no error) [00000227] main private debug: prebuffering done 0 bytes in 55s - 0 kbytes/s [00000227] main private error: cannot pre fill buffer [00000224] main input warning: cannot create a stream_t from access [00000019] main module debug: unlocking module "access_udp" [00000224] main input debug: thread -1118069840 joined (src/input/input.c:290) [00000189] main playlist debug: creating new input thread [00000228] main input debug: waiting for thread completion [00000228] main input debug: `udp://:1235' gives access `udp' demux `' path `:1235' [00000228] main input debug: demux2_New: access='udp' demux='' path=':1235' [00000229] main demuxer debug: looking for access_demux module [00000228] main input debug: thread -1118069840 (input) created at priority 0 (src/input/input.c:228) [00000229] main demuxer debug: probing 0 candidates [00000229] main demuxer warning: no access_demux module matched "udp" [00000228] main input debug: access2_New: access='udp' path=':1235' [00000230] main access debug: looking for access2 module [00000230] main access debug: probing 5 candidates [00000230] access_udp access debug: opening server=:1235 local=:1234 [00000230] main access debug: net: connecting to ':1235@:1234' [00000230] main access debug: looking for network module [00000230] main access debug: probing 2 candidates [00000230] ipv4 access debug: socket buffer size is 0x1fffe instead of 0x80000 [00000141] main module debug: using network module "ipv4" [00000141] main module debug: unlocking module "ipv4" [00000019] main module debug: using access2 module "access_udp" [00000231] main private debug: pre buffering the default 1234 port is still used Johann -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Wed Sep 29 18:26:28 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Wed, 29 Sep 2004 18:26:28 +0200 Subject: [vlc] Re: remote command interface In-Reply-To: <415ADF37.E5A1380C@synelec.fr> References: <415AB2F5.2DAF9D24@synelec.fr> <20040929145550.GB23244@kikal.org> <415ADF37.E5A1380C@synelec.fr> Message-ID: <20040929162628.GA27821@kikal.org> My mistake, udp://@:1235 -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jransay at synelec.fr Wed Sep 29 18:37:26 2004 From: jransay at synelec.fr (Johann Ransay) Date: Wed, 29 Sep 2004 18:37:26 +0200 Subject: [vlc] Re: remote command interface References: <415AB2F5.2DAF9D24@synelec.fr> <20040929145550.GB23244@kikal.org> <415ADF37.E5A1380C@synelec.fr> <20040929162628.GA27821@kikal.org> Message-ID: <415AE4C6.A34163A@synelec.fr> Benjamin PRACHT wrote: > > My mistake, udp://@:1235 > > -- > BigBen > > -- the above does work with vlc-0.7.2, it seems broken with vlc-0.8.0_test1 Did you test it ? Johann -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From gbazin at altern.org Wed Sep 29 18:50:53 2004 From: gbazin at altern.org (Gildas Bazin) Date: Wed, 29 Sep 2004 18:50:53 +0200 Subject: [vlc] Re: remote command interface In-Reply-To: <415AE4C6.A34163A@synelec.fr> References: <415AB2F5.2DAF9D24@synelec.fr> <20040929162628.GA27821@kikal.org> <415AE4C6.A34163A@synelec.fr> Message-ID: <200409291850.53846.gbazin@altern.org> On Wednesday 29 September 2004 18:37, Johann Ransay wrote: > Benjamin PRACHT wrote: > > > > My mistake, udp://@:1235 > > > > -- > > BigBen > > > > -- > > the above does work with vlc-0.7.2, it seems broken with vlc-0.8.0_test1 > Did you test it ? > It might have been broken in 0.8.0-test1 but is fixed in the current version. Nightly builds available at http://www.videolan.org/~videolan/ -- Gildas -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From jransay at synelec.fr Wed Sep 29 19:07:26 2004 From: jransay at synelec.fr (Johann Ransay) Date: Wed, 29 Sep 2004 19:07:26 +0200 Subject: [vlc] Re: remote command interface References: <415AB2F5.2DAF9D24@synelec.fr> <20040929162628.GA27821@kikal.org> <415AE4C6.A34163A@synelec.fr> <200409291850.53846.gbazin@altern.org> Message-ID: <415AEBCE.26F98193@synelec.fr> Gildas Bazin wrote: > > On Wednesday 29 September 2004 18:37, Johann Ransay wrote: > > Benjamin PRACHT wrote: > > > > > > My mistake, udp://@:1235 > > > > > > -- > > > BigBen > > > > > > -- > > > > the above does work with vlc-0.7.2, it seems broken with vlc-0.8.0_test1 > > Did you test it ? > > > > It might have been broken in 0.8.0-test1 but is fixed in the current > version. > Nightly builds available at http://www.videolan.org/~videolan/ > > -- > Gildas > Thank you for your help. I built the vlc-snapshot-20040928.tar.gz and it works again Johann -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From ceyong at yahoo.com Thu Sep 30 08:41:14 2004 From: ceyong at yahoo.com (Yong Chu Eu (Ñî×ÓÓÓ)) Date: Wed, 29 Sep 2004 23:41:14 -0700 (PDT) Subject: [vlc] Re: [streaming] Re: video image distorted In-Reply-To: <20040929145044.GA23244@kikal.org> Message-ID: <20040930064114.13972.qmail@web41006.mail.yahoo.com> Just to share some experience that is, since DVD video eat a lot of bandwidth and will cause some problem on wireless envinronment so i just try on true.mpeg(from videolan.org), its work well. i will futher my testing on ipv4 & ipv6 multicast. Thanks for help from Benjamin PRACHT,Dermot McGahon,John Anderson and Fuhua Yin. Thanks ur help --- Benjamin PRACHT wrote: > On Tue, Sep 28, 2004, Yong Chu Eu (??????) wrote : > > i tested on peer to peer(wired) between vls & vlc,everything fine & > > smooth. i think should be wireless envinronment problem, how to reduce > the > > packet loss? The video stream was unicast from vls server to access > > point(HOSTAP) before reach vlc client. I am not test on multicast yet > > > > The only way is to redice the bitrate of the stream. You can do this by > transcoding the stream. However, VLS is unable to do this, you'll need > to use VLC for such streaming applications. > > -- > BigBen > > -- > This is the vlc mailing-list, see http://www.videolan.org/vlc/ > To unsubscribe, please read http://www.videolan.org/support/lists.html > > ===== ???????????????????????? Happy & Healthy Always ! ^_^ ! ???????? Homepage:http://planet.time.net.my/sunwaycity/ceyong ???????????? Buddhist Page: http://planet.time.net.my/SunwayCity/ceyong/artikel.htm ICQ:16994867/ Yahoo Messenger ID:ceyong /MSN Messenger:ceyong at hotmail.com __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From Claudio.Cavalera at icn.siemens.it Thu Sep 30 14:50:32 2004 From: Claudio.Cavalera at icn.siemens.it (Cavalera Claudio) Date: Thu, 30 Sep 2004 14:50:32 +0200 Subject: [vlc] Re: H263 2000 in vlc 0-8.0-test Message-ID: <9F883E3916B78C4CBB80AF6FC5220153027932@cingl08a.icn.siemens.it> >-----Original Message----- >From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] >On Behalf Of Derk-Jan Hartman > > else if( !strcmp( sub->codecName(), "H263" ) || > !strcmp( sub->codecName(), "H263-1998" ) || > !strcmp( sub->codecName(), "H263-2000" ) ) > >Is the latest code. So it should work. >Do you have a test URL ? I have tried the lat nightly build and it works. Good! :-) Here i past what i think is the concerning part of VLC messages: ----- livedotcom debug: RTP subsession 'video/H263-2000' livedotcom debug: RTP subsession 'audio/AMR' main debug: Selecting program id=0 main debug: using access_demux module "livedotcom" main debug: looking for decoder module main debug: probing 23 candidates ffmpeg debug: libavcodec already initialized ffmpeg debug: postprocessing disabled ffmpeg debug: using direct rendering ffmpeg debug: ffmpeg codec (H263) started main debug: using decoder module "ffmpeg" ----- Regards, Claudio -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From chevriaus at yahoo.fr Thu Sep 30 15:22:08 2004 From: chevriaus at yahoo.fr (=?iso-8859-1?q?S=E9bastien=20Chevriau?=) Date: Thu, 30 Sep 2004 15:22:08 +0200 (CEST) Subject: [vlc] Precise control of video speed... Possible ? Message-ID: <20040930132209.35521.qmail@web25206.mail.ukl.yahoo.com> Hi, I want to know if there is a way to control finely the video speed of a dvd. For example i want to send command to the app (command line way) in order that it plays now the video file in 1.57x or 0.78x or any value i want. And if it is not possible is anyone know a software able to do this ? Thanks in advance for information. Sebastien Vous manquez d?espace pour stocker vos mails ? Yahoo! Mail vous offre GRATUITEMENT 100 Mo ! Cr?ez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/ Le nouveau Yahoo! Messenger est arriv? ! D?couvrez toutes les nouveaut?s pour dialoguer instantan?ment avec vos amis. A t?l?charger gratuitement sur http://fr.messenger.yahoo.com -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From pype at gameflux.com Thu Sep 30 18:17:38 2004 From: pype at gameflux.com (PyPe) Date: Thu, 30 Sep 2004 18:17:38 +0200 Subject: [vlc] Re: besoin d'aide In-Reply-To: <5A91A6D6-120A-11D9-9A44-000A95DEC58C@mac.com> Message-ID: <5.2.0.9.0.20040930181536.019e5278@localhost> Salut, le mkv est un format d'encapsulation, si ton mkv utilise un codec non support? par vlc alors il ne pourra pas le lire. Un exemple r?cent est un mkv encod? avec le codec RV40 le dernier codec real video qui n'est pas support? par vlc. Lance vlc avec l'option --extraintf logger et regarde ce qu'il te dit lors du chargement du mkv, il te dira quel est le codec et pourquoi il ne le lit pas. bon courage ! :) At 13:26 29/09/2004 +0200, herve dekester wrote: >bonjour a vous tous >voila je me retrouve face a un mur ,en effet je me sers de vlc depuis 1an >et demie sans jamais avoir rencontrer le moindre probleme d'utilisation >aujourd'hui je possede un imac g4 1,25ghz sous os x 10.3.4 et vlc 7.2 et >je me retrouve dans l'impossibilite de lire les fichiers mkv or il est >plus ou moins dis apres des recherches sur le net que vlc en est capable >j'ai le son mais pas l'image >ceci est mon probleme et j'espere que vous allez pouvoir m'aider a le resoudre >merci d'avance pour votre aide qui me seras presieuse > herve > >-- >This is the vlc mailing-list, see http://www.videolan.org/vlc/ >To unsubscribe, please read http://www.videolan.org/support/lists.html > -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Thu Sep 30 18:39:45 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Thu, 30 Sep 2004 18:39:45 +0200 Subject: [vlc] Re: Want help to run vlc in background In-Reply-To: References: Message-ID: <20040930163945.GB28821@kikal.org> On Wed, Sep 29, 2004, E.Sasi Bhushan Reddy wrote : > Hello, > > I am working on vedio streams and i am using VLC to stream on > network under LINUX platform. I want run multiple VLCs in a single > session in background in command mode. It is possible to me to run > like this in graphics mode. > > Please help me to run multiple VLC in background from one session. > VLM would allow to stream several files from ne session. VLM sessions can be set from telnet and http interfaces. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html From bigben+spam at videolan.org Thu Sep 30 18:44:04 2004 From: bigben+spam at videolan.org (Benjamin PRACHT) Date: Thu, 30 Sep 2004 18:44:04 +0200 Subject: [vlc] Re: quicktime In-Reply-To: <006c01c4a65b$1edc3800$5b64a8c0@dt.vt.pf> References: <006c01c4a65b$1edc3800$5b64a8c0@dt.vt.pf> Message-ID: <20040930164404.GC28821@kikal.org> On Wed, Sep 29, 2004, Jean TRINKL wrote : > Mercredi 29/09/2004 > > La lecture de s?quence Quicktime d'Apple fait-elle partie des futures ?volutions ? > > A part ?a, VLC, d?j? excellent, est de plus en plus stable > This is an English speqking Mailing List, and most of the people who are reading it don't speak a word of French. Please stick to English for your questions. -- BigBen -- This is the vlc mailing-list, see http://www.videolan.org/vlc/ To unsubscribe, please read http://www.videolan.org/support/lists.html