Help for this page

Select Code to Download


  1. or download this
    # 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';
    
  2. or download this
    run \@cmd, timeout(10);
    
  3. or download this
    @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.