
Quality label in "HD" control when using RTMP and SMIL
When I use RTMP with mp4 and an smil file, it uses the height attribute of the video tag in the smil XML file as the quality (E.g. 720p). How would I go about making that label read "720p HD"?
When I use RTMP with mp4 and an smil file, it uses the height attribute of the video tag in the smil XML file as the quality (E.g. 720p). How would I go about making that label read "720p HD"?
Add title="" to the SMIL.
<smil> <head> <meta base="rtmp://example.com/vod/" /> </head> <body> <switch> <video src="myVideo-high.mp4" title="720P HD" system-bitrate="2000000" width="1280" /> <video src="myVideo-medium.mp4" title="360P SD" system-bitrate="800000" width="640" /> <video src="myVideo-low.mp4" title="180P 3G" system-bitrate="300000" width="320" /> </switch> </body> </smil>