Re: Bug#842513: vlc: immediate crash on launch on powerpc

2022-05-19 Thread Rémi Denis-Courmont
Control: tags -1 + fixed-upstream This should now be fixed in VLC master branch. I can try to backport but it won't be so straightforward. -- Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.

Re: VLC on G5 crash : illegal instruction

2021-03-14 Thread Luke Kenneth Casson Leighton
--- crowd-funded eco-conscious hardware: https://www.crowdsupply.com/eoma68 On Sun, Mar 14, 2021 at 7:34 PM Jeffrey Walton wrote: > You probably need to go to frame 1 ('f 1' under gdb) and disassemble > ('disass .' or 'disass' followed by a bunch of pages). That will show > the offending instruc

Re: VLC on G5 crash : illegal instruction

2021-03-14 Thread Jeffrey Walton
On Sun, Mar 14, 2021 at 2:57 PM Riccardo Mottola wrote: > > On 3/8/21 9:49 AM, John Paul Adrian Glaubitz wrote: > > We certainly shouldn't disable the whole JIT over a single instruction but > > rather > > check whether this instruction can be guarded on older POWER systems. > > > > But we need t

Re: VLC on G5 crash : illegal instruction

2021-03-14 Thread Riccardo Mottola
Hi, On 3/8/21 9:49 AM, John Paul Adrian Glaubitz wrote: We certainly shouldn't disable the whole JIT over a single instruction but rather check whether this instruction can be guarded on older POWER systems. But we need to find out first which instruction triggers the SIGILL. Indeed, it cras

Re: VLC on G5 crash : illegal instruction

2021-03-08 Thread Luke Kenneth Casson Leighton
On Mon, Mar 8, 2021 at 8:50 AM John Paul Adrian Glaubitz wrote: > > On 3/8/21 9:38 AM, Jeffrey Walton wrote: > >> a cursory scan shows no evidence of the use of VSX there. > > > > If needed... I believe it is possible to disable PCRE2's JIT at configure > > time. > > We certainly shouldn't disabl

Re: VLC on G5 crash : illegal instruction

2021-03-08 Thread John Paul Adrian Glaubitz
On 3/8/21 9:38 AM, Jeffrey Walton wrote: >> a cursory scan shows no evidence of the use of VSX there. > > If needed... I believe it is possible to disable PCRE2's JIT at configure > time. We certainly shouldn't disable the whole JIT over a single instruction but rather check whether this instru

Re: VLC on G5 crash : illegal instruction

2021-03-08 Thread Jeffrey Walton
On Sun, Mar 7, 2021 at 2:10 PM Luke Kenneth Casson Leighton wrote: > > On Sunday, March 7, 2021, Riccardo Mottola > wrote:. >> >> the issue is most probably in libpcre2 or Qt5Core >> >> #0 0x7fffe9c5fa30 in ?? () >> #1 0x702c406c in ?? () from >> /usr/lib/powerpc64-linux-gnu/libpc

Re: VLC on G5 crash : illegal instruction

2021-03-07 Thread Luke Kenneth Casson Leighton
On Sunday, March 7, 2021, Riccardo Mottola wrote:. > > > the issue is most probably in libpcre2 or Qt5Core > > #0 0x7fffe9c5fa30 in ?? () > #1 0x702c406c in ?? () from /usr/lib/powerpc64-linux-gnu/l > ibpcre2-16.so.0 https://vcs.pcre.org/pcre2/code/trunk/src/sljit/sljitNativePPC_c

Re: VLC on G5 crash : illegal instruction

2021-03-07 Thread John Paul Adrian Glaubitz
Hello! On 3/7/21 7:25 PM, Riccardo Mottola wrote: >> Most likely someone added VSX support to either of them without guarding the >> code with #ifdefs. > > the issue is most probably in libpcre2 or Qt5Core > > #0 0x7fffe9c5fa30 in ?? () > #1 0x702c406c in ?? () from > /usr/lib/po

Re: VLC on G5 crash : illegal instruction

2021-03-07 Thread Riccardo Mottola
Hi Adrian! On 2021-03-06 15:22:02 +0100 John Paul Adrian Glaubitz wrote: Please install the dbgsym/dbg package for VLC and ffmpeg and provide a backtrace. Most likely someone added VSX support to either of them without guarding the code with #ifdefs. the issue is most probably in

Re: VLC on G5 crash : illegal instruction

2021-03-06 Thread John Paul Adrian Glaubitz
Hello! > On Mar 6, 2021, at 2:33 PM, Riccardo Mottola > wrote: > > > I just tried VLC on a G5... it starts but as soon as I try to open a file, it > dies "inside" the file selector! Not just a file, trying to click on my home > directory, I get illegal instru

