I am currently examining the sample open source code of LIVE555 streaming media to test video streaming.
I have compiled successfully on one Ubuntu 16.04 system in Virtual machine, ran the test program ./testH264VideoStreamer without any error message. In the console, the program is running as:
./testH264VideoStreamer
Play this stream using the URL "rtsp://172.18.15.20:8554/testStream"
Beginning streaming...
Beginning to read from file...
...done reading from file
Beginning to read from file...
...done reading from file
Beginning to read from file...
However, on the VLC player, I cannot view the video. Any help or suggestion is sincerely appreciated.
Note:
I have not made any changes to the downloaded source code yet.
Media file "test.264" is playable if directly played on VLC player, the file is placed in ./live/testProgs and renamed to "test.264"
Unlike if VLC could not detect the IP or files, there is no error message popped out on either VLC side or console side. It seems like it just cannot decode the video correctly
The Virtual machine and VLC player is on the same computer. Not sure if this will affect the performance. The IP of VM ubuntu is a static IP.
This is because VLC doesnot detect the demuxer to use.
Using test program testH264VideoStreamer send an elementary stream of H264 frames, you need to say to VLC to use H264 demuxer instead of using automatic detection.
This could be done in different ways :
adding --demux h264 in the command line (for instance
vlc --demux h264 rtsp://172.18.15.20:8554/testStream
)adding /h264 to the url (using
rtsp/h264://172.18.15.20:8554/testStream
)selecting H264 demuxer in "Preferences" -> "Input / Codecs" -> "Demuxers"