I am trying to encode ogg files at -q 6/192k. ffmpeg doesnt seem to be listenting to my command
ffmpeg -i blah -acodec vorbis -ab 192k -y out.ogg
So i would like to use the recommended ogg encoder. It says the input must be wav or similar. I would like to pipe a wav from ffmpeg to ogg. However not only am i unsure if oggenc2 will accept input from stdin, i have no idea how to pipe one process to another inside of .net using the Process class.