Home > asr > flv2wav.m

flv2wav

PURPOSE ^

flv2wav: Convert a flv file to a wav file

SYNOPSIS ^

function [exeStatus, exeResult, time]=flv2wav(flvFile, wavFile)

DESCRIPTION ^

 flv2wav: Convert a flv file to a wav file

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [exeStatus, exeResult, time]=flv2wav(flvFile, wavFile)
0002 % flv2wav: Convert a flv file to a wav file
0003 
0004 %    Roger Jang, 20091025
0005 
0006 % ====== Find the path to the executables
0007 [parentDir, junk, junk, junk]=fileparts(which(mfilename));
0008 exeDir=[parentDir, '\exe'];
0009 executable = [exeDir, '\flv2wav.exe'];
0010 dosCmd=sprintf('"%s" "%s" "%s"', executable, flvFile, wavFile);
0011 
0012 t0=clock; [exeStatus, exeResult]=dos(dosCmd); time=etime(clock, t0);

Generated on Tue 01-Jun-2010 09:50:19 by m2html © 2003