| Author |
Message |
J_Rey

Joined: 04 May 2005 Posts: 276 Location: Northwest Florida, U.S.A.
|
Posted: Sat 30 Jul 2005, 20:33 Post_subject:
Update Gxine to 0.4.6 (Updated) |
|
I noticed on the Puppy Linux news page on the entry for 29 March 2005 that the reason why Gxine hasn't been updated to the latest version was that Puppy was "using the GTK 2.2 libraries and the latest Gxine needs GTK 2.4." But with the notes for Puppy Linux 1.0.4 (19 July 2005) it is mentioned that "the GTK2 libraries have been upgraded from 2.2 to 2.4." As of today, the latest version of gxine is 0.4.6. I suggest we upgrade soon, then we can have full screen video and less bugs. Also, maybe using the plugin could be reconsidered so we can see video embedded in web pages. Thanks!
Edited_time_total
|
|
Back to top
|
|
 |
klhrevolutionist

Joined: 08 Jun 2005 Posts: 1124
|
Posted: Sat 30 Jul 2005, 22:38 Post_subject:
I like it |
|
if it sounds good do it!!!
I second that idea, but only if more
features are brought, if there's nothing to holler about don't do it,
you know other distros don't take
full advantage of gxine,
it is one part of puppy I like the
most
_________________ Heaven is on the way, until then let's get the truth out!
|
|
Back to top
|
|
 |
Lobster
Official Crustacean

Joined: 04 May 2005 Posts: 15109 Location: Paradox Realm
|
Posted: Sat 30 Jul 2005, 23:51 Post_subject:
|
|
I tried watching a DVD the other day - first tried Puppy but the voice was out of synch with the image.
Then tried Ubuntu
- nothing
then Knoppix 3.9
- nothing
So Puppy was the nearest, simple solution (sure I could get the other two working with time and . . . time)
Yes I could download Mplayer and fiddle and . . . in the end watched it on a DVD player. After all I want to watch the movie - not fix the projector.
- place in DVD and run (easy to say)
_________________ Puppy WIKI
|
|
Back to top
|
|
 |
J_Rey

Joined: 04 May 2005 Posts: 276 Location: Northwest Florida, U.S.A.
|
Posted: Tue 30 Aug 2005, 11:27 Post_subject:
|
|
Well, just because you don't get a reply (from Barry) on these forums doesn't mean that you're being ignored. The annnouncement that Gxine has been upgraded to 0.4.6 is on the news page under 19 August 2005. I tried it out with the Puppy 1.0.5a2 release yesterday. Looks better!
|
|
Back to top
|
|
 |
Lobster
Official Crustacean

Joined: 04 May 2005 Posts: 15109 Location: Paradox Realm
|
Posted: Tue 30 Aug 2005, 12:36 Post_subject:
|
|
Yes indeed
The upgraded Gxine I tried in Alpha 1.0.5 r2 was much better (there was slight clipping) - combine this with ALSA sound and we may be closer to put DVD in and play.
I am hoping that the inclusion of the C compiler will encourage some Pups to compile for Pentium class processors (Barry compiles for 386) will this make a difference to speed on more up to date computers?
_________________ Puppy WIKI
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Wed 14 Sep 2005, 22:14 Post_subject:
|
|
| Lobster wrote: | | The upgraded Gxine |
I have looked on the Forum, Wiki, PupGet, and DotPup pages and have been unable to locate an upgrade to gxine.
Is there one or should i just grab the generic from the gxine site and run it?
Thanks! doc
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
Lobster
Official Crustacean

Joined: 04 May 2005 Posts: 15109 Location: Paradox Realm
|
Posted: Wed 14 Sep 2005, 22:25 Post_subject:
|
|
It will be in 1.0.5 a release candidate (Beta) is to be released soon it will be in that. Keep an eye on the announcements in this forum and News pages on Barrys site puppylinux.com
_________________ Puppy WIKI
|
|
Back to top
|
|
 |
