#!/usr/bin/env perl
# PODNAME: ffmpeg
# ABSTRACT: Command ffmpeg of Alien-ffmpeg

$|=1;

use strict;
use warnings;
use File::ShareDir ':ALL';
use Path::Class;

my $abs = file(dist_dir('Alien-ffmpeg'),'bin','ffmpeg')->cleanup->absolute;

exec($abs, @ARGV) or print STDERR "couldn't exec ffmpeg: $!";


__END__
=pod

=head1 NAME

ffmpeg - Command ffmpeg of Alien-ffmpeg

=head1 VERSION

version 0.101

=head1 AUTHOR

Torsten Raudssus <torsten@raudss.us>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

