On Fri, Sep 28, 2018 at 09:20:22 -0400, [email protected] wrote: > C:\Users\Kirk Calabrese\Desktop>CALL "C:\ffmpeg\bin\ffmpeg.exe" > "C:\ffmpeg\bin\ffmpeg -i robinsonconverted.wav" > ffmpeg version N-92058-gefb65abedf Copyright (c) 2000-2018 the FFmpeg > developers [...] > Output #0, wav, to 'C:\ffmpeg\bin\ffmpeg -i robinsonconverted.wav':
This is obviously not the desired effect. Without using Windows right now, my guess would be that you should be using: CALL "C:\ffmpeg\bin\ffmpeg.exe" -i %filename% %outputfilename% Moritz _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