GuestToo
Puppy Master
Joined: 04 May 2005 Posts: 4078
|
Posted: Wed 14 Sep 2005, 23:48 Post_subject:
|
|
i tried compiling the latest gxine 0.4.8
it also crashes when switched to full screen, same as 0.4.7 and 0.4.6
if you hit the F key to switch to full screen just before the movie starts playing, it will play full screen without crashing
if you start gxine without the demuxer plugin
(append #demux:cdda to the mrl)
it doesn't crash
(of course you can't play anything without the demuxer)
http://snipurl.com/hovw
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Thu 15 Sep 2005, 23:40 Post_subject:
|
|
| Lobster wrote: | | It will be in 1.0.5 a release candidate (Beta) is to be released soon it will be in that. Keep an eye on the announcements in this forum and News pages on Barrys site puppylinux.com |
Two questions:
1. Is there a pup for gxine or any of the more recent gxine releases that may be successfully applied to 1.0.4? (Accepting the full screen bug.)
2. Can you define "soon" re. 1.0.5 beta release (hours, days, months) ? (If longer than days I'd like to toy with a recent alpha, I have 1.0.5alpha2 but haven't burned it to CD yet awaiting a reply to my question if it is the most recent alpha or if a more advanced alpha is anywhere.)
Thanks! doc
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
MU

Joined: 24 Aug 2005 Posts: 13642 Location: Karlsruhe, Germany
|
Posted: Thu 15 Sep 2005, 23:57 Post_subject:
|
|
You might search the function in the source, that is called, when you switch to fullscreen-mode.
Then add as first line in this function:
| Code: | // avoid badwindow-errors
int (*myold_handler) (Display *, XErrorEvent *);
myold_handler= XSetErrorHandler (ignore_error);
|
Additionally, you must add this new function:
| Code: |
static int
ignore_error (Display *d, XErrorEvent *e)
{
return 0;
}
|
But there is no guarantee it will work.
The Xwindow-system sometimes seems to throw errors, even when they could be warnings, the programs still could continue fine.
But of course, if there is a design-error in the xine-code itself, this method will not help.
Mark
|
|
Back to top
|
|
 |
J_Rey

Joined: 04 May 2005 Posts: 276 Location: Northwest Florida, U.S.A.
|
Posted: Fri 16 Sep 2005, 22:30 Post_subject:
|
|
I would assume that one would need to compile the source with the above changes to notice a difference.
| edoc wrote: |
Two questions:
|
Two answers:
1. There is a PupGet package for Gxine 0.4.6. I suppose someone will make new DotPups eventually. It looks like there is an updated version of xine (libs & stuff) available as a PupGet, also.
2. The Puppy 1.0.5 release candidate (AKA post-beta release) was just released! The Wiki News page has a screenshot that shows Gxine 0.4.6 running in the background.
BTW, there is another topic with more discussion about the bugs with Gxine.
|
|
Back to top
|
|
 |
MU

Joined: 24 Aug 2005 Posts: 13642 Location: Karlsruhe, Germany
|
Posted: Fri 16 Sep 2005, 22:42 Post_subject:
|
|
yes, of course it has to be compiled
But GuestToo just releasted a Gxine 4.8.0-dotpup:
http://www.murga.org/%7Epuppy/viewtopic.php?t=2294
Mark
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Sat 17 Sep 2005, 00:30 Post_subject:
|
|
gcombust is making a nuisance of itself. Doesn't want to play nice with my laptop dvd-cdrw drive.
Puppy hardware app tells me that my drive is at /dev/hdc but gcombust didn't like that so I went to the following and all I see is this:
# cdrecord -scanbus
Cdrecord-Clone 2.01 (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
Linux sg driver version: 3.1.25
Using libscg version 'schily-0.8'.
scsibus0:
0,0,0 0) 'Generic ' 'Flash R/W ' '2002' Removable Disk
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
How do I identify my dvd-cdrw to gcombust, please?
Thanks! doc
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
Guest
Guest
|
Posted: Sat 17 Sep 2005, 00:52 Post_subject:
|
|
try cdrecord -scanbus dev=ATAPI
|
|
Back to top
|
|
 |
edoc

Joined: 07 Aug 2005 Posts: 3942 Location: Southeast Georgia, USA
|
Posted: Sat 17 Sep 2005, 01:11 Post_subject:
|
|
| Anonymous wrote: | | try cdrecord -scanbus dev=ATAPI |
# cdrecord -scanbus dev=ATAPI
Cdrecord-Clone 2.01 (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jörg Schilling
scsidev: 'ATAPI'
devname: 'ATAPI'
scsibus: -2 target: -2 lun: -2
Warning: Using ATA Packet interface.
Warning: The related Linux kernel interface code seems to be unmaintained.
Warning: There is absolutely NO DMA, operations thus are slow.
Using libscg version 'schily-0.8'.
scsibus0:
0,0,0 0) 'QSI ' 'CDRW/DVD SBW-242' 'UX12' Removable CD-ROM
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
_________________ Thanks! David
Home page: http://nevils-station.com
Don't google Search! http://duckduckgo.com
Multiple computers - currently running Puppy Exprimo ver. 5x15
|
|
Back to top
|
|
 |
|