Passing arguments to system()

1 visualización (últimos 30 días)
Andrés Liu
Andrés Liu el 7 de Mzo. de 2015
Comentada: Image Analyst el 7 de Mzo. de 2015
I'm using system() to run ffmpeg, my problem is that I can't get to pass the arguments from outside this function. This is the code:
function videoFunction(videoFile)
vid = VideoReader(videoFile);
system('ffmpeg -i vid -vn audio.mp3');
disp('Audio extraído')
end
If I put the path to the video in -i video.avi instead of -i vid it would work but I need to pass it like I mentioned. Any ideas?

Respuestas (1)

Image Analyst
Image Analyst el 7 de Mzo. de 2015
If your video file name is in variable videoFile, how about
strCommandLine = sprintf('ffmpeg -i %s -vn audio.mp3', videoFile);
system(strCommandLine);
  2 comentarios
Andrés Liu
Andrés Liu el 7 de Mzo. de 2015
Yes! This worked, thank you!
Image Analyst
Image Analyst el 7 de Mzo. de 2015
Can you officially "Accept" it then? Thanks in advance.

Iniciar sesión para comentar.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by