film covers
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 402
Disc-Cover 1.5.5
Disc-cover provides an easy way to produce covers for audio CDs. more>>
Disc-cover provides an easy way to produce covers for audio CDs. Disc-Cover scans audio CDs and uses information from the CDDB or CDINDEX database to build a back and front cover for the CD. Output is in Latex, Dvi, PDF, Postscript, HTML, plain ASCII, or any other format suited for cdlabelgen.
Main features:
- uses Latex to produce high quality output,
- outputs in Latex, Dvi, Postscript, Pdf, Cddb entry, HTML, ASCII and a format to use with the application cdlabelgen,
- supports caching of cddb entries in a directory that can be shared with other freedb-aware programs,
- connects with a freedb server to get the disc title, artist and list of track titles and extended information where available,
- optionally let Disc-Cover search on allmusic.com for a small version of the corresponding front cover of the cd, which it will put on your front cover,
- optionally put a picture on the front cover, supports almost any image format,
- assign different colours to different items such as artist name and track numbers,
- supports covers for double albums,
- output for jewel cases and various slim cases.
<<lessMain features:
- uses Latex to produce high quality output,
- outputs in Latex, Dvi, Postscript, Pdf, Cddb entry, HTML, ASCII and a format to use with the application cdlabelgen,
- supports caching of cddb entries in a directory that can be shared with other freedb-aware programs,
- connects with a freedb server to get the disc title, artist and list of track titles and extended information where available,
- optionally let Disc-Cover search on allmusic.com for a small version of the corresponding front cover of the cd, which it will put on your front cover,
- optionally put a picture on the front cover, supports almost any image format,
- assign different colours to different items such as artist name and track numbers,
- supports covers for double albums,
- output for jewel cases and various slim cases.
Download (0.051MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
714 downloads
Gcover 0.1.3
Gcover is a cd cover editor program for the Gnome community. more>>
Gcover is a cd cover editor program for the Gnome community. Its my first development under Linux/C/Gnome so dont take it too hard. There are two reasons why I release this program:
I think it is quite useful If you want to create nice covers for your "home made" cds (eg.:audio cds from mp3s or data cds).
I couldnt find any good cover editor program for Gnome.
Main features:
- Different kind of covers (One or two back pages,booklet for your front pages or simple 2 paged front)
- Title text,page text with different fonts and colors. Many text formatting opportunities(eg.:margins,alignment,columns,word warp,etc..)
- Picture for every pages with scaling options,border cutting,different interpolation modes(using the power of gdk-pixbuf),etc..
- Printing to postscript output,real printers. Print preview.
- Plain text loading to the page editor or to the internal clipboard
- And so on... Its better if you look the program
<<lessI think it is quite useful If you want to create nice covers for your "home made" cds (eg.:audio cds from mp3s or data cds).
I couldnt find any good cover editor program for Gnome.
Main features:
- Different kind of covers (One or two back pages,booklet for your front pages or simple 2 paged front)
- Title text,page text with different fonts and colors. Many text formatting opportunities(eg.:margins,alignment,columns,word warp,etc..)
- Picture for every pages with scaling options,border cutting,different interpolation modes(using the power of gdk-pixbuf),etc..
- Printing to postscript output,real printers. Print preview.
- Plain text loading to the page editor or to the internal clipboard
- And so on... Its better if you look the program
Download (0.36MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1193 downloads
Devel::Cover 0.61
Devel::Cover package contains code coverage metrics for Perl. more>>
Devel::Cover package contains code coverage metrics for Perl.
SYNOPSIS
perl -MDevel::Cover yourprog args
cover
perl -MDevel::Cover=-db,cover_db,-coverage,statement,time yourprog args
To test an uninstalled module:
cover -delete
HARNESS_PERL_SWITCHES=-MDevel::Cover make test
cover
To test an uninstalled module which uses Module::Build (0.26 or later):
./Build testcover
If the module does not use the t/*.t framework:
PERL5OPT=-MDevel::Cover make test
This module provides code coverage metrics for Perl. Code coverage metrics describe how throroughly tests exercise code. By using Devel::Cover you can find areas of code not exercised by your tests and find out which tests to create to increase coverage. Code coverage can be considered as an indirect measure of quality.
If you cant guess by the version number this is an alpha release.
Code coverage data are collected using a pluggable runops function which counts how many times each op is executed. These data are then mapped back to reality using the B compiler modules. There is also a statement profiling facility which needs a better backend to be really useful.
The cover program can be used to generate coverage reports.
Statement, branch, condition, subroutine, pod and time coverage information is reported. Statement coverage data should be reasonable, although there may be some statements which are not reported. Branch and condition coverage data should be mostly accurate too, although not always what one might initially expect. Subroutine coverage should be as accurate as statement coverage. Pod coverage comes from Pod::Coverage. If Pod::Coverage::CountParents is available it will be used instead. Coverage data for path coverage are not yet collected.
The gcov2perl program can be used to convert gcov files to Devel::Cover databases.
You may find that the results dont match your expectations. I would imagine that at least one of them is wrong.
The most appropriate mailing list on which to discuss this module would be perl-qa. Discussion has migrated there from perl-qa-metrics which is now defunct. See http://lists.perl.org/showlist.cgi?name=perl-qa.
<<lessSYNOPSIS
perl -MDevel::Cover yourprog args
cover
perl -MDevel::Cover=-db,cover_db,-coverage,statement,time yourprog args
To test an uninstalled module:
cover -delete
HARNESS_PERL_SWITCHES=-MDevel::Cover make test
cover
To test an uninstalled module which uses Module::Build (0.26 or later):
./Build testcover
If the module does not use the t/*.t framework:
PERL5OPT=-MDevel::Cover make test
This module provides code coverage metrics for Perl. Code coverage metrics describe how throroughly tests exercise code. By using Devel::Cover you can find areas of code not exercised by your tests and find out which tests to create to increase coverage. Code coverage can be considered as an indirect measure of quality.
If you cant guess by the version number this is an alpha release.
Code coverage data are collected using a pluggable runops function which counts how many times each op is executed. These data are then mapped back to reality using the B compiler modules. There is also a statement profiling facility which needs a better backend to be really useful.
The cover program can be used to generate coverage reports.
Statement, branch, condition, subroutine, pod and time coverage information is reported. Statement coverage data should be reasonable, although there may be some statements which are not reported. Branch and condition coverage data should be mostly accurate too, although not always what one might initially expect. Subroutine coverage should be as accurate as statement coverage. Pod coverage comes from Pod::Coverage. If Pod::Coverage::CountParents is available it will be used instead. Coverage data for path coverage are not yet collected.
The gcov2perl program can be used to convert gcov files to Devel::Cover databases.
You may find that the results dont match your expectations. I would imagine that at least one of them is wrong.
The most appropriate mailing list on which to discuss this module would be perl-qa. Discussion has migrated there from perl-qa-metrics which is now defunct. See http://lists.perl.org/showlist.cgi?name=perl-qa.
Download (0.026MB)
Added: 2007-05-01 License: Perl Artistic License Price:
907 downloads
CopyCover 1.8
CopyCover is an Amarok script that can copy the cover of current playing track to the songs dir. more>>
Does not overwrite existing images in this folder. The filenames can be configured with the "Configure" dialog. By default, its the albums name, with spaces replaced by underscores.
An "offline" version is also included. If you have amaroK >= 1.2.3, launch it and run the script on the command line. It will find all the downloaded covers and copy them in the right directory, just as the amarok plugin would have done. It also creates the desktop files. Make sure you first run the script with the "-d" option (debug mode), in which the actions will only be printed, not commited. A --help option is available.
The copycover-offline.py script is NOT meant to be run through Amaroks script manager.
<<lessAn "offline" version is also included. If you have amaroK >= 1.2.3, launch it and run the script on the command line. It will find all the downloaded covers and copy them in the right directory, just as the amarok plugin would have done. It also creates the desktop files. Make sure you first run the script with the "-d" option (debug mode), in which the actions will only be printed, not commited. A --help option is available.
The copycover-offline.py script is NOT meant to be run through Amaroks script manager.
Download (0.007MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
576 downloads
Playlist - CD Cover 0.1
Playlist - CD Cover is a perl script that generates nice printable CD Covers using TeX. more>>
Playlist - CD Cover is a perl script that generates nice printable CD Covers using TeX. You can use custom designs by creating your own templates.
Perl-QT, TeX, dvips and kghostview are required. Please read the README file.
The script is still experimental -- feel free to send me enhancements or corrections.
<<lessPerl-QT, TeX, dvips and kghostview are required. Please read the README file.
The script is still experimental -- feel free to send me enhancements or corrections.
Download (0.10MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1410 downloads
KoverArtist 0.5
KoverArtist is a program for the fast creation of covers for cd/dvd cases and boxes. more>>
KoverArtist is a program for the fast creation of covers for cd/dvd cases and boxes. KoverArtists main idea is to be able to create decent looking covers with some mouseclicks.
The project started from my need for some decent covers for the films I record from television and then often burn on dvd for archiving.
With series I usually start with one or two dvds, and add more as more episodes are available. So the program - KoverArtist - had to be flexible enough to handle that. This also requires changing covers on the fly to use cases that can house more discs.
Enhancements:
- Some layout tweaking to make the main window fit better on a 1024x768 screen (thanks to Agnese Bonetti for reporting).
- Bugfix: Disc #1 tab was not shown on startup when no project was opened.
- Bugfix: koverartist crashed when ~/.cddb did not exist upon audio-cd import (thanks to Audidriver for reporting).
- Corrections in German translation.
- Added support for KinoArtist projects (KinoArtist is not released yet).
- When importing a disc and the project title or snapshots are not set, the disc settings are then used (like when opening a KMediaFactory project as a project).
- Added support for automake 2.6.x
<<lessThe project started from my need for some decent covers for the films I record from television and then often burn on dvd for archiving.
With series I usually start with one or two dvds, and add more as more episodes are available. So the program - KoverArtist - had to be flexible enough to handle that. This also requires changing covers on the fly to use cases that can house more discs.
Enhancements:
- Some layout tweaking to make the main window fit better on a 1024x768 screen (thanks to Agnese Bonetti for reporting).
- Bugfix: Disc #1 tab was not shown on startup when no project was opened.
- Bugfix: koverartist crashed when ~/.cddb did not exist upon audio-cd import (thanks to Audidriver for reporting).
- Corrections in German translation.
- Added support for KinoArtist projects (KinoArtist is not released yet).
- When importing a disc and the project title or snapshots are not set, the disc settings are then used (like when opening a KMediaFactory project as a project).
- Added support for automake 2.6.x
Download (0.97MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
647 downloads
Album Cover Art Downloader 1.6.0
Album Cover Art Downloader will go through your collection of music albums and for each one download a set of matching covers. more>>
Album Cover Art Downloader will go through your collection of music albums and for each one download a set of matching cover images for you to choose from.
The project makes the selected image usable for programs such as KDE, Windows Media Player, etc.
<<lessThe project makes the selected image usable for programs such as KDE, Windows Media Player, etc.
Download (0.43MB)
Added: 2005-06-15 License: GPL (GNU General Public License) Price:
1619 downloads
Cover Hunter 0.3
CoverHunter will scan your digital music albums and try to get the cover image for each one. more>>
CoverHunter will scan your digital music albums and try to get the cover image for each one.
If more than one cover was found, you can choose which one will be set as the cover for that album. These covers are usable for XMMS, KDE, GNOME, etc.
<<lessIf more than one cover was found, you can choose which one will be set as the cover for that album. These covers are usable for XMMS, KDE, GNOME, etc.
Download (0.027MB)
Added: 2005-09-15 License: GPL (GNU General Public License) Price:
844 downloads
FFTExplorer 1.16
FFTExplorer project is a graphic spectrum analysis program. more>>
FFTExplorer project is a graphic spectrum analysis program.
FFTExplorer is a GUI that performs spectral analysis on real-time data from a sound card or other source, and can analyze the spectra of various sound file types.
It can display time-domain and frequency-domain data in a number of ways, and is an easy-to-use introduction to the topic of spectrum analysis.
Beyond performing a fast Fourier transform on arbitrary data sources, it can also perform moving average noise reduction for the treatment of signals accompanied by noise.
It contains a lengthy combination essay/help file on the various topics the program covers, some step-by-step examples using its own internal signal source, and a detailed example using an external source.
Enhancements:
- Updated source to conform to gcc 4.1 requirements.
<<lessFFTExplorer is a GUI that performs spectral analysis on real-time data from a sound card or other source, and can analyze the spectra of various sound file types.
It can display time-domain and frequency-domain data in a number of ways, and is an easy-to-use introduction to the topic of spectrum analysis.
Beyond performing a fast Fourier transform on arbitrary data sources, it can also perform moving average noise reduction for the treatment of signals accompanied by noise.
It contains a lengthy combination essay/help file on the various topics the program covers, some step-by-step examples using its own internal signal source, and a detailed example using an external source.
Enhancements:
- Updated source to conform to gcc 4.1 requirements.
Download (0.15MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1108 downloads
Kover 2.9.3
Kover is an application which can help you with making various CD-covers. more>>
Kover is an easy to use WYSIWYG CD cover printer with CDDB support.
Main features:
- CDDB support via freedb.org
- supports proxies with authentification (basic)
- image embedding in inlet and booklet
- should read files saved with Easy CD Pro 2.0
- saves CDDB queries locally, and uses them next time the same CD is inserted.
- print to file or printer (surprising?)
- able to save and load with kover created covers
- save and load files, also via ftp
- do CDDB query without the CD. Just enter the ID and category
- french, german, polish, italian, spanish and norwegian translation available
- files created with k3b can be imported
- able to read CD-TEXT
Enhancements:
- applied patch to fix printing problems with protrait and landscape from Uwe Brinkhoff < sindsiesicher@gmx.de >
- added support to read CD-TEXT
- added a new binary cd-text and manual page
- the usual small fixes here and there
- released as 2.9.6
- "look-i-can-read" release
<<lessMain features:
- CDDB support via freedb.org
- supports proxies with authentification (basic)
- image embedding in inlet and booklet
- should read files saved with Easy CD Pro 2.0
- saves CDDB queries locally, and uses them next time the same CD is inserted.
- print to file or printer (surprising?)
- able to save and load with kover created covers
- save and load files, also via ftp
- do CDDB query without the CD. Just enter the ID and category
- french, german, polish, italian, spanish and norwegian translation available
- files created with k3b can be imported
- able to read CD-TEXT
Enhancements:
- applied patch to fix printing problems with protrait and landscape from Uwe Brinkhoff < sindsiesicher@gmx.de >
- added support to read CD-TEXT
- added a new binary cd-text and manual page
- the usual small fixes here and there
- released as 2.9.6
- "look-i-can-read" release
Download (0.92MB)
Added: 2005-05-31 License: GPL (GNU General Public License) Price:
1607 downloads
CDcover XMMS Plugin 0.2
CDcover XMMS Plugin displays a graphic dependent on the currently played song. more>>
CDcover XMMS Plugin displays a graphic dependent on the currently played song.
Normal usage would be to display the CD covers for the different songs. The graphics are retrieved from your computer. Therefore searchpaths can be defined, where a corresponding cover is searched for.
Main features:
- Define as many different search paths as you need, including wildcards
- Buildin skin, full support for custom skins
- Many different graphic formats (supported formats depend on your gtk installation)
- Automatically resizes the images, and preserves aspect-ratio upon request
<<lessNormal usage would be to display the CD covers for the different songs. The graphics are retrieved from your computer. Therefore searchpaths can be defined, where a corresponding cover is searched for.
Main features:
- Define as many different search paths as you need, including wildcards
- Buildin skin, full support for custom skins
- Many different graphic formats (supported formats depend on your gtk installation)
- Automatically resizes the images, and preserves aspect-ratio upon request
Download (0.23MB)
Added: 2006-04-11 License: GPL (GNU General Public License) Price:
1291 downloads
Manencode 1.0
Manencode prepares video to be DVD-compliant. more>>
Manencode prepares video to be DVD-compliant.
Another module of the next MANDVD. This module will be use to transcode any video and edit them (cut part of film, add subtitle, adjust light / contrast / saturation).
<<lessAnother module of the next MANDVD. This module will be use to transcode any video and edit them (cut part of film, add subtitle, adjust light / contrast / saturation).
Download (0.51MB)
Added: 2007-07-08 License: GPL (GNU General Public License) Price:
857 downloads
Wuffs MovieDB 2.0.2
Wuffs MovieDB is a database written in PHP using MySQL to catalogue your DivX-releases and VCDs. more>>
Wuffs MovieDB is a MySQL-Database with a nice PHP frontend to catalogue DivXs, VCDs, SVCDs, DVDs, movies or anything else you might want to catalogue with cover art. Its based on MovieDB v0.6 by Brian Rhodes.
Just like MovieDB, Wuffs MovieDB is easy to setup and to configure.
Main features:
PHP-Frontend:
- one configuration file (by Brian Rhodes)
- themeable (by Brian Rhodes)
- nice layout (by Brian Rhodes)
- resolution can be entered either "640x272" or "640 x 272" making it easier to copy&paste out of media player
- the cover-url can be entered with "http%3A//" like the links from imdb
- display amount of time the query took
- display amount of cds and amount of mb/gb the searched movies take
Database:
- Main Types addable (by Brian Rhodes)
- Language addable
- Audio-Format addable
- Title and alternative title for title in other languages
- a movie can have 2 cds, so 2 database entries for size are necessary.
Search-Functions:
- list all items of a Main Type (by Brian Rhodes)
- list all items of a year (by Brian Rhodes)
- list all items of a genre (by Brian Rhodes)
- list all items starting with a letter (by Brian Rhodes)
- list all items of a language
- title search looks for match in title AND alternative title !
- extended search (title, year, ripper, language, genre, viewed)
- list all items added this month
- list all items added last month
Background:
- Covers can be saved with movie (by Brian Rhodes)
- Shown title links directly to IMDB (by Brian Rhodes)
- IMDB-Rating updates every x days when clicking on Details
- Cover size will be a maximum of 216x???
- Covers will be saved either like My_Movie.gif or 0024313.gif (circumventing problems when adding a movie in 2 languages having saved 2 covers. And circumventing problem with foreign characters)
- When clicking on a thumbnail a new window opens with a bigger cover (by Brian Rhodes)
- When clicking on a thumbnail you get detailed information about the movie.
Enhancements:
- Fixed IMDB fetch-problem due to changes on IMDB site
- Fixed problem with fetching if COVER_GET command needs options to filename
- Fixed italic language problem
- Added Dutch language file
<<lessJust like MovieDB, Wuffs MovieDB is easy to setup and to configure.
Main features:
PHP-Frontend:
- one configuration file (by Brian Rhodes)
- themeable (by Brian Rhodes)
- nice layout (by Brian Rhodes)
- resolution can be entered either "640x272" or "640 x 272" making it easier to copy&paste out of media player
- the cover-url can be entered with "http%3A//" like the links from imdb
- display amount of time the query took
- display amount of cds and amount of mb/gb the searched movies take
Database:
- Main Types addable (by Brian Rhodes)
- Language addable
- Audio-Format addable
- Title and alternative title for title in other languages
- a movie can have 2 cds, so 2 database entries for size are necessary.
Search-Functions:
- list all items of a Main Type (by Brian Rhodes)
- list all items of a year (by Brian Rhodes)
- list all items of a genre (by Brian Rhodes)
- list all items starting with a letter (by Brian Rhodes)
- list all items of a language
- title search looks for match in title AND alternative title !
- extended search (title, year, ripper, language, genre, viewed)
- list all items added this month
- list all items added last month
Background:
- Covers can be saved with movie (by Brian Rhodes)
- Shown title links directly to IMDB (by Brian Rhodes)
- IMDB-Rating updates every x days when clicking on Details
- Cover size will be a maximum of 216x???
- Covers will be saved either like My_Movie.gif or 0024313.gif (circumventing problems when adding a movie in 2 languages having saved 2 covers. And circumventing problem with foreign characters)
- When clicking on a thumbnail a new window opens with a bigger cover (by Brian Rhodes)
- When clicking on a thumbnail you get detailed information about the movie.
Enhancements:
- Fixed IMDB fetch-problem due to changes on IMDB site
- Fixed problem with fetching if COVER_GET command needs options to filename
- Fixed italic language problem
- Added Dutch language file
Download (0.060MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1642 downloads
background-cover 1.1
background-cover is an Amarok script that displays the album cover, track information. more>>
background-cover is an Amarok script that displays the album cover, track information.
Optionally the embedded track image on the kde desktop background, and changes the background at each track change.
<<lessOptionally the embedded track image on the kde desktop background, and changes the background at each track change.
Download (0.003MB)
Added: 2006-10-30 License: LGPL (GNU Lesser General Public License) Price:
1094 downloads
CoverViewer 0.12 RC2
CoverViewer is a plugin for XMMS. more>>
CoverViewer is a plugin for XMMS.
Its main task is to display images : it scans the directory containing the file you are playing, and displays them in its window.
It can be a copy of the cover of the album, but why not putting some photos of penguins, so you can have a nice and relaxing slideshow while listening your favourite music...
Main features:
- It creates a personalised skin using the xmms-skin, so your display still looks the way you like it.
- You have buttons (play, pause, etc...) So if you want to minimize xmms and just keep coverviewer, you have all control on the song! There is also a right-click menu to control things.
- You dont have covers, dont want to scan? No problem! Using file information (tags) to get artist and album, CoverViewer can retrieve covers for you from internet... All automatic! (function easilly configurable)
<<lessIts main task is to display images : it scans the directory containing the file you are playing, and displays them in its window.
It can be a copy of the cover of the album, but why not putting some photos of penguins, so you can have a nice and relaxing slideshow while listening your favourite music...
Main features:
- It creates a personalised skin using the xmms-skin, so your display still looks the way you like it.
- You have buttons (play, pause, etc...) So if you want to minimize xmms and just keep coverviewer, you have all control on the song! There is also a right-click menu to control things.
- You dont have covers, dont want to scan? No problem! Using file information (tags) to get artist and album, CoverViewer can retrieve covers for you from internet... All automatic! (function easilly configurable)
Download (0.31MB)
Added: 2006-02-01 License: GPL (GNU General Public License) Price:
1362 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above film covers search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed