I am looking into streaming video and audio from my .NET WPF application. After some research I have decided VLC looks it might be the best option (but I am open to suggestions). So far I have been able to stream a static image file (How to stream your images/files with VLC?). However when the file gets updated (with the next frame), the stream does not update. Is there any command I can pass into VLC to tell it to continuously read from the file (at a specific rate) so I can just overwrite the file with the next frame.
My video is not coming directly from a camera input, I am processing the frames first, which is why I haven't just specified a video file or device input.
Any help much appreciated.