I simplified the setup to just 1 vlc running in vlm mode and 1 vlc client connecting to it.
./start.sh:
Code: Select all
#!/bin/sh
vlc --vlm-conf vlc.vod.conf --ttl 2 -vvv --color -I telnet --telnet-password aaa
Code: Select all
new test vod input /tmp/01.ts mux mp2t enabled
Code: Select all
vlc rtsp://localhost/test
The funny part is that if I just play the ts file with vlc directly (vlc /tmp/01.ts) it plays perfectly.
What could I be doing wrong here?