NAME
VideoLan::Client - interact with VideoLan Client using telnet connection
VERSION
Version 0.1
SYNOPSIS
use VideoLan::Client;
see METHODS section below
DESCRIPTION
VideoLan::Client allows you to lauchn vlc and control it using vlc connections. VideoLan::Client offer simple I/O methods. VideoLan::Client require Net::Telnet.
METHODS
In the calling sequences below, square brackets [] represent optional parameters.
- new - create a new VideoLan::Client object
-
$obj = new VideoLan::Client(); $obj = new VideoLan::Client ([HOST => $host,] [PORT => $port,] [TIMEOUT => $timeout,] [PASSWD => $passwd,] [DEBUG => $debug_file,] );
This is the constructor for VideoLan::Client objects.
- HOST
-
The default HOST is
"localhost"
- PORT
-
The default PORT is
4212
- TIMEOUT
-
The default TIMEOUT is
10
secondes
- PASSWD
-
The default PASSWD is
admin
secondes
- DEBUG
-
The default DEBUG is undef. if DEBUG is set to $file, $file will contains the telnet connection log. DEBUG have to be set before the login method
- add_broadcast_media - add a broadcast media to vlc
-
$obj->add_broadcast_media($name,$input,$output);
input and output use the syntaxe of vlc input/output
- launchvlc - lauchn a vlc with telnet interface
-
$val = lauchnvlc;
Work only if the host is
localhost
. Will only work on *NIX where nohup commande exist and vlc command is in path. lauchnvlc method is not support actually, just in test.
SEE ALSO
- VLC : VideoLan Client
-
http://www.videolan.org/
- Net::Telnet
-
http://search.cpan.org/~jrogers/Net-Telnet-3.03/lib/Net/Telnet.pm
EXAMPLES
This example connect to a running vlc, lauchn the help commande and logout.
use VideoLan::Client;
my $vlc = VideoLan::Client->new( HOST =>'192.168.1.10', PORT => '35342', PASSWD => 'mdp_test');
$vlc->login();
my @help = $vlc->cmd("help");
$vlc->logout();
This example connect to a running vlc and shutdown it
use VideoLan::Client;
my $vlc = VideoLan::Client->new( PASSWD => 'mdp_test');
$vlc->login;
my @help = $vlc->shutdown;
$vlc->logout;
SEE ALSO
- VLC : VideoLan Client
-
http://www.videolan.org/
- Net::Telnet
-
http://search.cpan.org/~jrogers/Net-Telnet-3.03/lib/Net/Telnet.pm
AUTHOR
Cyrille Hombecq, <elliryc at cpan.com>
BUGS
Please report any bugs or feature requests to bug-videolan-client at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=VideoLan-Client. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc VideoLan::Client
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
COPYRIGHT & LICENSE
Copyright 2008 Cyrille Hombecq, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.