Including 64 kbps audio-only HTTP Live stream in the playlist using cupertino

Thanks Richard for that article,

I appreciate your patience as you deal with me. I was reading through it and I was wondering if I can clarify few things with you.

First of all, since I am not Live Streaming do I still need to setup my app following these tutorials?

RTMP, RTSP/RTP:

https://www.wowza.com/docs/how-to-set-up-live-streaming-using-an-rtmp-based-encoder

MPEG-TS:

https://www.wowza.com/docs/how-to-publish-and-play-a-live-stream-mpeg-ts-based-encoder

Native RTP (SDP file):

http://community.wowza.com/t/-/65

IP Camera (RTSP/RTP re-streaming):

https://www.wowza.com/docs/how-to-re-stream-video-from-an-ip-camera-rtsp-rtp-re-streaming

In my case, I am using amazon Wowza 3 EC2 to deliver S3 contents so that it can be segmented. That being said, I opened and edited the file /home/wowza/conf/live/Application.xml

<Streams>
                        <StreamType>live</StreamType>
                        <StorageDir>${com.wowza.wms.context.VHostConfigHome}/content</StorageDir>
                        <KeyDir>${com.wowza.wms.context.VHostConfigHome}/keys</KeyDir>
                        <!-- LiveStreamPacketizers (separate with commas): cupertinostreamingpacketizer, smoothstreamingpacketizer, sanjosestreamingpacketizer, cupertinostreamingrepeater, smoothstreamingrepeater, sanjosestreamingrepeater -->
                        <LiveStreamPacketizers>smoothstreamingpacketizer,cupertinostreamingpacketizer,sanjosestreamingpacketizer</LiveStreamPacketizers>
                        <Properties>
                                <Property>
                                    <Name>cupertinoCreateAudioOnlyRendition</Name>
                                    <Value>true</Value>
                                    <Type>Boolean</Type>
                                </Property>
                        </Properties>
                </Streams>

But then further down I found another section with similar tag

<LiveStreamPacketizer>
                        <Properties>
                        </Properties>
</LiveStreamPacketizer>

Which one does it apply to us?

I hope I am making sense

Thanks