diff options
author | Kovensky <diogomfranco@gmail.com> | 2012-11-07 11:49:44 -0300 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2012-11-08 00:28:59 +0100 |
commit | fae73079310eef9dce9737f2e37ff4b80c8830ee (patch) | |
tree | 4a9c7d9fbc398b237808283df39562e55077a225 /TOOLS/lib/Parse/Matroska.pm | |
parent | 58f821e096392e27994102f6de6f8f76c63e38e1 (diff) | |
download | mpv-fae73079310eef9dce9737f2e37ff4b80c8830ee.tar.bz2 mpv-fae73079310eef9dce9737f2e37ff4b80c8830ee.tar.xz |
Port several python scripts to Perl
file2string.pl and vdpau_functions.pl are direct ports.
matroska.py was reimplemented as the Parse::Matroska module in CPAN,
and matroska.pl was made a client of Parse::Matroska.
A copy of Parse::Matroska is included in TOOLS/lib, and matroska.pl
looks there first when trying to load the module.
osxbundle.py was not ported since I have no means to verify it.
Python is always available on OSX though, so there is no harm in
removing the check for it on configure.
Diffstat (limited to 'TOOLS/lib/Parse/Matroska.pm')
-rw-r--r-- | TOOLS/lib/Parse/Matroska.pm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/TOOLS/lib/Parse/Matroska.pm b/TOOLS/lib/Parse/Matroska.pm new file mode 100644 index 0000000000..e1c08c9814 --- /dev/null +++ b/TOOLS/lib/Parse/Matroska.pm @@ -0,0 +1,30 @@ +use 5.008; +use strict; +use warnings; + +# ABSTRACT: Module collection to parse Matroska files. +package Parse::Matroska; + +=head1 DESCRIPTION + +C<use>s L<Parse::Matroska::Reader>. See the documentation +of the modules mentioned in L</"SEE ALSO"> for more information +in how to use this module. + +It's intended for this module to contain high-level interfaces +to the other modules in the distribution. + +=head1 SOURCE CODE + +L<https://github.com/Kovensky/Parse-Matroska> + +=head1 SEE ALSO + +L<Parse::Matroska::Reader>, L<Parse::Matroska::Element>, +L<Parse::Matroska::Definitions>. + +=cut + +use Parse::Matroska::Reader; + +1; |