VLC on G5 crash : illegal instruction

2021-03-06 Thread Riccardo Mottola
Hi, I just tried VLC on a G5... it starts but as soon as I try to open a file, it dies "inside" the file selector! Not just a file, trying to click on my home directory, I get illegal instruction.ù If I give it a MP4 on the command line, it will come up and then die with illegal i

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-14 Thread Lennart Sorensen
On Sat, Nov 12, 2016 at 10:00:53PM +0200, Adrian Bunk wrote: > I do not understand this part. > > -maltivec should only be set for the code that is behind the runtime > feature check, so this code is only run on hardware that has AltiVec. Well a mistake in the configure script is making it set f

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-12 Thread Adrian Bunk
On Tue, Nov 08, 2016 at 03:29:43PM -0500, Lennart Sorensen wrote: >... > -CFLAGS="${CFLAGS} -maltivec" > +CFLAGS="${CFLAGS} -maltivec -fno-tree-vectorize" >... > And I realized the reason it was broken is that when using -maltivec and > -O4 (whi

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-08 Thread Lennart Sorensen
On Fri, Nov 04, 2016 at 01:33:36PM -0400, Lennart Sorensen wrote: > And of course I made a typo while copying things into the patch. > > Doing another build test of it now. > > --- vlc-2.2.4.orig/configure.ac 2016-05-31 12:11:07.00000 -0400 > +++ vlc-2.2.4/configure.a

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-04 Thread Lennart Sorensen
And of course I made a typo while copying things into the patch. Doing another build test of it now. --- vlc-2.2.4.orig/configure.ac 2016-05-31 12:11:07.0 -0400 +++ vlc-2.2.4/configure.ac 2016-11-04 12:22:02.543265439 -0400 @@ -1422,25 +1422,24 @@ VLC_SAVE_FLAGS AC_CACHE_CHECK

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-04 Thread Lennart Sorensen
Actually maybe this simpler version is better. I think I just figured out why libdeinterlace wasn't getting the altivec flags, which was that it was listed as deinterlace rather than libdeinterlace. Doing a build test of it now. --- vlc-2.2.4.orig/configure.ac 2016-05-31 12:11:07.

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-04 Thread Lennart Sorensen
t now builds correctly. If someone actually wants to test it on real hardware without altivec that would be great. Not sure I will have much luck testing it under qemu. -- Len Sorensen diff -urN --exclude Makefile.in --exclude install-sh --exclude configure vlc-2.2.4.orig/compat/dummy.c vlc-2.2.4/co

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-04 Thread Lennart Sorensen
On Fri, Nov 04, 2016 at 10:41:57AM -0400, Lennart Sorensen wrote: > Well it's not the complete solution yet. > > I have it down to only deinterlace being miscompiled (it auto vectorized > Generic* functions with altivec instructions, which is not good). > > At the moment it looks like either the

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-04 Thread Lennart Sorensen
On Fri, Nov 04, 2016 at 10:52:05AM +0100, Sebastian Ramacher wrote: > On 2016-11-03 13:58:58, Lennart Sorensen wrote: > > On Tue, Nov 01, 2016 at 01:42:17PM -0400, Lennart Sorensen wrote: > > > Well that looks like it only adds it for libvlccore. > > > > So at least something like this is needed,

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-04 Thread Sebastian Ramacher
On 2016-11-03 13:58:58, Lennart Sorensen wrote: > On Tue, Nov 01, 2016 at 01:42:17PM -0400, Lennart Sorensen wrote: > > Well that looks like it only adds it for libvlccore. > > So at least something like this is needed, but I think the VLCCORE is > wrong too, and maybe the deinterlace has to be mo

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-03 Thread Lennart Sorensen
On Tue, Nov 01, 2016 at 01:42:17PM -0400, Lennart Sorensen wrote: > Well that looks like it only adds it for libvlccore. So at least something like this is needed, but I think the VLCCORE is wrong too, and maybe the deinterlace has to be moved to only merge.c rather than all of deinterlace. --- c

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-01 Thread Lennart Sorensen
> This doesn't looks wrong to me. > > > > > > > > Note that depending on the software --enable-altivec can either mean > > > > - compile unconditionally for AltiVec, or > > > > - enable AltiVec parts with autodetection to only use them w

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-01 Thread Adrian Bunk
e that depending on the software --enable-altivec can either mean > > > - compile unconditionally for AltiVec, or > > > - enable AltiVec parts with autodetection to only use them when the > > > hardware supports it > > > > Well in VLC it means build with -

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-01 Thread Lennart Sorensen
unconditionally for AltiVec, or > > - enable AltiVec parts with autodetection to only use them when the > > hardware supports it > > Well in VLC it means build with -maltivec among other things. > > > As I already wrote, vlc contains AltiVec-specific code and autodet

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-01 Thread Lennart Sorensen
hen the > hardware supports it Well in VLC it means build with -maltivec among other things. > As I already wrote, vlc contains AltiVec-specific code and autodetection > for using it only when the hardware supports it. > > This should be enabled on all ppc ports, except the SPE one

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-01 Thread Adrian Bunk
FLAGS="$ALTIVEC_FLAGS ${ac_cv_c_altivec} > > ${ac_cv_c_altivec_abi}" > > VLC_ADD_CFLAGS([deinterlace],[${ac_cv_c_altivec} > > ${ac_cv_c_altivec_abi}]) > > > > It is correct that this adds -maltivec to AltiVec-specific code, > > and vlc has proper

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-01 Thread luigi burdo
hi all just to notice kodi on e5500 2 ghz play without problems and without frame dropping mkv & mp4 at 1080p without vdpau accelerations. i suggest to use kodi if vlc crash fo altivec. Luigi Da: Lennart Sorensen Inviato: martedì 1 novembre 2016 14.

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-11-01 Thread Lennart Sorensen
DD_CFLAGS([deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}]) > > It is correct that this adds -maltivec to AltiVec-specific code, > and vlc has proper autodetection to run this only when AltiVec > is actually present. > > The VLC_ADD_CFLAGS here look just wrong - it is no

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-10-31 Thread Adrian Bunk
Control: retitle -1 vlc: configure.ac altivec setting broken On Sun, Oct 30, 2016 at 11:40:50AM +, James Cowgill wrote: >... > On 30/10/16 00:16, Robert Ou wrote: > > On Sat, Oct 29, 2016 at 3:43 PM, James Cowgill wrote: > >> Control: tags -1 help > >> Control:

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-10-30 Thread James Cowgill
Control: tags -1 - help Control: severity -1 important Control: retitle -1 vlc: should prevent installation on powerpc G3 Hi, On 30/10/16 00:16, Robert Ou wrote: > On Sat, Oct 29, 2016 at 3:43 PM, James Cowgill wrote: >> Control: tags -1 help >> Control: severity -1 grave >&g

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-10-29 Thread Robert Ou
gt;> I decided I wanted to test the performance of Debian PowerPC on my >> ancient iMac, and I discovered that vlc will immediately crash with an >> illegal instruction right after showing the "Privacy and Network Access >> Policy" window and before showing the main

Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-10-29 Thread James Cowgill
Control: tags -1 help Control: severity -1 grave Hi, On 29/10/16 23:00, Robert Ou wrote: > Package: src:vlc > Version: 2.2.4-7 > Severity: normal > > Dear Maintainer, > > I decided I wanted to test the performance of Debian PowerPC on my > ancient iMac, and I

