xine
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 60
oxine 0.6.5
oxine is a purely OSD-based xine frontend. more>>
oxine project is a lightweight gui for the famous xine engine which uses the on screen display functionality of xine to display its user interface elements like buttons, lists sliders and so on.
Due to this, oxine can easily be ported to any video output device the xine library provides (e.g. frame buffer, dxr3,...) and is particularly suitable for appliances like set-top boxes, home entertainment systems or kiosk systems.
Main features:
- x11, dxr3 and framebuffer output
- mouse, keyboard and lirc support
- autoplay dvd, vcd, svcd, cdrom and audio cd
- browse and select from your own mediamarks
- browsing through file system, m3u playlists and audio cd tracks
- goom support
- playlists
- automatic stream title blending
Quite straight forward. Make sure that you have installed the latest version of xine-lib. At least beta9 is required. Then download and unpack oxine source tarball, change to the directory created and type.
./configure --prefix=/some/path
make
make install
If you checked oxine out of CVS make sure that you have recent versions of autoconf and automake installed. (Tested with: automake 1.7.2 and autoconf 2.57.) Then type
./autogen.sh --prefix=/some/path
make
make install
To set up autoplay functionality make sure of the following things:
- cdrom or dvd drive is mountable by the user oxine runs with
- cdrom or dvd device and mountpoint are set correctly. Default is device: /dev/dvd mountpoint: /dvd. To change this, run oxine one time and click on shutdown. Oxine will then create its default config file in your home (~/.oxine/config). While oxine is not running, edit this file with an editor.
If you use lirc, make sure that you dont have irxevent daemon running. Otherwise oxine may get all lirc events twice which is really frustrating. There is a default lircrc installed in $PREFIX/share/oxine. You can customize this file in place or - much better - copy it to ~/.oxine where it will not be overwritten if oxine is reinstalled. If you upgrade oxine, read the ChangeLog - the lirc file config options may change from time to time.
Start oxine with
oxine [options] [mrls...]
options are:
-h print command line help
-v print oxines version
-f start in fullscreen mode
-V driver let xine use specified video driver e.g.: auto, xv, xshm, dxr3, ...
-A driver let xine use specified audio driver e.g.: auto, oss, alsa, ...
Enhancements:
- Added check for version of libjsw to catch JSClose bug.
- Added check for necessary files to detect bad installation.
<<lessDue to this, oxine can easily be ported to any video output device the xine library provides (e.g. frame buffer, dxr3,...) and is particularly suitable for appliances like set-top boxes, home entertainment systems or kiosk systems.
Main features:
- x11, dxr3 and framebuffer output
- mouse, keyboard and lirc support
- autoplay dvd, vcd, svcd, cdrom and audio cd
- browse and select from your own mediamarks
- browsing through file system, m3u playlists and audio cd tracks
- goom support
- playlists
- automatic stream title blending
Quite straight forward. Make sure that you have installed the latest version of xine-lib. At least beta9 is required. Then download and unpack oxine source tarball, change to the directory created and type.
./configure --prefix=/some/path
make
make install
If you checked oxine out of CVS make sure that you have recent versions of autoconf and automake installed. (Tested with: automake 1.7.2 and autoconf 2.57.) Then type
./autogen.sh --prefix=/some/path
make
make install
To set up autoplay functionality make sure of the following things:
- cdrom or dvd drive is mountable by the user oxine runs with
- cdrom or dvd device and mountpoint are set correctly. Default is device: /dev/dvd mountpoint: /dvd. To change this, run oxine one time and click on shutdown. Oxine will then create its default config file in your home (~/.oxine/config). While oxine is not running, edit this file with an editor.
If you use lirc, make sure that you dont have irxevent daemon running. Otherwise oxine may get all lirc events twice which is really frustrating. There is a default lircrc installed in $PREFIX/share/oxine. You can customize this file in place or - much better - copy it to ~/.oxine where it will not be overwritten if oxine is reinstalled. If you upgrade oxine, read the ChangeLog - the lirc file config options may change from time to time.
Start oxine with
oxine [options] [mrls...]
options are:
-h print command line help
-v print oxines version
-f start in fullscreen mode
-V driver let xine use specified video driver e.g.: auto, xv, xshm, dxr3, ...
-A driver let xine use specified audio driver e.g.: auto, oss, alsa, ...
Enhancements:
- Added check for version of libjsw to catch JSClose bug.
- Added check for necessary files to detect bad installation.
Download (0.28MB)
Added: 2007-03-22 License: GPL (GNU General Public License) Price:
949 downloads
gxine 0.5.11
gxine is a GUI for xine free multimedia player. more>>
xine is a free multimedia player. It plays back CDs, DVDs, and VCDs. It also decodes multimedia files like AVI, MOV, WMV, and MP3 from local disk drives, and displays multimedia streamed over the Internet.
gxine interprets many of the most common multimedia formats available--and some of the most uncommon formats, too. All those features come in a reusable library (xine-lib) which can easily be embedded in your applications.
Enhancements:
- bug fixes
<<lessgxine interprets many of the most common multimedia formats available--and some of the most uncommon formats, too. All those features come in a reusable library (xine-lib) which can easily be embedded in your applications.
Enhancements:
- bug fixes
Download (1.0MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
998 downloads
Video::Xine 0.02
Video::Xine is a Perl interface to libxine. more>>
Video::Xine is a Perl interface to libxine.
SYNOPSIS
use Video::Xine;
# Create and initialize the Xine object
my $xine = Video::Xine->new(
config_file => "$ENV{HOME}/.xine/config",
);
# Load a video driver
my $video_driver = Video::Xine::Driver::Video->new($xine,"auto",1,$x11_visual);
# Create a new stream (put your video driver under $DRIVER)
my $stream = $xine->stream_new(undef,$DRIVER);
# Open a file on the stream
$stream->open(file://my/movie/file.avi)
or die "Couldnt open stream: ", $stream->get_error();
# Get the current position (0 .. 65535), position in time, and length
# of stream in milliseconds
my ($pos, $pos_time, $length_time) = $stream->get_pos_length();
# Start the stream playing
$stream->play()
or die "Couldnt play stream: ", $xine->get_error();
# Play the stream to the end
while ( $stream->get_status() == XINE_STATUS_PLAY ) {
sleep(1);
}
A perl interface to Xine, the Linux movie player. More properly, an interface to libxine, the development library. Requires installation of libxine.
Xine by itself does not provide a user interface, and neither does this interface. Instead, you must set up the window using your own windowing code, and pass the window information to Xine.
<<lessSYNOPSIS
use Video::Xine;
# Create and initialize the Xine object
my $xine = Video::Xine->new(
config_file => "$ENV{HOME}/.xine/config",
);
# Load a video driver
my $video_driver = Video::Xine::Driver::Video->new($xine,"auto",1,$x11_visual);
# Create a new stream (put your video driver under $DRIVER)
my $stream = $xine->stream_new(undef,$DRIVER);
# Open a file on the stream
$stream->open(file://my/movie/file.avi)
or die "Couldnt open stream: ", $stream->get_error();
# Get the current position (0 .. 65535), position in time, and length
# of stream in milliseconds
my ($pos, $pos_time, $length_time) = $stream->get_pos_length();
# Start the stream playing
$stream->play()
or die "Couldnt play stream: ", $xine->get_error();
# Play the stream to the end
while ( $stream->get_status() == XINE_STATUS_PLAY ) {
sleep(1);
}
A perl interface to Xine, the Linux movie player. More properly, an interface to libxine, the development library. Requires installation of libxine.
Xine by itself does not provide a user interface, and neither does this interface. Instead, you must set up the window using your own windowing code, and pass the window information to Xine.
Download (0.63MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1204 downloads
Picoxine 0.0.7
PicoXine is a (very small) XINE implementation for playing audio events as a replacement for ARTS. more>>
PicoXine is a (very small) XINE implementation for playing audio events as a replacement for ARTS. Picoxines extremely small (the source code is only 3.0KiB long!)
It offers great response time, its faster than MPlayer upon start-up, and it has no stdout output if no errors are found. Its, therefore, completely transparent.
It requires Xine-Lib (any version). If your distro uses development packages, you need xine-devel and libc6-devel
Enhancements:
- Added a patch given to me by Diego Flameeyes Petteno
- Further optimisation
<<lessIt offers great response time, its faster than MPlayer upon start-up, and it has no stdout output if no errors are found. Its, therefore, completely transparent.
It requires Xine-Lib (any version). If your distro uses development packages, you need xine-devel and libc6-devel
Enhancements:
- Added a patch given to me by Diego Flameeyes Petteno
- Further optimisation
Download (0.014MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
1137 downloads
Console Xine Front End 0.9.2
Console Xine Front End (CXFE) is an extremely simple front end for Xine. more>>
Console Xine Front End (CXFE) is an extremely simple front end for Xine. It is meant to be comfortable for people used to MPlayer.
So why not just use MPlayer?
While MPlayer is an excellent movie player, its dvd playback capabilties has been lacking for a long time. Besides, choice is a good thing :-) To tell the truth, CXFE was mainly created as another movie player for MMS.
Current command line parameters:
-vo < driver > Set video out driver (dxr3/xv/xshm/fb)
-ao < driver > Set audio out driver (alsa/oss)
-i < driver > Set control driver (lirc) Keyboard is enabled at all times)
-fs Start cxfe in fullscreen
< mrl > Valid xine MRL (ex: dvd:/) Up to 1000 MRLs are allowed
-v Prints cxfe version and exits
-d Start cxfe with deinterlacing plugins on
-p Specify custom deinterlacing plugin to use
--help Prints this help
Example: cxfe -vo xv -ao alsa -i lirc -dev /dev/dvd dvd:/)
<<lessSo why not just use MPlayer?
While MPlayer is an excellent movie player, its dvd playback capabilties has been lacking for a long time. Besides, choice is a good thing :-) To tell the truth, CXFE was mainly created as another movie player for MMS.
Current command line parameters:
-vo < driver > Set video out driver (dxr3/xv/xshm/fb)
-ao < driver > Set audio out driver (alsa/oss)
-i < driver > Set control driver (lirc) Keyboard is enabled at all times)
-fs Start cxfe in fullscreen
< mrl > Valid xine MRL (ex: dvd:/) Up to 1000 MRLs are allowed
-v Prints cxfe version and exits
-d Start cxfe with deinterlacing plugins on
-p Specify custom deinterlacing plugin to use
--help Prints this help
Example: cxfe -vo xv -ao alsa -i lirc -dev /dev/dvd dvd:/)
Download (0.075MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
820 downloads
Xine 1.1.7 (xine-lib)/0.99.5 (xine-ui)
Xine is a free multimedia player. more>>
xine is a free (gpl-licensed) high-performance, portable and reusable multimedia playback engine. xine itself is a shared library with an easy to use, yet powerful api which is used by many applications for smooth video playback and video processing purposes.
Main features:
- xine is fast:
- All included decoders are optimized to use MMX, MMXEXT, SSE and 3DNow! acceleration if available. The well designed architecture moves data efficiently across plugins without requiring extra memory copies to be made. Multi-threaded implementation provide big gains on SMP systems.
- xine is extensible:
- Plugins are probed on startup and new ones may be installed from third party (although the most important are already provided).
- xine is reusable:
- All described features are available from a library and may be called from other applications. A default X11 GUI (xine-ui) is available but any other frontend can use the xine-lib too. There are several of them already available: gtk (gxine and sinek), gnome2 (Totem), gtk2 (GQoob), scriptable console (toxine), kde (kxine), kdemultimedia (xine aRts plugin) and even a Netscape/Mozilla plugin. (some frontends may be at beta stage)
General features:
- Skinnable GUI
- Download and installation of new skins from the internet
- Navigation controls (seeking, pause, fast, slow, next chapter, etc)
- Linux InfraRed Control support (LIRC)
- On Screen Display features
- DVD and external subtitles
- DVD/VCD menus
- Audio and subtitle channel selection
- Closed Caption support
- Brightness, contrast, audio volume, hue, saturation adjusting (requires hardware/driver support)
- Playlists
- Mediamarks
- Image snapshot
- Audio resampling
- Software deinterlacing algorithms
- 2-3 pulldown detection (tvtime plugin)
- Configuration dialog
- Aspect ratio changing
- Fullscreen display
- DTS passthrough
- TV fullscreen support using nvtvd
- Streaming playback support
<<lessMain features:
- xine is fast:
- All included decoders are optimized to use MMX, MMXEXT, SSE and 3DNow! acceleration if available. The well designed architecture moves data efficiently across plugins without requiring extra memory copies to be made. Multi-threaded implementation provide big gains on SMP systems.
- xine is extensible:
- Plugins are probed on startup and new ones may be installed from third party (although the most important are already provided).
- xine is reusable:
- All described features are available from a library and may be called from other applications. A default X11 GUI (xine-ui) is available but any other frontend can use the xine-lib too. There are several of them already available: gtk (gxine and sinek), gnome2 (Totem), gtk2 (GQoob), scriptable console (toxine), kde (kxine), kdemultimedia (xine aRts plugin) and even a Netscape/Mozilla plugin. (some frontends may be at beta stage)
General features:
- Skinnable GUI
- Download and installation of new skins from the internet
- Navigation controls (seeking, pause, fast, slow, next chapter, etc)
- Linux InfraRed Control support (LIRC)
- On Screen Display features
- DVD and external subtitles
- DVD/VCD menus
- Audio and subtitle channel selection
- Closed Caption support
- Brightness, contrast, audio volume, hue, saturation adjusting (requires hardware/driver support)
- Playlists
- Mediamarks
- Image snapshot
- Audio resampling
- Software deinterlacing algorithms
- 2-3 pulldown detection (tvtime plugin)
- Configuration dialog
- Aspect ratio changing
- Fullscreen display
- DTS passthrough
- TV fullscreen support using nvtvd
- Streaming playback support
Download (0.47MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
892 downloads
Codeine 1.0.1
Codeine is a very simple xine-based media player. more>>
Codeine project is a very simple xine-based media player.
Main features:
- Plays DVDs, VCDs, all video formats *
- Bundled with a simple web-page KPart () Starts very quickly
- Simple, uncluttered interface
- "Session based"
- Intelligent behaviour
- You can record http streams with the hidden record action
- You can use drag and drop to play files. Try dragging shoutcast stream playlists, they will play too.
<<lessMain features:
- Plays DVDs, VCDs, all video formats *
- Bundled with a simple web-page KPart () Starts very quickly
- Simple, uncluttered interface
- "Session based"
- Intelligent behaviour
- You can record http streams with the hidden record action
- You can use drag and drop to play files. Try dragging shoutcast stream playlists, they will play too.
Download (0.16MB)
Added: 2006-05-11 License: GPL (GNU General Public License) Price:
1263 downloads
Kaffeine 0.8.5
Kaffeine is a xine based media player for KDE3. more>>
Kaffeine is a full featured Multimedia-Player for KDE. By default it uses xine as backend.
Kaffeine is free software distributed under the terms of the GNU General Public Licence.
Main features:
- Timeshifting
- Instant record
- Electronic Program Guide
- On screen display
Enhancements:
- DVB: scan: check for CA descriptors in PMT to correct CA flag.
- DVB: add a file size limit option (usefull for some "limited" filesystems)
- xine-part: added "QString screenShot()" dcop call (returns filename)
- DVB: save/load epg data
- DVB: insert PSI tables to make broadcast stream VLC compliant ( vlc requires SDT/PAT/PMTs )
- DVB: reworked dvbevents to speed up eit parsing and fix events duplication.
- dcop: make getTimePos() to return acurrate value.
- DVB: add a "recall" button, that zap to the previous played channel.
- DVB: make channel visible and selected after editing.
- DVB: reset search after zap.
- DVB: use iconv (a lot faster) instead of qtextcodec to convert sections strings
- DVB: improved epg filter.
- DVB: added a search field in channels list
- DVB: added a filter box to epg dialog, patch by Michael Hoertnagl
- DVB: added channels list rmb menu entry to edit channel.
<<lessKaffeine is free software distributed under the terms of the GNU General Public Licence.
Main features:
- Timeshifting
- Instant record
- Electronic Program Guide
- On screen display
Enhancements:
- DVB: scan: check for CA descriptors in PMT to correct CA flag.
- DVB: add a file size limit option (usefull for some "limited" filesystems)
- xine-part: added "QString screenShot()" dcop call (returns filename)
- DVB: save/load epg data
- DVB: insert PSI tables to make broadcast stream VLC compliant ( vlc requires SDT/PAT/PMTs )
- DVB: reworked dvbevents to speed up eit parsing and fix events duplication.
- dcop: make getTimePos() to return acurrate value.
- DVB: add a "recall" button, that zap to the previous played channel.
- DVB: make channel visible and selected after editing.
- DVB: reset search after zap.
- DVB: use iconv (a lot faster) instead of qtextcodec to convert sections strings
- DVB: improved epg filter.
- DVB: added a search field in channels list
- DVB: added a filter box to epg dialog, patch by Michael Hoertnagl
- DVB: added channels list rmb menu entry to edit channel.
Download (0.20MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
831 downloads
Linux-EduCD 0.8
Linux-EduCD is a Polish live DVD based on KANOTIX, with focus on education, graphics, office, multimedia. more>>
Linux-EduCD is a Polish live DVD based on KANOTIX, with focus on education, graphics, office, multimedia and software development.
Main features:
- addition of the Compiz desktop;
- integration of GParted into the hard disk installer;
- new boot options;
- Linux kernel 2.6.18 with extra drivers and modules;
- KDE 3.5.5;
- OpenOffice.org 2.0.4;
- a range of educational software (Celestia, OpenDX, PyMOL, Rasmol, DrGeo, Yacas); multimedia applications (GIMP 2.2.13, Blender 2.42, Amarok, Audacity, Xine); network and system administration software (Wireshark, Nessus, Iptraf, EtherApe, Cheops);
- new development packages (DrScheme, Ruby, VisualPython, GPS, GNAT, Glade)
<<lessMain features:
- addition of the Compiz desktop;
- integration of GParted into the hard disk installer;
- new boot options;
- Linux kernel 2.6.18 with extra drivers and modules;
- KDE 3.5.5;
- OpenOffice.org 2.0.4;
- a range of educational software (Celestia, OpenDX, PyMOL, Rasmol, DrGeo, Yacas); multimedia applications (GIMP 2.2.13, Blender 2.42, Amarok, Audacity, Xine); network and system administration software (Wireshark, Nessus, Iptraf, EtherApe, Cheops);
- new development packages (DrScheme, Ruby, VisualPython, GPS, GNAT, Glade)
Download (1366MB)
Added: 2007-06-16 License: GPL (GNU General Public License) Price:
860 downloads
Lumiere 0.5
Lumiere is a GNOME frontend to libxine from the xine project. more>>
Lumiere is a GNOME frontend to libxine from the xine project. It has the looks of XMMS or Winamp and integrates seemlessly with the Gnome Desktop.
Lumiere is a media player, it just plays audio and video files. It is meant to work with Linux and alikes, not Windows.
Lumiere is a GNOME frontend to libxine from the xine project. It has the looks of XMMS or Winamp and integrates seemlessly with the Gnome Desktop. It uses most of the Gnome technologies available (Intercommunication, configuration registry, session management...).
Lumiere features a player with playlist management, visual effects, notification icon, a server mode. It can be used as a Nautilus "Viewer" and registers itself with the right-click menu of nautilus.
Lumiere depends on libxine to play medias, it will play only what is supported by your libxine (a default installation should handle most media types).
Lumiere is not aggressive with your computer, it needs little resources (if you use GNOME) and will not keep a hand on your audia or video hardware when not playing.
Main features:
- Play mp3, ogg, DivX;-), DVDs, Audio CDs...
- Integrate fully with the Gnome desktop (mime-types, dragn drop, notification area...)
- Keep it it memory, it wont keep your audio or XVideo devices busy
- Use it with Mozilla or Galeon, through mozilla-bonobo
- Hey, it follows mostly the "Human Interface Guidelines" from freedesktop.org, this means standard key shortcuts, standard menus, application registry registration, standard secondary windows... It works fine with Gnopernicus screen reader.
- It is time to throw away XMMS...
<<lessLumiere is a media player, it just plays audio and video files. It is meant to work with Linux and alikes, not Windows.
Lumiere is a GNOME frontend to libxine from the xine project. It has the looks of XMMS or Winamp and integrates seemlessly with the Gnome Desktop. It uses most of the Gnome technologies available (Intercommunication, configuration registry, session management...).
Lumiere features a player with playlist management, visual effects, notification icon, a server mode. It can be used as a Nautilus "Viewer" and registers itself with the right-click menu of nautilus.
Lumiere depends on libxine to play medias, it will play only what is supported by your libxine (a default installation should handle most media types).
Lumiere is not aggressive with your computer, it needs little resources (if you use GNOME) and will not keep a hand on your audia or video hardware when not playing.
Main features:
- Play mp3, ogg, DivX;-), DVDs, Audio CDs...
- Integrate fully with the Gnome desktop (mime-types, dragn drop, notification area...)
- Keep it it memory, it wont keep your audio or XVideo devices busy
- Use it with Mozilla or Galeon, through mozilla-bonobo
- Hey, it follows mostly the "Human Interface Guidelines" from freedesktop.org, this means standard key shortcuts, standard menus, application registry registration, standard secondary windows... It works fine with Gnopernicus screen reader.
- It is time to throw away XMMS...
Download (0.69MB)
Added: 2005-07-20 License: GPL (GNU General Public License) Price:
1565 downloads
Ivman 0.6.13
Ivman is a flexible userspace volume manager for Linux. more>>
Ivman is an extremely flexible desktop independent frontend to HAL, the userspace Hardware Abstraction Layer for Linux (http://en.wikipedia.org/wiki/Linux).
Ivman can be used to execute arbitrary commands when devices are added to or removed from your system, or when device properties change. Any properties of the new or changed device can be included within the executed command.
Main features:
- mount/unmount CDs/DVDs/removable USB drives (this is Ivmans original purpose)
- start CD player or ripper or anything else you like when an audio CD is inserted
- start Xine or MPlayer or anything else you like when a video DVD is inserted
- run commands when a specific CD or DVD is inserted (e.g. immediately eject a Windows XP CD :-)
- run commands when your network interfaces are activated or deactivated
- have nice little popups appear on your desktop when new hardware is attached
- pretty much anything else you can think of, as long as your hardware is supported by HAL.
Enhancements:
- Some DBus assertion errors were fixed.
<<lessIvman can be used to execute arbitrary commands when devices are added to or removed from your system, or when device properties change. Any properties of the new or changed device can be included within the executed command.
Main features:
- mount/unmount CDs/DVDs/removable USB drives (this is Ivmans original purpose)
- start CD player or ripper or anything else you like when an audio CD is inserted
- start Xine or MPlayer or anything else you like when a video DVD is inserted
- run commands when a specific CD or DVD is inserted (e.g. immediately eject a Windows XP CD :-)
- run commands when your network interfaces are activated or deactivated
- have nice little popups appear on your desktop when new hardware is attached
- pretty much anything else you can think of, as long as your hardware is supported by HAL.
Enhancements:
- Some DBus assertion errors were fixed.
Download (0.27MB)
Added: 2006-12-02 License: QPL (QT Public License) Price:
1058 downloads
Xfmedia 0.9.2
Xfmedia is a simple media player. more>>
Xfmedia project is a simple media player.
Xfmedia is a simple audio and video player based on the xine engine, using the core Xfce desktop libraries.
It is designed to be fast and easy-to-use, taking up a minimum of screen real estate, while providing easy access to media files of all types.
<<lessXfmedia is a simple audio and video player based on the xine engine, using the core Xfce desktop libraries.
It is designed to be fast and easy-to-use, taking up a minimum of screen real estate, while providing easy access to media files of all types.
Download (0.78MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1064 downloads
VideoCut 0.1.1
VideoCut project is an open source desktop application specialized for creating compositions of screenshots from video files. more>>
VideoCut project is an open source desktop application specialized for creating compositions of screenshots from video files. The project uses xine-lib and Qt-4
Languages:
- English
- Ukrainian
- Russian
<<lessLanguages:
- English
- Ukrainian
- Russian
Download (0.55MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
508 downloads
Lxdvdrip 1.70
Lxdvdrip is a command line tool to make a copy from a video DVD. more>>
Lxdvdrip is a command line tool to make a copy from a video DVD. It automates the process of ripping, authoring, previewing, and burning the DVD.
Lxdvdrip project uses tools like mplayer, transcode, streamdvd, dvdauthor, and growisofs. You can backup the main feature or the whole DVD.
Main features:
- Automatic Selection of the longest Title
- Automatic Calculation of Factor to Requant
- Automatic Read of Volume-ID
- Automatic Chapter Separation from Original
- Ripping of Audiotracks in every Language
- Selection of dts-Audiotracks as Default
- Selection of two Subpicture-Tracks possible
- Ripping and Re-Authoring
- Preview of VOB-Files with mplayer or xine
- Burning with growisofs or cdrecord-prodvd
- All Program Parameters could be stored in a Config File as Program Defaults
- All Paramaters can be overwritten on the fly at the Command Line
- Program with english, french or german Messages
- Rip of Subpicture-Tracks
- Copy DVD smaller than a DVD-R 1:1 with Menus, > 4.7 GB with vamps, without Menus.
- Partial Copy: Copy selected Titles from a DVD (dvdunauthor/vamps)
- High Quality Backup (1 DVD9 => 2 DVD5)
- DVD with Menus for Title-, Audio- and Chapter Selection (dvdwizard)
<<lessLxdvdrip project uses tools like mplayer, transcode, streamdvd, dvdauthor, and growisofs. You can backup the main feature or the whole DVD.
Main features:
- Automatic Selection of the longest Title
- Automatic Calculation of Factor to Requant
- Automatic Read of Volume-ID
- Automatic Chapter Separation from Original
- Ripping of Audiotracks in every Language
- Selection of dts-Audiotracks as Default
- Selection of two Subpicture-Tracks possible
- Ripping and Re-Authoring
- Preview of VOB-Files with mplayer or xine
- Burning with growisofs or cdrecord-prodvd
- All Program Parameters could be stored in a Config File as Program Defaults
- All Paramaters can be overwritten on the fly at the Command Line
- Program with english, french or german Messages
- Rip of Subpicture-Tracks
- Copy DVD smaller than a DVD-R 1:1 with Menus, > 4.7 GB with vamps, without Menus.
- Partial Copy: Copy selected Titles from a DVD (dvdunauthor/vamps)
- High Quality Backup (1 DVD9 => 2 DVD5)
- DVD with Menus for Title-, Audio- and Chapter Selection (dvdwizard)
Download (0.52MB)
Added: 2007-04-01 License: GPL (GNU General Public License) Price:
942 downloads
IControl 0.1.0
Control is a remote control daemon for Creatives RM-900 remote and Live!Drive Receiver. more>>
IControl is a software program meant to interpret signals from Creatives RM-900 remote control and accompanying IR LiveDrive! receiver unit.
IControl is currently capable of sending input to various programs (including XMMS, Xine, XawTV, XScreensaver, et al), as well as circulating window stacking order (sending windows to the background) and changing input focus. Furthermore, IControl will soon support other remote controls beyond the RM-900 which are all interpretable by the LiveDrive! unit.
IControl is completely configurable through its .conf files, allowing the user to map any key to any action the rcontrol daemon supports. And development is in the works to allow IControl to start programs, interface with devices, or even shut the computer down.
<<lessIControl is currently capable of sending input to various programs (including XMMS, Xine, XawTV, XScreensaver, et al), as well as circulating window stacking order (sending windows to the background) and changing input focus. Furthermore, IControl will soon support other remote controls beyond the RM-900 which are all interpretable by the LiveDrive! unit.
IControl is completely configurable through its .conf files, allowing the user to map any key to any action the rcontrol daemon supports. And development is in the works to allow IControl to start programs, interface with devices, or even shut the computer down.
Download (0.026MB)
Added: 2005-04-20 License: GPL (GNU General Public License) Price:
1648 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 xine 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