Hi,
I have an encoder publishing 2 streams livestream1 and livestream2 to the FMS livepkgr. I have a set-level manifest for the 2 bitrates, but I get the URl missing from media tag error. What is causing this ?
<manifest xmlns="http://ns.adobe.com/f4m/2.0">
<id>myVideo</id>
<baseURL>http://172.16.3.60/hds-live/livepkgr/_definst_/liveevent/</baseURL>
<dvrInfo offline="false" windowDuration="600" />
<streamType>live</streamType>
<media url="livestream1.f4m" bitrate="300"/>
<media url="livestream2.f4m" bitrate="800"/>
</manifest>
I resorted to downloading the OSMF source code but cant fathom out why it thinks this XML is invalid and that the media url doesnt exist.
The streams play back indiviually no problem.
Anyone got any ideas ?
Mal
The set level manifest uses href instead or url. Try this instead,
<manifest xmlns="http://ns.adobe.com/f4m/2.0">
<id>myVideo</id>
<baseURL>http://172.16.3.60/hds-live/livepkgr/_definst_/liveevent/</baseURL>
<dvrInfo offline="false" windowDuration="600" />
<streamType>live</streamType>
<media href="livestream1.f4m" bitrate="300"/>
<media href="livestream2.f4m" bitrate="800"/>
</manifest>
I am using the configurator at http://osmf.org/configurator/fmp/# I cannot find the version number
Got it thanks Ed ! Downloaded 1.6 from:
http://sourceforge.net/projects/smp.adobe/files/Strobe%20Media%20Playb ack%201.6%20Release%20%28source%20and%20binaries%29/
and used this manifest
<manifest xmlns="http://ns.adobe.com/f4m/2.0">
<baseURL>http://172.16.3.60/hds-live/livepkgr/_definst_/liveevent</baseURL>
<dvrInfo offline="false" windowDuration="600" />
<streamType>live</streamType>
<media href="/livestream1.f4m" bitrate="300"/>
<media href="/livestream2.f4m" bitrate="800"/>
</manifest>
North America
Europe, Middle East and Africa
Asia Pacific