vlc zsh completion generation on powerpc

2016-02-03 Thread Sebastian Ramacher
Hi, during the build of vlc a zsh completion file is generated. This works everywhere except when built for powerpc on praetorius [1]. Since I cannot reproduce the issue on any of ther porter boxes it be nice if someone with a similar machine could help me debug this issue. The steps to

Re: vlc built with --disable-altivec works where the sid one does not - iMac G3

2011-06-29 Thread Stefan Pfetzing
Hi Bastian, Am 29.06.2011 14:54 schrieb Bastian Blank: > On Wed, Jun 29, 2011 at 09:14:23AM -0300, Gunther Furtado wrote: >> and vlc was playing and streaming (what I really want it to do) video >> again. Then I tried: >> $ ./configure --disable-altivec >> and every

Re: vlc built with --disable-altivec works where the sid one does not - iMac G3

2011-06-29 Thread Bastian Blank
On Wed, Jun 29, 2011 at 09:14:23AM -0300, Gunther Furtado wrote: > and vlc was playing and streaming (what I really want it to do) video > again. Then I tried: > $ ./configure --disable-altivec > and everything still works! > > My hardware is an iMac G3 - 333MHz > # cat /proc

vlc built with --disable-altivec works where the sid one does not - iMac G3

2011-06-29 Thread Gunther Furtado
Hi, Since after vlc 0.8.6 it didn't play any video file yielding "Illegal Instruction", audio only files were playing OK. From time to time I tried to build from source with no luck for one reason or another until last weekend when I ran: # aptitude build-dep vlc after some ver

Re: vlc on ppc

2010-01-05 Thread Elimar Riesebieter
* Elimar Riesebieter [100104 21:00 +0100] > > Hi, > > I try to play a dvd with "VLC media player 1.0.4 Goldeneye". > > I get the following error message: > [...] > libdvdread: Invalid main menu IFO (VIDEO_TS.IFO), ifoRead_FP_PGC() failed. [...] I've r

