NAME
Win32::WindowsMedia - Base Module for Provisiong and control for Windows Media Services
VERSION
Version 0.15
SYNOPSIS
This is a module to control Windows Media services for a Windows 2003/2008 server. This is a pre-alpha release and based on work done in 2005/2006.
An example script is below and that is the current limitation of the documentation.
#!/usr/bin/perl
use strict; use Win32::WindowsMedia;
my $main =new Win32::WindowsMedia; my $provisioner =new Win32::WindowsMedia::Provision; my $information =new Win32::WindowsMedia::Information; my $controller =new Win32::WindowsMedia::Control;
my $server_object = $main->Server_Create("127.0.0.1");
my $publishing_point = $provisioner-> Publishing_Point_Create( $server_object, "andrew", "push:*", "broadcast" );
FUNCTIONS
Server_Create
This creates a Windows Media instance and although you can specify any IP address it will usually be 127.0.0.1.
AUTHOR
Andrew S. Kennedy, <shamrock at cpan.org>
BUGS
Please report any bugs or feature requests to bug-win32-windowsmedia at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Win32-WindowsMedia. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Win32-WindowsMedia
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2006 Andrew S. Kennedy, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2 POD Errors
The following errors were encountered while parsing the POD:
- Around line 135:
'=item' outside of any '=over'
- Around line 139:
You forgot a '=back' before '=head1'