Main > Free Download Search >

Free xine 0.02 software for linux

xine 0.02

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 292
Video::Xine 0.02

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.

<<less
Download (0.63MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1204 downloads
ViewMTN 0.02

ViewMTN 0.02


ViewMTN project provides a Web interface to the Monotone distributed version control system. more>>
ViewMTN project provides a Web interface to the Monotone distributed version control system.

ViewMTN is a Web interface to the Monotone distributed version control system.

Features include listing all branches and tags, a graphical, clickable revision ancestry chart, diffs, and retrieval of the manifest of any revision as a tar file.

<<less
Download (0.015MB)
Added: 2007-01-31 License: GPL (GNU General Public License) Price:
996 downloads
Wily 0.02

Wily 0.02


Wily is a Perl extension for interfacing with Wily. more>>
Wily is a Perl extension for interfacing with Wily.

SYNOPSIS

use Wily;
use Wily::Message;

# opens a file in wily and exits when the window is destroyed

my $wily = Wily->new();
my $win = $wily->win(/tmp/file_to_edit, 1);
$win->set_callback(Wily::Message::WEdestroy, sub {exit;});
$win->attach(Wily::Message::WEdestroy);
$wily->event_loop();

Provides a reasonably high level OO interface to wily. A lower level interface is available via Wily::RPC, and an even lower level one through Wily::Message and Wily::Connect.

The actual windows in wily are represented by Wily::Win objects.

<<less
Download (0.021MB)
Added: 2007-05-10 License: Perl Artistic License Price:
898 downloads
GDBM_File 0.02

GDBM_File 0.02


GDBM_File package allows Perl5 access to the gdbm library. more>>
GDBM_File package allows Perl5 access to the gdbm library.

SYNOPSIS

use GDBM_File ;
tie %hash, GDBM_File, $filename, &GDBM_WRCREAT, 0640;
# Use the %hash array.
untie %hash ;

GDBM_File is a module which allows Perl programs to make use of the facilities provided by the GNU gdbm library. If you intend to use this module you should really have a copy of the gdbm manualpage at hand.

Most of the libgdbm.a functions are available through the GDBM_File interface.

<<less
Download (14.3MB)
Added: 2007-05-15 License: Perl Artistic License Price:
893 downloads
Tie::Form 0.02

Tie::Form 0.02


Tie::Form is a Perl module to access a machine readable database file that minics a hardcopy form. more>>
Tie::Form is a Perl module to access a machine readable database file that minics a hardcopy form.

SYNOPSIS

require Tie::Form;

#####
# Using support methods and file handle with
# the file subroutines such as open(), readline()
# print(), close()
#
tie *FORM_FILEHANDLE, Tie::Form, @options
$form = tied *FORM_FILEHANDLE;

#####
# Using support methods only, no file subroutines
#
$form = Tie::Form->new(@options);

$encoded_fields = $form->decode_record($record);
@fields = $form->decode_field($encoded_fields);

$encoded_fields = $form->encode_field (@fields);
$record = $form->encode_record($encoded_fields);

$record = $form->get_record();

####
# Subroutine interface
#
$encoded_fields = decode_record($record);
@fields = decode_field($encoded_fields);

$encoded_fields = encode_field (@fields);
$record = encode_record($encoded_fields);

If a subroutine or method will process a list of options, @options, that subroutine will also process an array reference, @options, [@options], or hash reference, %options, {@options}.

<<less
Download (0.087MB)
Added: 2007-02-16 License: Perl Artistic License Price:
980 downloads
PerlIO 0.02

PerlIO 0.02


PerlIO is a Perl module created to load on demand PerlIO layers and root of PerlIO::* name space. more>>
PerlIO is a Perl module created to load on demand PerlIO layers and root of PerlIO::* name space.

SYNOPSIS

open($fh,":utf8", "data.utf");
print F $out;
close(F);

open(F, "<<less
Download (0.014MB)
Added: 2007-05-14 License: Perl Artistic License Price:
893 downloads
Simpla 0.02

Simpla 0.02


Simpla project is a concept language for child education. more>>
Simpla project is a concept language for child education.
Simpla is a basic concept language for use in teaching children and adults with no programming experience or computer knowledge whatsoever.
The intent is to have a language which is capable of many basic scripting language tasks without adding excess complexity.
Still a barely working alpha, and Ive got contributor code to include. Added variable declaration, an improved variable parser (thanks to Richard Nolan for the explanation, and a whole lot of cleanup.
Enhancements:
- 0.02 - remains Alpha.
- Variable declatation now works, parsing of lines works (too well), code reorganization (again)
<<less
Download (0.001MB)
Added: 2006-10-31 License: Artistic License Price:
1089 downloads
Wily::Connect 0.02

Wily::Connect 0.02


Wily::Connect is a Perl module that connects to a running Wily text editor. more>>
Wily::Connect is a Perl module that connects to a running Wily text editor.

SYNOPSIS

use Wily::Connect;
my $wily_socket = Wily::Connect::connect();

The connect sub connects to wily this involves creating a unix domain socket, listening on that socket, writing the name of that socket to the fifo wily is reading from (either $ENV{WILYFIFO} or if that doesnt exist /tmp/wily[login]$ENV{DISPLAY}, and then accepting the connection to the unix domain socket that wily will make.

The functions does all of that and hence may block while waiting for wily.

<<less
Download (0.021MB)
Added: 2007-03-01 License: Perl Artistic License Price:
968 downloads
XcplayC 0.02

XcplayC 0.02


XcplayC is a text-GUI for XMMS based on xcplay. more>>
XcplayC is an ncurses-based GUI for XMMS, based on xcplay.

It is useful if you wish to control and XMMS process when you dont have access to the X11 GUI.
<<less
Download (0.017MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1627 downloads
avidentify 0.02

avidentify 0.02


avidentify is a command line tool that extracts and prints various meta-information about media files. more>>
avidentify is a command line tool that extracts and prints various meta-information about media files: width, height, frame rate, video codec, audio codec, audio sample rate, audio bitrate, file format, etc.

avidentify uses ffmpegs libavformat library to read the video files, thus MPEG, AVI, WMV, MP3, Ogg, and many other file formats are supported. avidentify is similar to MPlayers midentify tool, but it has far fewer dependencies.
<<less
Download (0.77MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1189 downloads
XML::Quick 0.02

XML::Quick 0.02


XML::Quick is a Perl module to generate XML from hashes (and other data). more>>
XML::Quick is a Perl module to generate XML from hashes (and other data).

SYNOPSIS

use XML::Quick;

$xml = xml($data);

$xml = xml($data, { ... });

This module generates XML from Perl data (typically a hash). It tries hard to produce something sane no matter what you pass it. It probably fails.

When you use this module, it will export the xml function into your namespace. This function does everything.

<<less
Download (0.005MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1140 downloads
Audio::ESD 0.02

Audio::ESD 0.02


Audio::ESD is a Perl extension for talking to the Enlightened Sound Daemon. more>>
Audio::ESD is a Perl extension for talking to the Enlightened Sound Daemon.

SYNOPSIS

use Audio::ESD;
my $stream = Audio::ESD->play_stream({ # these are the defaults
sample_rate => 16000,
channels => 1,
fallback => 0,
bits_sample => 16,
encoding => linear })
or die "Failed to open ESD stream: $!n";
print $stream $data; # etcetera

This module provides a Perl wrapper around the Enlightened Sound Daemons client library. Input, output, and monitoring streams are supported, as well as some (but not all) of the control functions. Samples are supported but untested.

<<less
Download (0.006MB)
Added: 2006-06-23 License: Perl Artistic License Price:
1228 downloads
StealIt 0.02

StealIt 0.02


StealIt is a service menu to take ownership on selected file/directory. more>>
StealIt is a service menu to take ownership on selected file/directory.

It is often annoying to have no rights on files created by other users or uploaded with samba or created by apache process.
<<less
Download (MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1121 downloads
PAR2GUI 0.02

PAR2GUI 0.02


PAR2GUI project provides a GUI to the command line utility PAR2. more>>
PAR2GUI project provides a GUI to the command line utility PAR2. You can Verify , Repair and Create PAR2 files. Its very simple and provides instant user feedback via the intergrated konsole widget.

I have included instructions on the third tab on how to double click a PAR2 file and repair your files without the use of Kommander.

<<less
Download (0.024MB)
Added: 2007-03-04 License: GPL (GNU General Public License) Price:
974 downloads
B::Tree 0.02

B::Tree 0.02


B::Tree is a simplified version of B::Graph for demonstration. more>>
B::Tree is a simplified version of B::Graph for demonstration.

SYNOPSIS

perl -MO=Tree program | dot -Tps > tree.ps

This is a very cut-down version of B::Graph; it generates minimalist tree graphs of the op tree of a Perl program, merely connecting the op nodes and labelling each node with the type of op.

It was written as an example of how to write compiler modules for "Professional Perl", but Ive found it extremely useful for creating simple op tree graphs for use in presentations on Perl internals.

It requires the CPAN GraphViz module and the GraphViz package from http://www.research.att.com/sw/tools/graphviz/. It takes no options.

<<less
Download (0.002MB)
Added: 2007-06-26 License: Perl Artistic License Price:
856 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5