I am trying to get the example given on the FFMPEG website (URL below) working on a Windows machine
https://trac.ffmpeg.org/wiki/Create%20a%20Waveform%20Image%20from%20an%20Audio%20Stream
The issue seems to come around the syntax for pipes on Windows. What research I have done shows that the more recent gnuplot builds support pipes - so my question is for the following Linux formatted command, what would be the correct Windows one...
ffmpeg -i in.wav -ac 1 -filter:a aresample=8000 -map 0:a -c:a pcm_s16le -f data - | \
gnuplot -p -e "plot '<cat' binary filetype=bin format='%int16' endian=little array=1:0 with lines;"
When I run this - I get...
/bin/sh: cat: command not found
Presumably because the '<cat' is not valid as the pipe source on Windows.
Any help hugely appreciated!