Main > Free Download Search >

Free dvd authoring software for linux

dvd authoring

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 974
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
dvdauthor 0.6.13

dvdauthor 0.6.13


dvdauthor is a simple set of tools to help you author a DVD. more>>
dvdauthor is a simple set of tools to help you author a DVD. The idea is to be able to create menus, buttons, chapters, etc, but for now you can just take an mpeg stream (as created by mplex -f 8 from mjpegtools 1.6.0) and write it to DVD.
dvdauthor is a program that will generate a DVD movie from a valid mpeg2 stream that should play when you put it in a DVD player.
To start you need mpeg files that contain the necessary DVD VOB packets. These can be generated by passing -f 8 to mplex. See the included utility makevob.
There are 3 steps to building the DVD directory structure on your HDD.
1. Delete a previously authored dvd
dvddirdel [-o dir]
WARNING! This will delete without discrimination the contents of the directory that you specify!
2. Create your titlesets
dvdauthor [-o dir] [audio/video/subpicture options] [chapters]
To create 1 chapter per mpeg, simply do
dvdauthor [-o dir] [a/v/s options] chap1.mpg chap2.mpg chap3.mpg...
To manually specify chapters, use the --chapters option
dvdauthor [-o dir] [a/v/s options] -c chap1a.mpg chap1b.mpg -c chap2a.mpg chap2b.mpg ....
To add chapters every fifteen minutes, do
dvdauthor [-o dir] [a/v/s options] -c 0,15:00,30:00,45:00,1:00:00,1:15:00... longvideo.mpg
Call dvdauthor for each titleset you want to create. Note that due to the DVD standard, all audio, video, and subpicture options must be set once for the entire titleset; i.e. you cannot mix pal and ntsc video in the same titleset. For that you must generate separate titlesets.
Run dvdauthor -h to see the audio, video, and subpicture options. Note that dvdauthor can autodetect most parameters except the language.
3. Create the table of contents
dvdauthor -T [-o dir]
Viola! You now have a DVD directory structure that will probably work! You can now write this out to your DVD, mini-DVD (CD), or just play it from your HDD. To generate the UDF image to burn to DVD, use mkisofs from cdrtools-1.11a27 or later. Simply pass it the -dvd-video option.
BTW, if you have an old HDD that you use for generating dvd images, you can create /usr/local/etc/dvdauthor.conf or ~/.dvdauthorrc and add the line:
WORKDIR=foo
Then you wont need to specify -o to dvddirgen or dvdauthor. Alternatively, you could just set
WORKDIR=mydvd
to always have it create a DVD in the current working directory.
Enhancements:
- Support of VOBUs without audio or video has been added.
- Reading from file descriptors for VOBs, palette, and XML has been implemented.
- Support for really long subtitles and for full sized PTS/SCR has been added.
- Audio type detection logic has been improved.
- Runtime memory requirement has been substantially reduced.
- YUV handling in spuunmux and subgen has been fixed.
- SVCD subtitling has been fixed.
- NTSC 3:2 pulldown handling has been fixed.
- Handling of audio packets that have no PTS has been fixed.
- Many more minor bugs have been fixed and features have been added. Documentation has been improved.
<<less
Download (0.31MB)
Added: 2007-01-19 License: GPL (GNU General Public License) Price:
1013 downloads
dvdmenuauthor 0.02

dvdmenuauthor 0.02


dvdmenuauthor makes it easy and efficient to author a DVD with menus in an indirect (non-WYSIWYG) way. more>>
dvdmenuauthor project makes it easy and efficient to author a DVD with menus in an indirect (non-WYSIWYG) way. An XML project file drives the DVD authoring, from which both menus and a dvdauthor XML file are generated.

dvdauthor and spumux are then used to author the DVD filesystem. Menu items (buttons and static items such as images and text) can be specified conscisely in the project XML file with LaTeX markup (to be processed by pdfLaTeX and rendered by xpdf).

