Main > Free Download Search >

Free dvd extensions software for linux

dvd extensions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2106
cdrtools DVD Extensions 2.01.01a05

cdrtools DVD Extensions 2.01.01a05


cdrtools DVD Extensions adds DVD support to cdrtools. more>> <<less
Download (0.015MB)
Added: 2006-02-02 License: GPL (GNU General Public License) Price:
1365 downloads
VDR MP3/MPlayer Extensions 0.10.0

VDR MP3/MPlayer Extensions 0.10.0


VDR MP3/MPlayer Extensions let you play MP3s with Video Disk Recorder and provide a frontend for MPlayer. more>>
VDR MP3/MPlayer Extensions let you play MP3s with Video Disk Recorder and provide a frontend for MPlayer so you can use a DVB card to play files in formats like AVI, ASF, QT, MOV, VIVO, FLI, and FLC.

VDR MP3 plugin adds sound playback capability to VDR by Klaus Schmidinger.

Supported audio codecs:

- libmad Supports MPEG-1/2/2.5 with layers 1/2/3.
- libsndfile Supports MS WAV/A-law/u-law; Apple/SGI AIFF/AIFC; Sun/NeXT AU/SND; Amiga IFF/8SVX/16SV and more.
- libvorbis Supports Vorbis/Ogg.

The MP3 plugin is distributed as a dual-plugin together with the MPlayer plugin. The different audio codecs require additional support libraries.

VDR MPlayer plugin adds the ability to call MPlayer from within VDR (by Klaus Schmidinger), allowing to replay all video formats supported by MPlayer over your DVB card.

Note: for most formats MPlayer has to do on-the-fly transcoding to MPEG1. This requires a decent CPU to work (>1Ghz). It may work with slower CPUs if you tune down the transcoding quality.

The MPlayer plugin is distributed as a dual-plugin together with the MP3 plugin.

<<less
Download (0.11MB)
Added: 2007-06-17 License: GPL (GNU General Public License) Price:
870 downloads
Smack PubSub Extensions 1.2

Smack PubSub Extensions 1.2


Smack PubSub Extensions is a set of extensions to smack. more>>
Smack PubSub Extensions is a set of extensions to smack.

The extensions mainly include support for JEP-0060 aka PubSub but there are also a few utitlity classes. Please refer to the maven-generated documentation for further information.

<<less
Download (0.031MB)
Added: 2006-09-11 License: BSD License Price:
1143 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
Folder Extension Wizard 1.0.1

Folder Extension Wizard 1.0.1


Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files). more>>
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files).

A wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.

However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.

<<less
Download (0.007MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
909 downloads
MyxerMagic Web Extensions 1.0.0

MyxerMagic Web Extensions 1.0.0


MyxerMagic Web Extensions is a Firefox extension that allows you to quickly send any image on the web to a mobile phone. more>>
MyxerMagic Web Extensions is a Firefox extension that allows you to quickly send any image on the web directly to your mobile phone - right from the context menu of your favorite web browser!

Grab photos of friends and family from Flickr, Yahoo!, whatever. Better yet, grab photos of more attractive strangers from other places on the web.

Get the hottest celebrity shots from...wherever you surf! Dont hold your breath waiting for Bob Marley action shots to make it onto Cingulars deck.

Want album artwork from your favorite bands? Its waiting for you at their website or MySpace page.

Or, simply round out your stalker lifestyle by carrying around the MySpace profile picture of that hottie you almost asked out that one time but then, well, after that incident with the rabid poodle...

<<less
Download (0.036MB)
Added: 2007-07-18 License: MPL (Mozilla Public License) Price:
906 downloads
Zip extension for PHP 1.8.9

Zip extension for PHP 1.8.9


Zip extension for PHP is a zip management extension. more>>
Zip extension for PHP is a zip management extension.

It can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).

<<less
Download (0.038MB)
Added: 2007-05-20 License: The PHP License Price:
542 downloads
Wikipedia Lookup Extension 0.3.2

Wikipedia Lookup Extension 0.3.2


Lookups up the selected word in the Wikipedia encyclopedia. more>> Wikipedia Lookup Extension 0.3.2 is a powerful tool that makes it quick and easy to look up the selected word in the Wikipedia encyclopedia.<<less
Added: 2009-07-15 License: MPL Price: FREE
19 downloads
Object Extensions for PHP 0.1 Beta

Object Extensions for PHP 0.1 Beta


Object Extensions for PHP provides several classes that add runtime object extension and callbacks to the language. more>>
Object Extensions for PHP provides several classes that add runtime object extension and callbacks to the language. Object Extensions for PHP allows the programmer to add methods and properties to an object at runtime by dynamically extending by another object.

It also allows the creation of object property lists that allow for dynamic setting/getting of values in a fashion similar to JavaScript objects. These object property lists support basic value checking.

The Object Extensions library for PHP adds the following functionality to objects that extend the base class:

- Runtime object extension to "extend" an object by another class at runtime (to virtually inherit all public properties and methods).
- Runtime callback definitions to be able to pass function/method callbacks as variables, and subsequently execute them from other function/methods.
- Dynamic object properties class to handle runtime setting/getting of object properties, as well as ability to pass function arguments as object-based parameters rather than long list of options.

OBJECT EXTENSION:

- Base class (CExtendable) implements a _extend() function by which you may vritually extend an object by an instance of another object.
- Extended object (object passed to _extend) can reference parent object if supported by extended class.
- __get, __set and __call are all overriden to handle overriding undefined properties and methods
- Ability to reference a callback in a straightforward manner ($object->_callback()->method(args, [...]))