vlc on ppc

2010-01-04 Thread Elimar Riesebieter
Hi, I try to play a dvd with "VLC media player 1.0.4 Goldeneye". I get the following error message: libdvdnav: Using dvdnav version 4.1.3 libdvdread: Using libdvdcss version 1.2.10 for DVD access libdvdnav: DVD Title: JB RAH DVD 1 libdvdnav: DVD Serial Number: ce47e947 libdvdnav:

Re: mplayer as a stream server [was: Re: VLC Illegal Instruction]

2009-04-29 Thread Rafal Czlonka
Wolfgang Pfeiffer wrote: > Looks like the documentation at least, for vlc, in the regard as > mentioned, is better than for mplayer. But there actually seems to be > a stream server in the mplayer sources. Excerpt from > > ./mplayer-checkout-2009-04-29/TOOLS/README: > [cut] >

mplayer as a stream server [was: Re: VLC Illegal Instruction]

2009-04-29 Thread Wolfgang Pfeiffer
Hi all I start a new thread as the topic on the original one is becoming off-topic: On Wed, Apr 29, 2009 at 11:27:05AM +0100, Rafal Czlonka wrote: > Wolfgang Pfeiffer wrote: > > > AFAIK, mplayer cannot stream audio and video like vlc does. That is why I > > > use it. &g

Re: VLC Illegal Instruction

2009-04-29 Thread Gunther Furtado
2009/4/29 Rafal Czlonka : > Wolfgang Pfeiffer wrote: >> > AFAIK, mplayer cannot stream audio and video like vlc does. That is why I >> > use it. >> >> Not quite sure, Gunter, what exactly you mean with "stream audio and video", >> but I think t

Re: VLC Illegal Instruction

2009-04-29 Thread Rafal Czlonka
Wolfgang Pfeiffer wrote: > > AFAIK, mplayer cannot stream audio and video like vlc does. That is why I > > use it. > > Not quite sure, Gunter, what exactly you mean with "stream audio and video", > but I think this was a good one :) Stream, not

Re: VLC Illegal Instruction

2009-04-29 Thread Wolfgang Pfeiffer
On Sun, Apr 26, 2009 at 01:35:15PM -0300, Gunther Furtado wrote: > domingo, 26 de abril de 2009, > Rogério Brito escreveu: > > >Hi, Gunter. > > > >On Apr 05 2009, Gunther Furtado wrote: > >> I am getting a lot of Illegal Instruction complains from VLC >

Re: VLC Illegal Instruction

2009-04-26 Thread Gunther Furtado
domingo, 26 de abril de 2009, Rogério Brito escreveu: >Hi, Gunter. > >On Apr 05 2009, Gunther Furtado wrote: >> I am getting a lot of Illegal Instruction complains from VLC >> (whenever I ask it to show me video). > >You should already know this, but it sounds like

Re: VLC Illegal Instruction

2009-04-25 Thread Rogério Brito
Hi, Gunter. On Apr 05 2009, Gunther Furtado wrote: > I am getting a lot of Illegal Instruction complains from VLC (whenever > I ask it to show me video). You should already know this, but it sounds like an altivec enabled program running in a non-altivec enabled machine. I'm not use

Re: libvlccore0: VLC shuts down with "Illegal Instruction" warning opening any media

2009-04-25 Thread Rogério Brito
Hi again, Gunther. On Apr 10 2009, Gunther Furtado wrote: > The forwarded message bellow reports the current situations. Just to > inform the G3 users. Oops. That's the trouble of being late to the list. :-) > >From: http://en.wikipedia.org/wiki/Altivec Think of altivec as mmx or sse* or 3dnow

Re: libvlccore0: VLC shuts down with "Illegal Instruction" warning opening any media

2009-04-10 Thread Gunther Furtado
terça, 07 de abril de 2009, Gunther Furtado escreveu: >Subject: libvlccore0: VLC shuts down with "Illegal Instruction" [...] >whenever I try to open any kind of media VLS shuts down with nothing >but an "Illegal Instruction" >notice. The forwarded message bello

Re: libvlccore0: VLC shuts down with "Illegal Instruction" warning opening any media

2009-04-08 Thread Gunther Furtado
quarta, 08 de abril de 2009, Michel Dänzer escreveu: >On Tue, 2009-04-07 at 19:49 -0300, Gunther Furtado wrote: >> Subject: libvlccore0: VLC shuts down with "Illegal Instruction" >> warning opening any media >> Package: libvlccore0 >> Version: 0.9.8a-3 >

Re: libvlccore0: VLC shuts down with "Illegal Instruction" warning opening any media

