authoring
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 614
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
<<lessYou 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
Download (0.55MB)
Added: 2007-05-30 License: GPL (GNU General Public License) Price:
890 downloads
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.
<<lessIt 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.
Download (3.7MB)
Added: 2006-10-03 License: The Apache License 2.0 Price:
1118 downloads
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.
<<lessWhen 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.
Download (0.18MB)
Added: 2006-10-17 License: Perl Artistic License Price:
1104 downloads
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.
<<lessmkudfiso (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.
Download (0.097MB)
Added: 2007-06-18 License: LGPL (GNU Lesser General Public License) Price:
536 downloads
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).
<<lessdvdauthor 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).
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 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.
<<lessMain 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.
Download (3.8MB)
Added: 2007-05-13 License: GPL (GNU General Public License) Price:
899 downloads
LaTeBlog 1.0
LaTeBlog provides a Makefile, a LaTeX document class, and HTML sniplets to publish your blog in PDF created with pdflatex. more>>
LaTeBlog project provides a Makefile, a LaTeX document class and HTML sniplets to publish your blog in PDF created with pdflatex.
Gives excellent readibility and proper footnotes.
A blog is a website in which journal entries are posted on a regular basis and displayed in reverse chronological order. The term blog is a shortened form of weblog or web log.
Authoring a blog, maintaining a blog or adding an article to an existing blog is called "blogging". Individual articles on a blog are called "blog posts," "posts" or "entries". A person who posts these entries is called a "blogger".
A blog comprises hypertext, images, and links (to other webpages and to video, audio and other files). Blogs use a conversational style of documentation. Often blogs focus on a particular "area of interest", such as Washington, D.C.s political goings-on. Some blogs discuss personal experiences.
Blogs can be hosted by dedicated blog hosting services, or they can be run using blog software on regular web hosting services. In the early 21st Century, blogging has quickly emerged as a popular and important means of communication.
<<lessGives excellent readibility and proper footnotes.
A blog is a website in which journal entries are posted on a regular basis and displayed in reverse chronological order. The term blog is a shortened form of weblog or web log.
Authoring a blog, maintaining a blog or adding an article to an existing blog is called "blogging". Individual articles on a blog are called "blog posts," "posts" or "entries". A person who posts these entries is called a "blogger".
A blog comprises hypertext, images, and links (to other webpages and to video, audio and other files). Blogs use a conversational style of documentation. Often blogs focus on a particular "area of interest", such as Washington, D.C.s political goings-on. Some blogs discuss personal experiences.
Blogs can be hosted by dedicated blog hosting services, or they can be run using blog software on regular web hosting services. In the early 21st Century, blogging has quickly emerged as a popular and important means of communication.
Download (0.004MB)
Added: 2006-01-25 License: Freely Distributable Price:
1367 downloads
ThingamaBlog 1.0.5
Thingamablog is a cross-platform, standalone blogging application that makes authoring and publishing your weblogs easy. more>>
Thingamablog is a cross-platform, standalone blogging application that makes authoring and publishing your weblogs almost effortless.
Unlike most blogging solutions, Thingamablog does NOT require a third-party blogging host, a cgi/php enabled web host, or a MySQL database.
In fact, all you need to setup, and manage, a blog with Thingamablog is FTP, SFTP, or network access to a web server.
Main features:
- Set up a blog in minutes via an intuitive wizard
- Maintain multiple blogs
- Effortlessly manage thousands of entries
- Dynamically update blog content
- Write entries offline (Dialup users)
- Publish your blog with a single click
- Read news with an integrated feed reader
- Make posts from your favorite feeds
- Create a unique layout with customizable templates
- Import entries from RSS/Atom feeds
- Set up flexible archiving options
- Organize your entries by category or date
- Save entries as drafts
- Define your own custom template tags
- Syndicate your blog via an RSS or Atom feed
- Ping services like weblogs.com, BlogRolling, and Blo.gs
- And much more...
<<lessUnlike most blogging solutions, Thingamablog does NOT require a third-party blogging host, a cgi/php enabled web host, or a MySQL database.
In fact, all you need to setup, and manage, a blog with Thingamablog is FTP, SFTP, or network access to a web server.
Main features:
- Set up a blog in minutes via an intuitive wizard
- Maintain multiple blogs
- Effortlessly manage thousands of entries
- Dynamically update blog content
- Write entries offline (Dialup users)
- Publish your blog with a single click
- Read news with an integrated feed reader
- Make posts from your favorite feeds
- Create a unique layout with customizable templates
- Import entries from RSS/Atom feeds
- Set up flexible archiving options
- Organize your entries by category or date
- Save entries as drafts
- Define your own custom template tags
- Syndicate your blog via an RSS or Atom feed
- Ping services like weblogs.com, BlogRolling, and Blo.gs
- And much more...
Download (3.8MB)
Added: 2005-11-29 License: GPL (GNU General Public License) Price:
1468 downloads
I Love Autumn Icons for Linux -
An icon collection designed to beautify your computer screen. more>> License:Free for personal non-commercial use, Includes a link back to author site
Comment:16 Cute Love Autumn Icons<<less
Download (252KB)
Added: 2009-04-14 License: Freeware Price: Free
192 downloads
MakeMovingMenus 0.6.0
MakeMovingMenus is a tool to generate a thumbnail menu background for DVD authoring. more>>
MakeMovingMenus (aka mmm) is a tool to generate a thumbnail menu background for DVD authoring for chapters of one file or multiple clips.
To prevent misunderstandings: mmm is not (yet?) a DVD menu authoring tool! It is a simple helper script to create fancy backgrounds for menus authored with dvdauthor, spumux etc.
Main features:
- Resizing of source pictures
- Generate PAL/NTSC compilant MPEG2 files
- arbitrary backgrounds through images or solid color
- play clips one after anoter or all at once
Enhancements:
- It is now possible to use any sound file as background music for your menu.
- More code cleanup has been done.
<<lessTo prevent misunderstandings: mmm is not (yet?) a DVD menu authoring tool! It is a simple helper script to create fancy backgrounds for menus authored with dvdauthor, spumux etc.
Main features:
- Resizing of source pictures
- Generate PAL/NTSC compilant MPEG2 files
- arbitrary backgrounds through images or solid color
- play clips one after anoter or all at once
Enhancements:
- It is now possible to use any sound file as background music for your menu.
- More code cleanup has been done.
Download (0.007MB)
Added: 2005-10-28 License: Perl Artistic License Price:
1457 downloads
Generate Numly Copyright 1.3
Generate Numly Copyright is a Firefox extension that registers documents and blogs for Numly copyright. more>>
Generate Numly Copyright is a Firefox extension that registers documents and blogs for Numly copyright. Numly Numbers are unique identifiers of electronic media and recognized worldwide by electronic publishing companies and electronic content providers. Numly Numbers are simple and quick to generate and serve as branded identifier for individuals or companies authoring or distributing electronic content and media.
<<less Download (0.006MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
878 downloads
Serna Free for Linux 4.1
Syntext Serna Free is a powerful and easy-to-use XML editor for WYSIWYG content authoring intended for personal use at home, documenting open-source projects, education, and other non-commercial uses. Available for Windows, Linux, MacOsX, SunSolaris. more>> <<less
Download (59.85MB)
Added: 2009-04-22 License: Freeware Price:
187 downloads
Mudawin 0.1
Mudawin is weblog client. more>>
Mudawin is weblog client.
Mudawin supports almost all leading blog services: Blogger, Wordpress, Movable Type, Typepad, Dotclear, and more.
A blog is a website in which items are posted on a regular basis and displayed in reverse chronological order. The term blog is a shortened form of weblog or web log. Authoring a blog, maintaining a blog or adding an article to an existing blog is called "blogging".
Individual articles on a blog are called "blog posts," "posts" or "entries". A person who posts these entries is called a "blogger". A blog comprises hypertext, images, and links (to other web pages and to video, audio and other files). Blogs use a conversational style of documentation. Often blogs focus on a particular "area of interest", such as Washington, D.C.s political goings-on. Some blogs discuss personal experiences.
Blogs can be hosted by dedicated blog hosting services, or they can be run using blog software on regular web hosting services. In the early 21st Century, blogging has quickly emerged as a popular and important means of communication.
<<lessMudawin supports almost all leading blog services: Blogger, Wordpress, Movable Type, Typepad, Dotclear, and more.
A blog is a website in which items are posted on a regular basis and displayed in reverse chronological order. The term blog is a shortened form of weblog or web log. Authoring a blog, maintaining a blog or adding an article to an existing blog is called "blogging".
Individual articles on a blog are called "blog posts," "posts" or "entries". A person who posts these entries is called a "blogger". A blog comprises hypertext, images, and links (to other web pages and to video, audio and other files). Blogs use a conversational style of documentation. Often blogs focus on a particular "area of interest", such as Washington, D.C.s political goings-on. Some blogs discuss personal experiences.
Blogs can be hosted by dedicated blog hosting services, or they can be run using blog software on regular web hosting services. In the early 21st Century, blogging has quickly emerged as a popular and important means of communication.
Download (1.3MB)
Added: 2006-02-03 License: Freeware Price:
1358 downloads
KMediaFactory 0.5.2
KMediafactory is easy to use template based dvd authoring tool. more>>
KMediafactory project is easy to use template based dvd authoring tool. You can quickly create DVD menus for home videos and TV recordings in three simple steps.
Main features:
- Supports DVD compatible MPEG2 videos.
- Select look for the menus.
- Output dvdauthor project.
- Output DVD video directory.
- This can be watched with eg. Xine or burned to DVD with eg. k3b.
- Output k3b project.
<<lessMain features:
- Supports DVD compatible MPEG2 videos.
- Select look for the menus.
- Output dvdauthor project.
- Output DVD video directory.
- This can be watched with eg. Xine or burned to DVD with eg. k3b.
- Output k3b project.
Download (2.2MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1225 downloads
iScholar 1.0
iScholar is a content-neutral authoring and publishing system that can be used to write on-line or pen & paper exams. more>>
iScholar project is a content-neutral authoring and publishing system that can be used to write on-line or paper & pen exams and course pages on virtually any topic.
iScholar is ideally suited to deliver or supplement the courses and curriculum of
- Professional Training Programs
- Corporate Training Programs
- Distance Education and Continuing Education
- University Courses
- Grade School or High School Classes
Main features:
Standard Features
- WYSIWYG interface for creating and editing exams
- Print feature lets you print pen & paper versions of on-line exams
Supports many question types including:
- multiple choice, multiple answer, true/false, drop-down
- Fill in the blank, Essay, Number Check, Range Check,
- Expression Check, Function Check
Other Features
- Automated marking
- Hints & Hint Penalties
- Multiple Attempts & Attempt penalties
- Timed Exams
- Test and Exam Certifications
- Questions can include images and audio/video elements.
- Question content can be written in HTML, LaTeX (for equations and math symbols) or plain Text
- Grouping of exams and course pages into modules with prerequisites and anti-requisites
<<lessiScholar is ideally suited to deliver or supplement the courses and curriculum of
- Professional Training Programs
- Corporate Training Programs
- Distance Education and Continuing Education
- University Courses
- Grade School or High School Classes
Main features:
Standard Features
- WYSIWYG interface for creating and editing exams
- Print feature lets you print pen & paper versions of on-line exams
Supports many question types including:
- multiple choice, multiple answer, true/false, drop-down
- Fill in the blank, Essay, Number Check, Range Check,
- Expression Check, Function Check
Other Features
- Automated marking
- Hints & Hint Penalties
- Multiple Attempts & Attempt penalties
- Timed Exams
- Test and Exam Certifications
- Questions can include images and audio/video elements.
- Question content can be written in HTML, LaTeX (for equations and math symbols) or plain Text
- Grouping of exams and course pages into modules with prerequisites and anti-requisites
Download (13MB)
Added: 2006-01-09 License: GPL (GNU General Public License) Price:
1385 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 authoring 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