Warning: session_start(): open(/tmp/sess_fstm61osna940jqmf0ae60ret7, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
Dragon Player openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans (5) .- Knowledge Base  . 

Dragon Player

   2.0.1  

KDE Video Application

Score 80%
eeaneean
Amarok
Dragon Player
zoom


Link:  http://dragonplayer.org
Downloads:  26964
Submitted:  Oct 20 2004
Updated:  Feb 26 2008

Description:

Dragon Player is a video player for KDE 4 that focuses on simplicity
and easy of use. It is the successor of Codeine, a player for KDE 3.

It is now available in gutsy-backports, check out the Dragon Player website if you use Kubuntu.




Changelog:

2.0.1
Removed the locking of the volumeSlider if the mute is active

2.0.0
Fixed issue where if the user ESCed the play media dialog it wouldn't reappear.
Pressing 'M' causes mute
Return to the logo when playback is explictly stopped
New Icon
Fixed crash on double click in KPart Bug #157579
The volumeSlider is locked if the mute is active

2.0-rc1
Fix status bar title disappearing on window resize
Can turn off subtitles
Can revert to the 'auto' audio channel
Save subtitle and audio channel selection
New DBus API under /Player and /TrackList. A full implementation of MPRIS.
Fix pausing and then playing causing the window size to revert.
A new smart "Play Disc" button that plays whatever kind of media is inserted and
if more then one disc is inserted it lets you pick which disc to play.
As a result, Video CD's and Audio CD's are now experimentally supported.

2.0-beta1
Fix hang on close when paused
Restore cursor hiding over the playing video widget
Restore video settings widget (contrast, brightness), as a sidebar instead of a window.
Restore KPart
Save video settings
Audio channel selectable
Volume slider toolbar. Volume saved globally, not per-file.
Imported Amarok's runtime-selectable debug() system

2.0-alpha1
New maintainer: Ian Monroe
Renamed to Dragon Player
Ported to Qt4, KDE4 and Phonon. Many feature regressions. None of Codeine's bugs though... a whole new set!




LicenseGPL
Source(Dragon Player 2.0.1)
Source(Codeine 1.0.1)
other(Dragon - Arch Linux)
SUSE(One-Click SUSE install Dragon Player)
Debian(Dragon Player 2.0-1)
Donate
Send to a friend
Subscribe
Other  Content  from eean
Report inappropriate content



goto page: prev   1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16 ...

-

 ...

 
 by maniac on: Jun 15 2005
 
Score 50%

refer to the post above, my system is ubuntu hoary


Reply to this

-

 xineEngine.cpp

 
 by saev on: Jun 18 2005
 
Score 50%

for everyone having problems building this from an ambiguous method call to log10(), here is the very simple patch to src/app/xineEngine.cpp.

--- src/app/xineEngine.cpp 2005-06-17 23:56:12.596208944 -0400
+++ newsrc/app/xineEngine.cpp 2005-06-17 23:57:22.972510120 -0400
@@ -59,7 +59,7 @@
int cum = 0;
for( int v = 99; v >= 0; v-- ) {
xine_set_param( m_stream, XINE_PARAM_AUDIO_AMP_LEVEL, v );
- int sleep = int(13000 * (-std::log10( v + 1 ) + 2));
+ int sleep = int(13000 * (-std::log10( static_cast< double >(v + 1) ) + 2));

::usleep( sleep );


Reply to this

-

 Re: xineEngine.cpp

 
 by deadbabylon on: Jun 19 2005
 
Score 50%
deadbabylondeadbabylon
Fedora Project
Home

Thx. Works fine for me.


Reply to this

-

 Re: xineEngine.cpp

 
 by McQuaid on: Jul 12 2005
 
Score 50%

Hello I'm getting this error and having difficulty applying your patch.


    mcquaid@mcquaid:~/more kde stuff/codeine-1.0-beta6$ patch -p0 <patch
    (Patch is indented 1 space.)
    patching file src/app/xineEngine.cpp
    patch: **** malformed patch at line 4: int cum = 0;


Reply to this

-

 Re: xineEngine.c

 
 by eean on: Jul 21 2005
 
Score 50%
eeaneean
Amarok

Its only one line, you can do it manually.


Reply to this

-

 Re: xineEngine.cpp

 
 by MxCl on: Jul 21 2005
 
Score 50%

Thanks, applied.


Reply to this

-

 ebuild and suggestio

 
 by smileaf on: Jun 24 2005
 
Score 50%

first off after an hour of fighting scons I finally won!
http://smileaf.org/files/codeine-1.0_beta6.tar.bz2

Updated ebuild for beta6!

Ok Suggestio + n
loose the 3 button pop-up window and replace it with either a toolbar and/or menu. more standard and far nicer IMO.

2nd suggestion:
playlist
I could careless about the features you are already planing on doing however a playlist would be one of my top priority things! When I have nothing to do I tend to open up a directory of movies and play them all 1 right after the other (very handy for short series :))
when it ends press down and the next one starts very nice!
doesn't have to be fancy or anything..
seperate window, add to playlist, remove from playlist, play, moving them around (preferably via drag and drop ;))
Only display the filename for all I care! I hardly look at the playlist I just would really like one.

