How do i pipe stdout/stderr in .NET?
        Posted  
        
            by acidzombie24
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by acidzombie24
        
        
        
        Published on 2010-03-23T17:01:09Z
        Indexed on 
            2010/03/23
            17:03 UTC
        
        
        Read the original article
        Hit count: 447
        
I want to do something like this
ffmpeg -i audio.mp3 -f flac - | oggenc2.exe - -o audio.ogg
i know how to do ffmpeg -i audio.mp3 -f flac using the process class in .NET but how do i pipe it to oggenc2?
Any example of how to do this (it doesnt need to be ffmpeg or oggenc2) would be fine.
© Stack Overflow or respective owner