Help for this page
# here's a command that takes a big MOV file and rips the audio out to + WAV $my_cmd = '/usr/bin/ffmpeg -y -i long_input.mov long_output.wav';
run \@cmd, timeout(10);
@cmd = ('/usr/bin/ffmpeg', '-y', '-i', 'long_input.mov','long_output.w +av'); @cmd = ('/usr/bin/ffmpeg -y -i long_input.mov long_output.wav'); @cmd = various other incarnations.