I use this line:
Code: Select all
--sout '#transcode{vcodec=h264,vb=150,acodec=mp4a,ab=50,mono,channels=1}:standard{mux=ts,dst=:8484/iDreamX_Stream.mp4,access=http}' --sout-transcode-width=320
I can receive this stream without problems using VLC:
Code: Select all
http://192.168.1.2:8484/iDreamX_Stream.mp4
But it doesn't work using this html code (Safari)
It keeps "Loading..."
Code: Select all
<!DOCTYPE html>
<html>
<body>
<video width="320" height="240" controls>
<source src="http://192.168.1.2:8484/iDreamX_Stream.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>
Thanks in advance.