I tried to use the following command to make vlc display h.264 video.
cat test.mp4 | vlc
Then I tried fifo, it didn't work either. The commands I used are as follows:
mkfifo fifo.mp4
vlc fifo.mp4&
cat test.mp4 > fifo.mp4
vlc didn't work as expected. my vlc is 0.8.4. Could any expert tell me how to do it correctly?
Thank you!