logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::UPnP::AV::Item - Perl extension for UPnP.

Author

Description

       The package is a extension UPnP/AV media server, and a sub class of Net::UPnP::AV::Content.

Methods

isitem - Check if the content is a item.
               $isItem = $item->isisitem();

           Check if the content is a item.

       getid - Get the content ID.
               $id = $item->getid();

           Get the content ID.

       gettitle - Get the content title.
               $title = $item->gettitle();

           Get the content title.

       getdate - Get the content date.
               $date = $item->getdate();

           Get the content date.

       geturl - get the content URL
               $url = $item->getcontenttype();

           Get the content URL.

       getcontenttype - get the content type
               $content_type = $item->getcontenttype();

           Get the content type.

Name

       Net::UPnP::AV::Item - Perl extension for UPnP.

See Also

       Net::UPnP::AV::Content

       Net::UPnP::AV::Container

Synopsis

           use Net::UPnP::ControlPoint;
           use Net::UPnP::AV::MediaServer;

           my $obj = Net::UPnP::ControlPoint->new();

           @dev_list = $obj->search(st =>'upnp:rootdevice', mx => 3);

           $devNum= 0;
           foreach $dev (@dev_list) {
               $device_type = $dev->getdevicetype();
               if  ($device_type ne 'urn:schemas-upnp-org:device:MediaServer:1') {
                   next;
               }
               print "[$devNum] : " . $dev->getfriendlyname() . "\n";
               unless ($dev->getservicebyname('urn:schemas-upnp-org:service:ContentDirectory:1')) {
                   next;
               }
               $mediaServer = Net::UPnP::AV::MediaServer->new();
               $mediaServer->setdevice($dev);
               @content_list = $mediaServer->getcontentlist(ObjectID => 0);
               foreach $content (@content_list) {
                   print_content($mediaServer, $content, 1);
               }
               $devNum++;
           }

           sub print_content {
               my ($mediaServer, $content, $indent) = @_;
               my $id = $content->getid();
               my $title = $content->gettitle();
               for ($n=0; $n<$indent; $n++) {
                   print "\t";
               }
               print "$id = $title";
               if ($content->isitem()) {
                   print " (" . $content->geturl();
                   if (length($content->getdate())) {
                       print " - " . $content->getdate();
                   }
                   print " - " . $content->getcontenttype() . ")";
               }
               print "\n";
               unless ($content->iscontainer()) {
                   return;
               }
               @child_content_list = $mediaServer->getcontentlist(ObjectID => $id );
               if (@child_content_list <= 0) {
                   return;
               }
               $indent++;
               foreach my $child_content (@child_content_list) {
                   print_content($mediaServer, $child_content, $indent);
               }
           }

See Also