2009-04-08 Thread Michel Dänzer
On Tue, 2009-04-07 at 19:49 -0300, Gunther Furtado wrote: > Subject: libvlccore0: VLC shuts down with "Illegal Instruction" > warning opening any media > Package: libvlccore0 > Version: 0.9.8a-3 > Severity: important > > *** Please type your report below this l

libvlccore0: VLC shuts down with "Illegal Instruction" warning opening any media

2009-04-07 Thread Gunther Furtado
Subject: libvlccore0: VLC shuts down with "Illegal Instruction" warning opening any media Package: libvlccore0 Version: 0.9.8a-3 Severity: important *** Please type your report below this line *** Hi, whenever I try to open any kind of media VLS shuts down with nothing but a

Re: VLC Illegal Instruction

2009-04-05 Thread Michel Dänzer
On Sun, 2009-04-05 at 22:48 -0300, Gunther Furtado wrote: > Hi, > > I am getting a lot of Illegal Instruction complains from VLC (whenever > I ask it to show me video). > > dbg tells me: > > start > LC media player 0.9.8a Grishenko > [New Thread 0x48021f20 (LW

VLC Illegal Instruction

2009-04-05 Thread Gunther Furtado
Hi, I am getting a lot of Illegal Instruction complains from VLC (whenever I ask it to show me video). dbg tells me: start LC media player 0.9.8a Grishenko [New Thread 0x48021f20 (LWP 6467)] Program received signal SIGILL, Illegal instruction. [Switching to Thread 0x48021f20 (LWP 6467

Re: VLC playing nearly nothing [Thanks ... :) .. ]

2007-02-16 Thread Wolfgang Pfeiffer
On Fri, Feb 16 2007, at 22:46 +0100, Wolfgang Pfeiffer wrote: > : ) ...] > X-Spoken-Languages: en, de > X-URL: http://www.wolfgangpfeiffer.com > User-Agent: Mutt/1.5.13 (2006-08-11) Sorry for the crap above ... somehow I even manage to screw up mail headers ... :) Regards Wolfgang -- Wolfgang P

Re: VLC playing nearly nothing [Thanks ... :) .. ]

2007-02-16 Thread Wolfgang Pfeiffer
acidrip 0.14-0.0 ii mplayer 1.0~rc1-12 ii mplayer-skin-blue1.6-1 - Thanks a lot Johannes ... Let's see whether I still need vlc ... :) Nice weekend to everyone ... :) Best Regards Wolfgang

Re: VLC playing nearly nothing

2007-02-16 Thread Johannes Berg
On Fri, 2007-02-16 at 21:34 +0100, Wolfgang Pfeiffer wrote: > ii acidrip 0.14-0.0 > rc mplayer 1.0~rc1-3 > ii mplayer-g4 1.0-pre8-0.1 > ii mplayer-skin-blue 1.6-1 install "mplayer" instead of "mplayer-g4", the latter is from the deb http://honk.sigxcpu.org/l

Re: VLC playing nearly nothing

2007-02-16 Thread Børge Holen
On Friday 16 February 2007 21:34, Wolfgang Pfeiffer wrote: > Hi, Børge > > Thanks for responding ... > > On Fri, Feb 16 2007, at 20:00 +0100, Børge Holen wrote: > > I never got the version of VLC you are using. Neither mplayer for that > > part. > > > > I rar

Re: VLC playing nearly nothing

2007-02-16 Thread Wolfgang Pfeiffer
Hi, Børge Thanks for responding ... On Fri, Feb 16 2007, at 20:00 +0100, Børge Holen wrote: > I never got the version of VLC you are using. Neither mplayer for that part. > > I rarely use VLC, but mplayer chews close to anything I throw at > it. True, but *here* it didn't e

Re: VLC playing nearly nothing

2007-02-16 Thread Børge Holen
I never got the version of VLC you are using. Neither mplayer for that part. I rarely use VLC, but mplayer chews close to anything I throw at it. The latest versions got the wmv thing builtin. But in yer case it is hard to say since you did not submit any info. This goes for both those

Re: VLC playing nearly nothing

2007-02-16 Thread Wolfgang Pfeiffer
mplayer and help fix vlc ... The hardware here: $ cat /proc/cpuinfo processor : 0 cpu : 7447A, altivec supported clock : 833.333000MHz revision: 0.5 (pvr 8003 0105) bogomips: 16.57 timebase:

Re: VLC playing nearly nothing

2007-02-16 Thread Ananda Samaddar
t;[EMAIL PROTECTED]> wrote: > Hi Ananda > > Thanks for responding so fast ... > > On Fri, Feb 16 2007, at 14:27 +, Ananda Samaddar wrote: > > > I'm having the same problems with VLC in Etch. I'd recommend > > MPlayer instead. MPlayer plays everyt