Keep up the excellent work!


this comment has been leafed...
Reply to this

-

 omg mxcl!

 
 by seb on: Jul 21 2005
 
Score 50%

good to know you are around, pop around and say hi some time!


Reply to this

-

 omfg! ;-)

 
 by MxCl on: Jul 21 2005
 
Score 50%

Boring story, but I'll swing round next time I boot into KDE.. =)


Reply to this

-
.

 Re: omfg! ;-)

 
 by seb on: Jul 21 2005
 
Score 50%

[16:05] mxcl was last seen 77 ays, 10 hours, 12 minutes and 21 seconds ago, saying "amarok lovers! join fridge 5!: http://web.okaygo.co.uk/apps/letters/flashcom/index80.htm" Eaten by the fridges!


Reply to this

-
.

 Re: omfg! ;-)

 
 by muesli on: Jul 22 2005
 
Score 50%

boy, we were really scared. why didn't you reply to email 'n shit? *hugs* ;-) muesli


Reply to this

-

 Re: Re: omfg! ;-)

 
 by MxCl on: Jul 22 2005
 
Score 50%

Actually I haven't been able to read email for 5 weeks because my host is shit and suddenly I can't get at any mails. My mailbox is currently 100MB and rising. They still don't know what to do about it.

Sorry for the lack of contact. But I'm still coming to akademy!


Reply to this

-
.

 ebuild for rc1

 
 by eean on: Jul 21 2005
 
Score 50%
eeaneean
Amarok

Hey mxcl!

I've submitted an ebuild for Gentoo:
http://bugs.gentoo.org/show_bug.cgi?id=99741

Scons was acting up on me when I tried to make an ebuild before (it was breaking sandbox), but this time it worked on the first try.


Reply to this

-

 Re: ebuild for rc1

 
 by MxCl on: Jul 21 2005
 
Score 50%

Thanks eean, I updated the link up the top.


Reply to this

-

 link to ebuild

 
 by eean on: Jul 21 2005
 
Score 50%
eeaneean
Amarok

Now it is part of portage:
http://packages.gentoo.org/search/?sstring=codeine
So I would perhaps link to that instead of the bug report. Or just state that it is in portage.

They also made codeine dependent on scons instead of using the shipped version. Not sure if thats good or not. :)

Its still in ~amd64 and ~x86, I'll try and remember to drop them an email to remind them to make it amd64 and x86 in a couple of weeks.


Reply to this

-

 Re: link to ebuild

 
 by MxCl on: Jul 22 2005
 
Score 50%

Yeah it's better to use real scons, as the mini-scons won't get bug fixes etc. Also good to be in portage, thanks muchy! :-)


Reply to this

-
.

 can't play VCD :(

 
 by maarizwan on: Jul 21 2005
 
Score 50%

1. I have xine-lib-1.0.1, and xine-ui-0.99.3,
2. xine can play vcd, but codeine can't play vcd.
3. it is showing can't find plugin error message.
4. I have even added '/dev/cdrom' into codeine's vcd option.
5. link is there for /dev/cdrom -> /dev/hdd. (no link problem)
6. codeine can play DVD (matrix movie ;) (but have to do first "ln -sf /dev/hdd /dev/dvd")

could you please tell me what I am doing wrong with the VCD aspect? Could you play VCD?

which version of xine do u use with codeine?

I love codeine and want it to be my Video player (all video format). VCD is on such important thing in India like DVD there ;)


Reply to this

-

 Re: can't play VCD :(

 
 by MxCl on: Jul 21 2005
 
Score 50%

Hmm, I confess I've never tested it for VCDs because I have none. I'll try to get hold of one and test that. Sorry for the problems.


Reply to this

goto page: prev   1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16 ...

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team