Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    
    my @cmd = ('/usr/bin/ffmpeg', '-y', '-i', 'long_input.mov', 'long_outp
    +ut.wav');
    run \@cmd, timeout(3);
    
  2. or download this
    use warnings;
    use strict;
    ...
    
    my @cmd = qw(ls /tmp);
    run \@cmd, timeout(3);