Main > Free Download Search >

Free dvd navigation software for linux

dvd navigation

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 639
phpNavigation 0.0.2

phpNavigation 0.0.2


phpNavigation provides a navigation system for Web sites. more>>
phpNavigation provides a navigation system for Web sites.

phpNavigation is a PHP3 script that allows you to easily add navigation menus to your Web site.

It allows you to create, edit, and delete nested navigation.

It also includes simple code snippets for integrating navigation into your site using one of three choices of view mode: path, menu, or sitemap.

<<less
Download (0.019MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
Flight Navigation Planner 104

Flight Navigation Planner 104


Flight Navigation Planner project is a tool for making flight plans based on known airports. more>>
Flight Navigation Planner project is a tool for making flight plans based on known airports.

Flight Navigation Planner lets you make flight plans based on known airports, navaids, fixes, or cities.

You can use the sectional charts, wacs, or the vector/terrain planning charts.

It calculates headings, winds, time, and fuel. It features Airways-based Auto-Routing, Climb and Descent calculations (a/c type based), Fuel Stop Planning, Auto-Route around MOAS and Restricted Airspace, Hi-Res Weather Radar Overlay, Viewing of current sectional, wac, and IFR charts, the ability to see a route over TFRs, detailed nexrad radar overlays over your routes, Terrain Profiles with cloud ceilings, and the ability to upload flight plans to GPS.
<<less
Download (1.2MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1112 downloads
PloneSimpleNavigation 1.0

PloneSimpleNavigation 1.0


PloneSimpleNavigation provides a simple Plone site navigation system. more>>
PloneSimpleNavigation provides a simple Plone site navigation system.
This product allows you to manage a simple dynamic site structure navigation, with options that you can set through the "Manage navigation" configuration page.
Note that, as of today, it is more usefull for Plone 2.0 users.
Main features:
- Select exactly which objects you want to display inside the portlet;
- Select meta types you want to display inside the portlet;
- You can use "OrderedFolder" interface to sort object inside navigation portlet, from the control panel or from the "folder_contents" view;
- LinguaPlone compatibility.
<<less
Download (0.016MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
DVD Manager 0.4

DVD Manager 0.4


DVD Manager provides an easy-to-use Web-based DVD management tool. more>>
DVD Manager provides an easy-to-use Web-based DVD management tool.

DVD Manager is an e107 CMS plugin. This plugin will enable users to manage their DVD collection and show it to other members via the Web whether it is online or offline.

<<less
Download (2.5MB)
Added: 2007-01-25 License: GPL (GNU General Public License) Price:
1006 downloads
DVD-Vault 4.100

DVD-Vault 4.100


DVD-Vault provides an achive software to manage DVD jukeboxes (SCSI medium changers). more>>
DVD-Vault provides an achive software to manage DVD jukeboxes (SCSI medium changers).
DVD-Vault is an implementation of a filesystem archive that makes a DVD SCSI library with multiple pieces of DVD-R or DVD-RAM media look like a single large file system.
A library with 1000 pieces of 4.7Gbyte media can be addressed as a 4700GByte file system with SCSI-robotic mounting and unmounting of media as required.
Users of UniTree (HPSS), AMASS, METIOR, and MagnaVault may recognize how this program works.
It has been tested with an ASACA 250 and 1450 and the Sony/Kubota 64-slot PD (blu-ray) library.
Enhancements:
- Binary and source code have been broken apart into two different files.
- DMAPI code now "punches" holes in files, rather than truncating the files. This makes file sizes transparent, which is really helpful for Windows clients.
- disk_scrub has been implemented to reclaim optical disk space when files are deleted.
- The MCLIB routines have support for Qualstar tape libraries.
- Batch_migration is in the binary RPM to support WORM media (BD-R, DVD+R).
- Tape stage support is in the stage program
- Purge is replaced with purgefile to support the new DMAPI code.
<<less
Download (MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
829 downloads
WE_Frontend::Plugin::Navigation 0.097_01

WE_Frontend::Plugin::Navigation 0.097_01


WE_Frontend::Plugin::Navigation Perl module contains utilities for navigation creation. more>>
WE_Frontend::Plugin::Navigation Perl module contains utilities for navigation creation.

SYNOPSIS

my $t = Template->new({PLUGIN_BASE => "WE_Frontend::Plugin"});

[% USE Navigation %]

The WE_Frontend::Plugin::Navigation object corresponds somewhat to the WE::DB::Obj database. Most of the methods described below return WE_Frontend::Plugin::Navigation::Object objects, which correspond to WE::Obj objects.

METHODS

new

This method is normally not called directly, but only as part of the USE directive:

[% USE Navigation %]
[% USE n = Navigation %]

You can pass the named parameter objid to set the object id for this context.

[% USE n = Navigation(objid = 10) %]

Or you can use the name parameter:

[% USE n = Navigation(name = "rootcollection") %]

You can pass the named parameter objid to set the object id for this context.

When calling the process() method of Template-Toolkit the value for objdb (a reference to the WE::DB::Obj database) should be set or rootdb (a reference to the WE::DB database) XXX rootdb prefered if content access. Also, if objid is not set in the USE directive, it may be supplied to the process() method.

my $t = Template->new(
{PLUGIN_BASE => "WE_Frontend::Plugin"}
);
$t->process(
$template,
{
objdb => $objdb,
rootdb => $rootdb,
objid => $objid,
config => $c,
langstring => &WE::Util::LangString::langstring
},
$output
);

The return value of the USE Navigation directive (the n variable in the examples above) is a WE_Frontend::Plugin::Navigation::Object of the current object supplied with the objid key.

ancestors([[objid = id | name = name], fromlevel => level, tolevel => level, restrict = restrictmethod])

Return a list of ancestors of the current object. The oldest (top-most) ancestor is first in the list. If objid is given, then return the ancestors for the object with this object identifier. If fromlevel and/or tolevel are given, then restrict the ancestor list for these levels. The topmost level is numbered with 1. The root itself is numbered with 0, this can be used for a "home" link on top of the list. The list may be restricted by specifying restrict. If tolevel is less than fromlevel, then an empty list is returned.

parent([[objid = id | name = name]])

Return the parent of the current object, or of the object with id objid. Note that it is possible in the WE::DB::Obj database to have more than one parent, nevertheless only one parent is returned.

level([[objid = id | name = name]])

Return the level of the current object, or of the object with id objid. The root of the site has level = 0.

toplevel_children([sort = sortmethod, restrict = restrictmethod])

Return a list of sorted toplevel children. Normally, the sequence order is used but the sorting can be changed by specifying sort. The list may be restricted by specifying restrict.

siblings([[objid = id | name = name], level = level, sort = sortmethod, restrict => restrictmethod])

Get the siblings of the current object, or of the object with id objid. The siblings are sorted by the sortmethod in sort and can be restricted with restrict.

If level is specified, the siblings of the ancestor of the current object in the specified level are returned. The level can also be specified as a negative number; this means how many levels up from the current position should be used.

children([[objid = id | name = name], sort = sortmethod, restrict => restrictmethod])

Get the children of the current object, or of the object with id objid. The children are sorted by the sortmethod in sort and can be restricted with restrict.

siblings_or_children([...]);

Often, siblings are used if the object is a document and children are used if the object is a folder. This convenience method uses the appropriate method. The arguments are the same as in siblings or children.

restrict($params, $listref)

Internal method to restrict the passed array reference according to the > subroutine.

The value of the restrict parameter should be the name of a method in the WE_Frontend::Plugin::Navigation::Object class. The object is accepted if the returned value is true. Example for an user-defined method (although subclassing would be the cleaner solution):

package WE_Frontend::Plugin::Navigation::Object;
sub my_restrict {
my $o = shift;
# restrict to objects with Id less than 5
$o->o->Id < 5;
}

sort($params, $listref)

Internal method to sort the passed array reference according to the > subroutine.

The value of the sort parameter should be the name of a method in the WE_Frontend::Plugin::Navigation class. This method takes to arguments $a and $b, both WE_Frontend::Plugin::Navigation::Object objects which should be compared. The returned value should be -1, 0, or 1, just as in the sort function. Example for an user-defined method (although subclassing would be the cleaner solution):

package WE_Frontend::Plugin::Navigation;
sub my_sort {
my($self, $a, $b) = @_;
# sort by title
WE::Util::LangString::langstring($a->o->Title) cmp WE::Util::LangString::langstring($b->o->Title);
}

current_object([[objid = id | name = name]])

Return the current active object as a WE::Obj object. See also the self method.

current_id([[objid = id | name = name]])

Return the current active id. The object is identified in this order:

objid in this method call

name in this method call

objid parameter in the Navigation USE directive

objid template variable (as specified in the Template->new call)

self([[objid = id | name = name]])

Return the current active object as a ...::Navigation::Object object.

get_object([[objid = id | name = name]])

This is an alias for self, but uses a more "logical" name if an object is retrieved by id or name.

is_self([$testobj | $testobjid], [[objid = id | name = name]])

Return true if the given $testobj (object) or $testobjid (id) is the current object. You can pass another objid instead of the current object. =cut

equals([$testobj | $testobjid], [objid = id | name = name])
The same as is_self, only that either objid or name are mandatory.

Example:

[% IF n.equals(testobjid, objid = otherobjid) %]

is_ancestor([$testobj | $testobjid], [objid => id])

Return true if the given $testobj (object) or $testobjid (id) is an ancestor of the current object. You can pass another objid instead of the current object. The current object is not considered an ancestor of itself.

object_by_name($name)

Return an object by $name.

Root

Return reference to root database.

ObjDB

Return reference to the object database.

Object

Return the class name for the navigation objects. This can be overridden in inherited classes.

<<less
Download (0.32MB)
Added: 2007-08-20 License: Perl Artistic License Price:
795 downloads
DVD Slideshow 7.1

DVD Slideshow 7.1


dvd-slideshow makes a DVD slideshow video with menus from a text file listin... more>> dvd-slideshow makes a DVD slideshow video with menus from a text file listing of pictures, effects, and audio tracks. You can add some nice effects like fades, crops, scrolls, or Ken Burns effects. It will hopefully become a command-line clone of imovie<<less
Download (4.0MB)
Added: 2009-04-23 License: Freeware Price:
190 downloads
KDE DVD Authoring Wizard 1.4.6

KDE DVD Authoring Wizard 1.4.6


KDE DVD Authoring Wizard will allow you to create a DVD from one or more DVD compatible MPEG-2 files. more>>
KDE DVD Authoring Wizard will allow you to create a DVD from one or more DVD compatible MPEG-2 files. All you need to do is add one or multiple files to the playlist and answer the questions that follow.
You can add a menu that will contain animated thumbnails of the files in the playlist. Creating a menu is optional.
Main features:
- Playlist editor
- DVD menu with multiple pages
- Animated thumbnails in the menu
- Customizable menu graphics
- Add soundtrack from OGG or MP3
- Antialiased graphics prevent flickering on TV
- Both Widescreen and standard 4:3 support
- ISO DVD Image creation
<<less
Download (0.55MB)
Added: 2007-05-30 License: GPL (GNU General Public License) Price:
890 downloads
DVD Backup 0.4.0

DVD Backup 0.4.0


DVD Backup is an unix shell script providing functionality for backuping files and databases (PostgreSQL, MySQL) on DVD discs. more>>
DVD Backup is an unix shell script providing functionality for backuping files and databases (PostgreSQL, MySQL) on DVD discs.
DVD Backup supports multisession and incremental backups. Mail notification is also supported.
Enhancements:
- This release sends email notifications using netcat instead of telnet.
- There are more details about communication with the SMTP server, and configurable excluded files patterns.
<<less
Download (0.003MB)
Added: 2006-03-21 License: GPL (GNU General Public License) Price:
1316 downloads
cpdvd 1.10

cpdvd 1.10


cpdvd is a tool to transfer a DVD title to your harddisk with ease on Linux. more>>
cpdvd is a tool to transfer a DVD title to your harddisk with ease on Linux.

This tool copies all required files for a movie title from a DVD on your harddisk for further processing with libdvdreads image mode (e.g. transcode). It automatically selects the title with longest duration - but you can also pick a specific one.

The tool determines the correct title set (VTS-VOB files) for the selected title, clones the navigation information (IFO files) and extracts (decodes) the data into new video object streams.

Installation:

Unzip the file and place it in your bin path. Make sure you have installed Perl! You need at least transcode version 0.6.0pre4 and of course cpvts.

Usage:

You simply give a target directory (will be created automatically) insert a DVD and thats all:

cpdvd MyMovie

You can then run transcode with the dvd import module (-x dvd) on this directory:

transcode -i MyMovie -x dvd ...

If your DVD device is not /dev/dvd or the DVD mount point is not /dvd then you must specify the following options:

cpdvd -d /dev/mydvddevice -m /my/dvd/mointpoint MyMovie

or set the DVD_MOUNT and DVD_DEV environment variables.

If you want to copy another title or the main title guess was wrong then you can pick a title with the -t option:

cpdvd -t 2 MyMovie

With the -i option you will receive information on all titles of a disc and the guess which title is the main title:

cpdvd -i

<<less
Download (0.004MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1248 downloads
Q DVD-Author 1.0.0 RC1

Q DVD-Author 1.0.0 RC1


Q DVD-Author is a GUI for dvdauthor. more>>
Q DVD-Authors goal is to provide a complete DVDAuthoring solution for Linux with the emphasis of ease of use and a complete set of functionality.
Main features:
- You can generate the main menu.
- You can generate Sub Menus
- You can generate Buttons
- You can scale, color, stretch, twist and shout each object
- You can give each menu multiple sound tracks (not yet perfect though).
- You can import your own layers for Highlighted and for Selected Mask and combine it with the created objects
- You can generate a dvd-slideshow
- You can create a full blown DVD without knowing the command line tools
- You can modify every generated command before executing and generating the DVD
- You can generate MovieMenus
- You can generate MovieButtons
- You can modify the generated xml files within the GUI
- You can contribute to qdvdauthor.
- Thats it for now !!!
Enhancements:
- Translated into Esperanto.
- Reorganized the main window.
- Added library of frames / buttons.
- Fixed issues with 16 bit color depth
- Some improvements to QPlayer.
- Improved ShadowObjects.
- Added MenuSlide - dialog.
<<less
Download (3.8MB)
Added: 2007-05-13 License: GPL (GNU General Public License) Price:
899 downloads
Quon DVD Database 1.6.2

Quon DVD Database 1.6.2


The Quon DVD Database is a complete solution to manage your movies. more>>
The Quon DVD Database is a complete solution to manage your movies. Highlights of this program include user tracking, barcode scanner support, user access, a login system, and an advanced searcher.
Quon DVD Database can check DVDs in and out of your collection, allowing you to keep track of which of your friends has them. You can send reminder email messages, or they can simply log in to see what they have checked out.
Enhancements:
- An issue with ordering on a few pages has been fixed.
- The system is forced use the OLD_PASSWORD system, so that when someone moves their database from one host (using an old version of MySQL) to a new one (using a new version of MySQL), the passwords of the existing users wont have to be recreated.
<<less
Download (0.33MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1176 downloads
boot-dvd 06

boot-dvd 06


boot-dvd project contains a couple of Perl-scripts that can be used to create a custom DVD-ISO image. more>>
boot-dvd project contains a couple of Perl-scripts that can be used to create a custom DVD-ISO image (to be burned), that contains user selected Linux boot/live-CD images (only ISOLINUX boot loader supported) in a handy GRUB menu.
Enhancements:
- Many updates and bugfixes were made.
<<less
Download (0.097MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
808 downloads
DVD Home Video Project 0.4.0.1

DVD Home Video Project 0.4.0.1


DVD Home Video Project is a tool that provides a simple, quick way to transform video on a DV camcorder into a DVD. more>>
DVD Home Video Project is a tool that provides a simple, quick way to transform video on a DV camcorder into a fully functional DVD, including a menu with optional background images and music.

<<less
Download (0.18MB)
Added: 2007-01-14 License: GPL (GNU General Public License) Price:
1017 downloads
rdigikam 0.2

rdigikam 0.2


rdigikam is a flickr like interface to Digikam. more>>
rdigikam is a flickr like interface to Digikam.
Main features:
- tags navigation
- album navigation
- date navigation with a calendar page
- cool iPhoto like zooming effect
To install follow these steps:
as root, you need to run:
gem install sqlite3-ruby
gem install rmagick
gem install calendar_grid
calendar_grid can be found here http://rubyforge.org/frs/?group_id=786
Once youve got all that installed:
uncompress the tarball, that should give you another tarball and a bash script script
run the script ./setup.sh as normal user
Ok now youre almost done:
edit the file rdigikam/app/helpers/application_helper.rb
edit the two variables on top. You might have something like:
@rdigikampath="/home/user/rdigikam-0.1/rdigikam" if you uncompressed the original tarball in your home.
and @mydigikampath="/home/user/Pictures"
Usage:
cd rdigikam
script/server
then open your browser to http://localhost:3000/tags
Enhancements:
- small UI improvement on Mozilla, now the tag list appear below the two navigation thumbs just like in konq
<<less
Download (0.068MB)
Added: 2006-09-03 License: GPL (GNU General Public License) Price:
1146 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5