My "smart" tv has neither option to receive streams (udp, rtp) directly nor open multimedia files (http) directly.
If I try open a file link in TV browser (Opera) e.g. http://www.noiseaddicts.com/samples/2555.mp3 then I just get error info: "Downloading not supported".
I do not want that TV should download (save) the file I want that TV should play the file.
But if I embed it in HTML5 element, then TV plays it
Code: Select all
<!DOCTYPE html>
<html>
<body>
<audio controls>
<source src="http://www.noiseaddicts.com/samples/2555.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
Stream:
Code: Select all
[code]cvlc -v file:///media/koko.mp3 --sout '#std{access=http,mux=ts,dst=:8080/audio}
Normal receive OK: "vlc http://192.168.1.15:8080/audio"
But if I use: "http://192.168.1.15:8080/audio" as <source>
then TV (computer too) do not play it.
I thing the problem is in container / MIME type.
- VLC streams out TS stream including MP3 audio, but
- browser (TV or comp) expect MP3 file (I do not know if we can talk by xxx.mp3 file about container at all ?!)
How can I configure http stream to be as sending e.g as MP3 audio file ?
Thanks.