<<less
Download (0.097MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
921 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
Module::Build::Authoring 0.2805

Module::Build::Authoring 0.2805


Module::Build::Authoring are authoring Module::Build modules. more>>
Module::Build::Authoring are authoring Module::Build modules.

When creating a Build.PL script for a module, something like the following code will typically be used:

use Module::Build;
my $build = Module::Build->new
(
module_name => Foo::Bar,
license => perl,
requires => {
perl => 5.6.1,
Some::Module => 1.23,
Other::Module => >= 1.2, != 1.5, < 2.0,
},
);
$build->create_build_script;

A simple module could get away with something as short as this for its Build.PL script:

use Module::Build;
Module::Build->new(
module_name => Foo::Bar,
license => perl,
)->create_build_script;

The model used by Module::Build is a lot like the MakeMaker metaphor, with the following correspondences:

In Module::Build In ExtUtils::MakeMaker
--------------------------- ------------------------
Build.PL (initial script) Makefile.PL (initial script)
Build (a short perl script) Makefile (a long Makefile)
_build/ (saved state info) various config text in the Makefile

Any customization can be done simply by subclassing Module::Build and adding a method called (for example) ACTION_test, overriding the default test action. You could also add a method called ACTION_whatever, and then you could perform the action Build whatever.
For information on providing compatibility with ExtUtils::MakeMaker, see Module::Build::Compat and http://www.makemaker.org/wiki/index.cgi?ModuleBuildConversionGuide.

<<less
Download (0.18MB)
Added: 2006-10-17 License: Perl Artistic License Price:
1104 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
Swing XML Authoring Tool 0.5.5

Swing XML Authoring Tool 0.5.5


SwiXAT is a Swing-based authoring tool for the quick and easy development of GUI Java applications. more>>
Swing XML Authoring Tool is a Swing-based authoring tool for the quick and easy development of GUI Java applications.
It implements out-of-box a true MVC framework and uses XML to define the view (SwiXml is used as the XUL engine), BeanShell as a scripting language for the controller, and JXPath as the binding mechanism between the view and model.
Swing XML Authoring Tool provides a complete environment in which it is possible to almost write an entire Java Swing application without writing Java compiled code. The use of XPath makes it very simple to traverse the object tree of the applications business model.
It takes a lot of work to develop a Swing application, laying out and configuring GUI components, and then integrating them with the application functionality. SwiXAT addresses both of these issues by providing a framework based on a complete implementation of the MVC architectural pattern.
The benefits obtained by a such framework are the followings:
- Architectural Correctness: By adopting a true MVC (Model View Controller) based framework, it is very easy to correctly implement any UI application. Its not difficult to write a Java/Swing application, but whats very difficult is to build a good, well designed Swing application, where the adoption of the MVC paradigm permits to reduce the maintenance costs, thanks to the clean separation between the view and the application logic.
- Development Speed: The adoption of a framework reduces the development cost by providing out-of-box, well integrated and easy to use common features, like wizards, plugins, support for MDI interfaces, etc. Moreover, the use of XML to define the user interface, as well as the adoption of an interpreted scripting language, permits to implement the Code&Test development style, where the compilation time is reduced to zero.
- Code Reuse: The net separation between the view and the control logic permits to write reusable modules that can be combined in several manners. The developer is naturally induced to modularize the application and write reusable code, minimizing the effort of building new applications or adding new functionality to existing ones.
SwiXAT is all the above, and we hope youll appreciate our effort.
<<less
Download (3.7MB)
Added: 2006-10-03 License: The Apache License 2.0 Price:
1118 downloads
Blu-ray video authoring tools 20070617-2301

Blu-ray video authoring tools 20070617-2301


Blu-ray video authoring tools suite allow you to produce Blu-ray video discs. more>>
Blu-ray video authoring tools package is a free open source suite of Blu-ray (BD-R and BD-RE) authoring tools that allow you to produce Blu-ray video discs.

mkudfiso (Blu-ray authoring tool set), a utility to create ISO images containing
a pure UDF filesystem, intended primarily for Blu-ray authoring but can be used
for any purpose (including CD-R and DVD-R). This tool can be used to author individual files larger than 4GB, which is a requirement for Blu-ray and other high-definition formats.

THIS TOOL DOES NOT GENERATE ISO 9660 STRUCTURES. Use "mkisofs" if you want ISO 9660, Joliet, Rock Ridge, etc. in the structure. This is a pure UDF generator.

<<less
Download (0.097MB)
Added: 2007-06-18 License: LGPL (GNU Lesser General Public License) Price:
536 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
DVD BacKup Express 5

DVD BacKup Express 5


DVD BacKup Express is a small Kommander Script to create a GUI for dvdbackup. more>>
DVD BacKup Express is a small Kommander Script to create a GUI for dvdbackup.

I made it because it can be run on any platform with kommander installed and dvdbackup available (which may be more platforms than kdvdbackup or other binary frontends are available for)

There is a lot of room for improvement here. Feel free to spruce it up a bit and send me the new .kmdr file and i will update this.

<<less
Download (0.004MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1354 downloads
Ts2Dvd 0.3o

Ts2Dvd 0.3o


Ts2Dvd lets you make video DVD from almost any video file. more>>
Ts2Dvd lets you make video DVD from almost any video file. You just have to select input video files, add subtitles file, then press Start button. After few minutes you get VIDEO_TS for burning it as DVD.

<<less
Download (0.82MB)
Added: 2006-06-11 License: GPL (GNU General Public License) Price:
717 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
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
dvdindex 0.2

dvdindex 0.2


dvdindex is a CD/DVD archiving utility with built-in encryption support to manage a collection of CDs/DVDs. more>>
dvdindex is a free, open-source CD/DVD archiving utility to manage a collection of
CDs/DVDs.

It has built-in encryption support and is released under the GPL.

<<less
Download (0.076MB)
Added: 2005-10-01 License: GPL (GNU General Public License) Price:
1483 downloads
DVDStyler 1.5

DVDStyler 1.5


DVDStyler is a crossplatform DVD Authoring System. more>>
DVDStyler is a crossplatform DVD Authoring System.
DVDStyler project is free software distributed under GNU General Public License (GPL).
Main features:
- drag and drop MPEG files directly
- import image file for background
- create NTSC/PAL menus
- place text and images anywhere on the menu screen
- change font/color
- put basic text buttons, change font/color and background color
- copy and paste any menu object
- set chapters for each movie
- change post command for each movie
<<less
Download (0.80MB)
Added: 2007-05-16 License: GPL (GNU General Public License) Price:
1258 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5