CALLBACK FUNCTIONALITY:

- Can create callbacks directly (through CCallback and derived classes)
- Can create method callbacks by calling _callback() method on CExtendable objects
- When combined with object extension and object properties, can provide a really easy way to execute callbacks.

OBJECT PROPERTIES:

- Base class extends ArrayIterator, all properties saved in an array
- Basic functionality to check values provided and/or set default values.
- Overrides __get, __set to get/set object properties.
- Can limit property set-tability to existing properties only, or to provided array of properties.
- Can enable read-only mode.
- Overrides __call, and in the case that the a property value with the same name as the method name exists, and is an instance of the ICallback interface, this callback is executed.

PHP COMPATIBILITY:

Object Extensions for PHP uses PHP5 functionality. It would be theoretically possible to implement similar functionality into PHP4, however, since I no longer develop in PHP4, I cannot properly test it.
<<less
Download (0.007MB)
Added: 2006-05-03 License: MIT/X Consortium License Price:
1271 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
Epiphany Extensions 2.26.1 / 2.27.4

Epiphany Extensions 2.26.1 / 2.27.4


Epiphany Extensions 2.26.1 / 2.27.4 is yet another excellent utility you should not miss. It is actually a collection of extensions for Epiphany, the GNOME web browser more>>
Epiphany Extensions 2.26.1 / 2.27.4 is yet another excellent utility you should not miss. It is actually a collection of extensions for Epiphany, the GNOME web browser.

Major Features: Available extensions:

  1. Actions - Execute arbitrary commands from the context menu
  2. Bookmarks Tray - Embed the bookmarks menu in the panel
  3. Certificate Viewer - View the server's certificate on secure connection
  4. Dashboard - Connect Epiphany to Dashboard
  5. Error Viewer and Validator - View errors in the page, and validate your pages off-line
  6. Mouse Gestures - Perform actions with mouse gestures
  7. Tab Groups - Group new tabs together like in older Epiphany versions
  8. Tabs Move-To Menu - Move tabs to other windows without drag-and-drop
  9. Tab States - Indicates new content in background tabs
  10. Page Info - Learn all there is to know about the current web page
  11. Python Console - Opens an interactive Python console.
  12. Sample - An extension template to ease writing your own extension
  13. Select Stylesheet - Select an alternate stylesheet on web pages that support it
  14. Sidebar - Adds a sidebar to Epiphany
  15. Smart-Bookmarks - Look up the selected text using a smart bookmark.

Requirements:

  • Gnome
<<less
Added: 2009-07-13 License: LGPL Price: FREE
13 downloads
 
Other version of Epiphany Extensions
Epiphany Extensions 2.18.3 / 2.19.6Epiphany Extensions package contains extension for Epiphany software. extensions sample Sample extension [use this as a template] sample-mozilla Sample extension
License:LGPL (GNU Lesser General Public License)
Download (1.1MB)
817 downloads
Added: 2007-07-31
SynapseLife Toolbar Extension 0.1

SynapseLife Toolbar Extension 0.1


SynapseLife Toolbar Extension provides easy access to SynapseLife. more>>
SynapseLife Toolbar Extension provides easy access to SynapseLife.
SynapseLife is a collection of 9 integrated web applications including tools for organizing your life including social bookmarking, rss feed aggregation, tagging, contacts, calendars, to-do lists, and a money ledgers.
Main features:
- Add favorites and feeds easily from the toolbar
- Livesearch of all of your items within SynapseLife
- Overlay of contextual icons and buttons on existing social networking sites for easy addition of contacts, calendar events, feeds and favorites.
<<less
Download (0.15MB)
Added: 2007-03-31 License: MPL (Mozilla Public License) Price:
965 downloads
Firefox Extension Backup Extension 4.0.5

Firefox Extension Backup Extension 4.0.5


Firefox Extension Backup Extension provides quickly and easily backup process of your Firefox extensions. more>>
https://addons.mozilla.org/en-US/firefox/downloads/file/14560/firefox_extension_backup_extension__febe_-4.0.5-fx.xpi
<<less
Download (0.36MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
950 downloads
3intentions SeekPost Extension 0.3.1

3intentions SeekPost Extension 0.3.1


3intentions SeekPost is a Firefox extension that allows members of 3intentions Seek sites to add and rate posts. more>>
3intentions SeekPost is a Firefox extension that allows members of 3intentions Seek sites to add and rate posts with a simple click from any page.

<<less
Download (0.007MB)
Added: 2007-05-02 License: MPL (Mozilla Public License) Price:
905 downloads
Lua Networking Extension Library 0.5

Lua Networking Extension Library 0.5


LUA is a small scripting language designed to be embedded inside your application to provide extensibility. more>>
LUA is a small scripting language designed to be embedded inside your application to provide extensibility.
It is also possible to extend the Lua scripting language itself via the use of extensions written in C. This page describes such an extension which provides a small number of basic networking and filesystem primitives.
By installing this extension you will be able to write networking applications in the Lua!
Enhancements:
- Added some filesystem primitives.
- Added API documentation & examples.
- The HTTP server now falls back to a default virtual host if none is specified, or if the attempted one doesnt exist.
- The HTTPD server now supports directory indexing if no index.html file is found in a directory.
- The HTTPD server now writes access.log files to each virtualhost.
<<less
Download (0.017MB)
Added: 2005-11-01 License: LGPL (GNU Lesser General Public License) Price:
1454 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5