Re: VLC playing nearly nothing

2007-02-16 Thread Wolfgang Pfeiffer
Hi Ananda Thanks for responding so fast ... On Fri, Feb 16 2007, at 14:27 +, Ananda Samaddar wrote: > I'm having the same problems with VLC in Etch. I'd recommend > MPlayer instead. MPlayer plays everything. Not here: I always had, and still have probs getting mplayer

Re: VLC playing nearly nothing

2007-02-16 Thread Ananda Samaddar
I'm having the same problems with VLC in Etch. I'd recommend MPlayer instead. MPlayer plays everything. You might need to set the correct video and audio out in the options though. Ananda On Fri, 16 Feb 2007 15:18:05 +0100 Wolfgang Pfeiffer <[EMAIL PROTECTED]> wrote: >

VLC playing nearly nothing

2007-02-16 Thread Wolfgang Pfeiffer
Hi All Firstly a Sorry for this long email ... Debian unstable here. Very fresh packages. $ uname -a Linux debby1-6 2.6.18-rc4-060811-dirty #1 Fri Aug 11 00:16:22 CEST 2006 ppc GNU/Linux I installed vlc some weeks/months ago, and it worked fantastically: It played even movie files (wmv3

Re: unable to install Mozilla-vlc plugin

2007-01-20 Thread Eddy Petrișor
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Eddy Petrișor wrote: > brian wrote: >> --- Steffen Thoss <[EMAIL PROTECTED]> wrote: > >>> Hi ! >>> >>> I'm trying to install the mozilla vlc plugin for my >>> Debian unstable on >>&g

Re: unable to install Mozilla-vlc plugin

2007-01-20 Thread Eddy Petrișor
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 brian wrote: > --- Steffen Thoss <[EMAIL PROTECTED]> wrote: > >> Hi ! >> >> I'm trying to install the mozilla vlc plugin for my >> Debian unstable on >> my PowerBook to play some streaming video with &g

Re: unable to install Mozilla-vlc plugin

2007-01-19 Thread brian
--- Steffen Thoss <[EMAIL PROTECTED]> wrote: > Hi ! > > I'm trying to install the mozilla vlc plugin for my > Debian unstable on > my PowerBook to play some streaming video with > Firefox. > I always get the following message: > > takeda:~# apt-get instal

unable to install Mozilla-vlc plugin

2007-01-13 Thread Steffen Thoss
Hi ! I'm trying to install the mozilla vlc plugin for my Debian unstable on my PowerBook to play some streaming video with Firefox. I always get the following message: takeda:~# apt-get install mozilla-plugin-vlc Reading package lists... Done Building dependency tree... Done Some pac

Re: vlc

2006-04-26 Thread Michelle Konzack
DVD as iso9660 with wmmount and there was an open Midnight Commander. Then I have started VLC and it was reading the DVD showing the Video. Greetings Michelle Konzack -- Linux-User #280138 with the Linux Counter, http://counter.li.org/ # Debian GNU/Linux Consultant ##

Re: vlc

2006-04-22 Thread caleb storms
ok after playing with some and manually putting my cd drive in vlcrc i get this VLC media player 0.8.4 Janus libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net libdvdread: Encrypted DVD support unavailable. libdvdread: Can't stat /aÃxbOG No such file or directory libdvdnav: vm: fai

Re: vlc

2006-04-22 Thread Michael Schmitz
> > Try to set the correct device for the DVD drive - hda is your hard disk, > > the DVD ought to be on hdc then. > > He want to read a AVI or MPG from the Hardisk! I figured. > But choosen the wrong menu (File => Open Medium => Volume) > instead of (File => Open File) That's even possible for a

Re: vlc

2006-04-21 Thread Michelle Konzack
Am 2006-04-15 11:16:34, schrieb Michael Schmitz: > > VLC media player 0.8.4a Janus > > libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net > > libdvdread: Encrypted DVD support unavailable. > > libdvdread: Attempting to use device /dev/hda14 mounted on / fo

Re: vlc

2006-04-21 Thread Michelle Konzack
Am 2006-04-14 23:55:13, schrieb caleb storms: > ok, on my ongoing search for better video i managed to get vlc installed > from source however, now i get basicly the same kind of error i got > before all that. This is what i'm getting when trying to play any file > from my hard

Re: vlc

2006-04-18 Thread Michael Schmitz
or me here - I've only tried .mov format from iMovie though. Maybe vlc defaults to dvd if the file you feed it is in some unknown format? Michael -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: vlc

