I want to decode some video with VLC, and pipe YUV data to another application for processing. So far my command line looks like.
"c:\program files\videolan\vlc\vlc" --vout=yuv --yuv-file=//- --yuv-yuv4mpeg2 file.mpg | MyApp
What should the value of --yuv-file be to ensure that the decoded data is sent to MyApp correctly?
Pete