From 934fd7f7c56cb22173d32dcd7ffb1389cddd2011 Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 3 Sep 2022 17:13:08 -0400 Subject: initial commit --- blib/lib/.exists | 0 blib/lib/auto/webx_type/.exists | 0 blib/lib/webx_type.pm | 60 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 blib/lib/.exists create mode 100644 blib/lib/auto/webx_type/.exists create mode 100644 blib/lib/webx_type.pm (limited to 'blib/lib') diff --git a/blib/lib/.exists b/blib/lib/.exists new file mode 100644 index 0000000..e69de29 diff --git a/blib/lib/auto/webx_type/.exists b/blib/lib/auto/webx_type/.exists new file mode 100644 index 0000000..e69de29 diff --git a/blib/lib/webx_type.pm b/blib/lib/webx_type.pm new file mode 100644 index 0000000..9d1d6cb --- /dev/null +++ b/blib/lib/webx_type.pm @@ -0,0 +1,60 @@ +package webx_type; + +use 5.010; +use strict; +use warnings; + +=head1 NAME + +webx_type - Tells you some info about webm/webp files. + +=head1 VERSION + +Version 0.01 + +=cut + +our $VERSION = '0.01'; + + +=head1 SYNOPSIS + +$ webx_type + +=head1 USAGE + +webx_type + +Files can be any file and the script will return the bytes it read if it cannot detect using magic bytes in the file header. If it can use the magic bytes, then it tells you what file type it is. + +=head1 RETURNED INFO + +For webm: VP8, VP9, or google/video-file. +For webp: Whether the file is Lossless or not. + +=head1 AUTHOR + +Jake Thoughts, C<< >> + +=head1 BUGS + +Please report any bugs or feature requests to the author. + +=head1 SUPPORT + +You can find documentation for this module with the perldoc command. + + perldoc webx_type + +=head1 LICENSE AND COPYRIGHT + +This software is Copyright (c) 2022 by Jake Thoughts. + +This is free software, licensed under: + + The GNU General Public License, Version 3, June 2007 + + +=cut + +1; # End of webx_type -- cgit v1.2.3