2006-04-15 Thread caleb storms
hey, i did not have libdvdcss2 installed so i ran /usr/share/doc/libdvdread3/examples/install-css.sh same problem i then ran dpkg-reconfigure vlc still no change. thanks caleb On Sat, 2006-04-15 at 19:48 +0200, Alexander Schmehl wrote: > Hi! > > * caleb storms <[EMAIL PROTECTED]>

Re: vlc

2006-04-15 Thread Alexander Schmehl
Hi! * caleb storms <[EMAIL PROTECTED]> [060415 05:55]: > ok, on my ongoing search for better video i managed to get vlc installed > from source however, now i get basicly the same kind of error i got > before all that. This is what i'm getting when trying to play any file &

Re: vlc

2006-04-15 Thread caleb storms
chael Schmitz wrote: > > VLC media player 0.8.4a Janus > > libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net > > libdvdread: Encrypted DVD support unavailable. > > libdvdread: Attempting to use device /dev/hda14 mounted on / for CSS > > authentication > &

Re: vlc

2006-04-15 Thread owczi
I have no problems with watching dvds via vlc on my pismo (they're choppy though, but they just are and I have to cope with it). > libdvdread: Attempting to use device /dev/hda14 mounted on / for CSS authentication > libdvdread: Could not open input: Permission denied > libdvdre

Re: vlc

2006-04-15 Thread Michael Schmitz
> VLC media player 0.8.4a Janus > libdvdnav: Using dvdnav version 0.1.9 from http://dvd.sf.net > libdvdread: Encrypted DVD support unavailable. > libdvdread: Attempting to use device /dev/hda14 mounted on / for CSS > authentication Try to set the correct device for the DVD driv

vlc

2006-04-14 Thread caleb storms
ok, on my ongoing search for better video i managed to get vlc installed from source however, now i get basicly the same kind of error i got before all that. This is what i'm getting when trying to play any file from my hardrive be it avi or mpg VLC media player 0.8.4a Janus libdvdnav:

Re: VLC Illegal instruction

2004-07-26 Thread Vincent Bernat
OoO En cette aube naissante du lundi 26 juillet 2004, vers 07:34, Lorenzo <[EMAIL PROTECTED]> disait: > I have this problem since I installed Sarge. with all version of VLC there is > the output: > VLC media player 0.7.2 Bond > Illegal instruction This will be fixed so

VLC Illegal instruction

2004-07-25 Thread Lorenzo
I have this problem since I installed Sarge. with all version of VLC there is the output: VLC media player 0.7.2 Bond Illegal instruction My platform: PegasosII G3 Debian Sid - kernel 2.6.7 Thanks -- BOFH excuse #413: Cow-tippers tipped a cow onto the server.

Re: vlc isn't playing sound

2003-09-30 Thread J. Javier Maestro
works perfectly well. > > > But I'd like to play a movie which is in .cue .bin -format. > > > To do so I'd like to use vlc. But vlc doesn't wants to play any sound. > > > > Qhich sound server do you use? > > esound I guess what you need the

Re: vlc isn't playing sound

2003-09-30 Thread Markus Frauenfelder
is in .cue .bin -format. > > To do so I'd like to use vlc. But vlc doesn't wants to play any sound. > > Qhich sound server do you use? esound

Re: vlc isn't playing sound

2003-09-29 Thread J. Javier Maestro
On Sep Tue 30 2003 00:27, Markus Frauenfelder wrote: > Hi folks > > I'm working with gnome2 and my sound-server starts at login. > xine works perfectly well. > But I'd like to play a movie which is in .cue .bin -format. > To do so I'd like to use vlc. But vl

vlc isn't playing sound

2003-09-29 Thread Markus Frauenfelder
Hi folks I'm working with gnome2 and my sound-server starts at login. xine works perfectly well. But I'd like to play a movie which is in .cue .bin -format. To do so I'd like to use vlc. But vlc doesn't wants to play any sound. How can I watch a movie which is in .cue

Re: vlc 0.3.0 and Altivec

2002-04-10 Thread benh
>I have an ibook2, 500 MHz. Now, I thought that the G3 didn't have >Altivec, and I am running 2.4.19-pre6-ben0 >from ppckernel.org. > >So, is this vlc wrongly detecting my CPU having Altivec or the kernel not >being correctly compiled ? >I thought I might post here firs

Re: vlc 0.3.0 and Altivec

2002-04-09 Thread Viral
On Mon, Apr 08, 2002 at 11:25:37PM +0200, Michel Lanners wrote: > Videolan has released vlc 0.3.0, with _lots_ of performance > improvements. I am now able to play back DVD's on my TiBook/400 with > around 70% cpu useage, with only around 1% dropped frames (before, I had > 100%

vlc 0.3.0 available

2002-04-09 Thread Michel Lanners
Hi all, Videolan has released vlc 0.3.0, with _lots_ of performance improvements. I am now able to play back DVD's on my TiBook/400 with around 70% cpu useage, with only around 1% dropped frames (before, I had 100% cpu and 30% frame drops). Sound has some issues, though; OSS gives choppd

Re: vlc 0.2.92-4

2002-01-02 Thread Michel Dänzer
On Wed, 2002-01-02 at 15:07, Jack Howarth wrote: >Is anyone else seeing crashes in vlc 0.2.92-4 when you play a > dvd on ppc? The previous 0.2.92-1 through -3 source packages wouldn't > build on my ppc machine because of some changes for MacOS X which > introduced a

vlc 0.2.92-4

2002-01-02 Thread Jack Howarth
Is anyone else seeing crashes in vlc 0.2.92-4 when you play a dvd on ppc? The previous 0.2.92-1 through -3 source packages wouldn't build on my ppc machine because of some changes for MacOS X which introduced a vand altivec asm instruction our devtools doesn't support. Locally I had

Re: New Altivec-enabled vlc available

2001-10-12 Thread Sven
On Thu, Oct 11, 2001 at 12:34:37PM -0700, Jeffrey W. Baker wrote: > > > On 11 Oct 2001, Michel Dänzer wrote: > > > On Sun, 2001-10-07 at 16:35, Michel Lanners wrote: > > > > > I've uploaded a new Altivec-enabled version of vlc (built from the > >

Re: New Altivec-enabled vlc available

2001-10-11 Thread Michel Dänzer
On Thu, 2001-10-11 at 21:34, Jeffrey W. Baker wrote: > Are there any debs in sid with support for playing CSS-encrypted > disks? I couldn't find any in non-us or non-free. There aren't for legal reasons. I understand vlc will use libdvdcss if available though. -- Earthli

Re: New Altivec-enabled vlc available

2001-10-11 Thread Jeffrey W. Baker
On 11 Oct 2001, Michel Dänzer wrote: > On Sun, 2001-10-07 at 16:35, Michel Lanners wrote: > > > I've uploaded a new Altivec-enabled version of vlc (built from the > > 20011004 snapshot). It is available here: > > > > http://www.cpu.lu/~mlan/ftp/debian/vlc-snap

Re: New Altivec-enabled vlc available

2001-10-11 Thread Michel Dänzer
On Sun, 2001-10-07 at 16:35, Michel Lanners wrote: > I've uploaded a new Altivec-enabled version of vlc (built from the > 20011004 snapshot). It is available here: > > http://www.cpu.lu/~mlan/ftp/debian/vlc-snapshot-20011004 > > Sorry, single files only. Once I figur

Re: New Altivec-enabled vlc available

2001-10-09 Thread Michel Lanners
On 8 Oct, this message from David Schleef echoed through cyberspace: > On Mon, Oct 08, 2001 at 08:08:27AM -0700, Jeffrey W. Baker wrote: >> On Sun, 7 Oct 2001, Michel Lanners wrote: >> >> > Hi all, >> > >> > I've uploaded a new Altivec-enabl

Re: New Altivec-enabled vlc available

2001-10-08 Thread David Schleef
On Mon, Oct 08, 2001 at 08:08:27AM -0700, Jeffrey W. Baker wrote: > On Sun, 7 Oct 2001, Michel Lanners wrote: > > > Hi all, > > > > I've uploaded a new Altivec-enabled version of vlc (built from the > > 20011004 snapshot). It is available here: > > Wow yo

Re: New Altivec-enabled vlc available

2001-10-08 Thread Jeffrey W. Baker
On Sun, 7 Oct 2001, Michel Lanners wrote: > Hi all, > > I've uploaded a new Altivec-enabled version of vlc (built from the > 20011004 snapshot). It is available here: Wow you are a genius :):):) How did you manage to get those nasty old Altivec tools to work on a recent Lin

Re: New Altivec-enabled vlc available

2001-10-07 Thread Michel Dänzer
On Sun, 2001-10-07 at 16:35, Michel Lanners wrote: > I've uploaded a new Altivec-enabled version of vlc (built from the > 20011004 snapshot). It is available here: > > http://www.cpu.lu/~mlan/ftp/debian/vlc-snapshot-20011004 > > Sorry, single files only. Once I figur

New Altivec-enabled vlc available

2001-10-07 Thread Michel Lanners
Hi all, I've uploaded a new Altivec-enabled version of vlc (built from the 20011004 snapshot). It is available here: http://www.cpu.lu/~mlan/ftp/debian/vlc-snapshot-20011004 Sorry, single files only. Once I figure out how to make a apt-get'able repository I'll clean up. This ve

  1   2   >