多协议、性能稳定、丰富API的流媒体服务器软件
如何控制HLS中的切片文件列表中使用相对路径或绝对路径?

你可以在[install-dir]/conf/[application]/Application.xml文件的HTTPStreamer/Properties部分添加以下参数:

cupertinoRelativePlaylistPlaylists 设置为 false可以在访问playlist.m3u8时Wowza返回给客户端的Chunklist.m3u8中使用绝对路径。
<Property>
	<Name>cupertinoRelativePlaylistPlaylists</Name>
	<Value>false</Value>
	<Type>Boolean</Type>
</Property>
	
cupertinoRelativePlaylistItems 设置 false 可以在访问chunklist.m3u8时Wowza返回给客户端的ts文件中使用绝对路径。
<Property>
	<Name>cupertinoRelativePlaylistItems</Name>
	<Value>false</Value>
	<Type>Boolean</Type>
</Property>
cupertinoPlaylistHostProtocol设置为https://可以使用https协议对视频做加密处理。
<Property>
	<Name>cupertinoPlaylistHostProtocol</Name>
	<Value>https://</Value>
	<Type>String</Type>
</Property>