Warning: session_start(): open(/tmp/sess_v3on0qchff8unlvk2hkv7inv83, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
VideoCut 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) . 

VideoCut

   0.2.0  

KDE Video Application

Score 87%
VideoCut
zoom


VideoCut
zoom


Link:  Link
Downloads:  8590
Submitted:  Jun 20 2007
Updated:  Jan 27 2008

Description:

VideoCut - is an open source desktop application specially created for capturing screenshots from video files. It is using xine-lib and Qt-4


Requirements:
* xinelib http://xinehq.de/
* Qt >= 4.2.3 http://www.trolltech.com/

Languages:
* English
* Ukrainian
* Russian
* Chinese
* French
* Polish

Installation:
* unpack
* qmake-qt4
* make
* make install

For Ubuntu users repository available:
deb http://ppa.launchpad.net/troorl/ubuntu hardy main
deb-src http://ppa.launchpad.net/troorl/ubuntu hardy main




Changelog:

0.1.2 > 0.2.0
* open a list of files (new progress dialog)
* show logo
* fixed flat style
* fixed options dialog
* new repository at Launchpad PPA
* switching from SVG's icons to PNG

0.1.1 > 0.1.2
* memory leaks fixed (important!)
* fixed saving last main window position
* added Qt-4.3.* support
* Polish translation (thanks jarek)

0.1 > 0.1.1
* all code, wich using lib-xine, moved to the backends/
* new options panel
* some changes in list panel
* removed "svg" from project :)
* new icons (oxygen from KDE4)
* French translation (thanks DanaKil)
* now Qt4.3 does not supported
* many small fixes

0.1b > 0.1
* fixed bottom list in Qt-4.3
* Chinese translate
* fixed dependencies in Ubuntu package (kdecopy)




LicenseGPL
Source
Ubuntu(Ubuntu i386)
Ubuntu(Ubuntu amd64)
Mandriva(Mandriva2008 package (v0.1.2))
SUSE(SUSE package (v0.1.2))
Send to a friend
Subscribe
Other  Content  from troorl13
Report inappropriate content



goto page:  1  2  3  4  5 

-
.

 Missing Dep?

 
 by BorgQueen on: Jun 20 2007
 
Score 50%

Hi tried to build your app but got this
In file included from src/TPreviewPanel/TPreviewPanel.h:36,
from src/TMainWindow.h:29,
from src/main.cpp:25:
src/TPreviewPanel/TGraphItem.h:29:28: error: QGraphicsSvgItem: No such file or directory
make: *** [build/obj/main.o] Error 1

Am I missing something?

Thanks, looking forward to trying it out!


Reply to this

-

 Re: Missing Dep?

 
 by troorl13 on: Jun 20 2007
 
Score 50%

Are you sure that you have Qt >=4.2.3? It\\\'s not tested on older versions.


Reply to this

-
.

 Re: Re: Missing Dep?

 
 by BorgQueen on: Jun 21 2007
 
Score 50%

Not yet, thanks.
I'll let you know how it goes.


Reply to this

-

 a bug in qt-4.3?

 
 by cjacker on: Jun 21 2007
 
Score 50%
cjackercjacker
redflag.com

It cause that the FrameItem in TListPanel did not show anything except empty image.

a workaround here:

change src/TListPanel/TFrameItem.cpp
from:
painter->drawImage(pixRect, *p, source);
to:

painter->drawImage(pixRect, (*p).scaledToWidth(bigRect.width() - widthBorder*2,Qt::SmoothTransformation));


Reply to this

-

 Re: a bug in qt-4.3?

 
 by troorl13 on: Jun 21 2007
 
Score 50%

Strange, This method must work
void QPainter::drawImage ( const QRectF & target, const QImage & image, const QRectF & source, Qt::ImageConversionFlags flags = Qt::AutoColor )


Reply to this

-

 Re: Re: a bug in qt-

 
 by cjacker on: Jun 21 2007
 
Score 50%
cjackercjacker
redflag.com

Yes, very strange.

you can take a look of the comments of Manslide.It also had the same very strange problem. So, from Manslide-1.5.9, the author return to qt-4.2.

I had compiled it with qt-4.2.3 and qt-4.3 today.

under qt-4.2.3, works very well.

but under qt-4.3, must apply this dirty change.


Reply to this

-
.

 Re: Re: Re: a bug in

 
 by troorl13 on: Jun 21 2007
 
Score 50%

Thanks for bug-report =) In release I whill try something like this:

#if QT_VERSION >= 0x040300
painter->drawImage(pixRect, (*p).scaledToWidth(pixRect.width(), Qt::SmoothTransformation));
#else
painter->drawImage(pixRect, *p, source);
#endif


Reply to this

-

 Re: Re: Re: Re: a bu

 
 by cjacker on: Jun 21 2007
 
Score 50%
cjackercjacker
redflag.com

it's very dirty:-D

maybe, qt-4.3.1 will fix it, hope so.


Reply to this

-

 Re: Re: a bug in qt-

 
 by cjacker on: Jun 21 2007
 
Score 50%
cjackercjacker
redflag.com

there is also some other strange things about qt-4.3.

for example:
in the config dialog of videocut, the icons of list item can be "align center", it looks very well, but with qt-4.3,it is never aligned center.


Reply to this

-
.

 looks nice

 
 by DanaKil on: Jun 21 2007
 
Score 50%

but I currently can't install it (a conflict between libqt4-core and my installed version of libqt4-core-kdecopy) so I will wait a bit...

I could be nice to have some "shortcuts" to upload the image to some hosting site (like imageshack.us, tinypic.com...)

I hope that you can add the possibility to create a model and recursively go through directory to make a picture of each video

Anyway, looks great :)


Reply to this

-

 zh_CN translation.

 
 by cjacker on: Jun 21 2007
 
Score 50%
cjackercjacker
redflag.com

here is a chinese translation for videocut.

ftp://www.linux-ren.org/uploads/videocut.zh_CN.ts

do not forget to change the resource file.


Reply to this

-
.

 Slackware package

 
 by quax on: Jun 22 2007
 
Score 50%
quaxquax
FluxFlux / Lin2Go
Home

Hi all,

a Slackware package with KDE desktop file included is available at:

http://live-modules.org/files/packages/lmo/qt4/videocut-qt4-0.1b-i486-1lmo.tgz

http://live-modules.org/files/packages/lmo/qt4/videocut-qt4-0.1b-i486-1lmo.md5


Reply to this

-

 Re: Slackware packag

 
 by troorl13 on: Jun 22 2007
 
Score 50%

quax, cjacker, great work! Thanks.


Reply to this

-

 version

 
 by Divilinux on: Jul 1 2007
 
Score 50%
DivilinuxDivilinux
www.squadrai nformatica.c om/smak
Home

is normal?..i still have o.1-beta..


..::KBFX-Team-member::..
Reply to this

goto page:  1  2  3  4  5 

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