# Can not get netgroup list in smil file

**URL:** https://community.wowza.com/t/can-not-get-netgroup-list-in-smil-file/45540
**Category:** Wowza Streaming Engine
**Created:** [August 27, 2015, 4:06pm UTC](https://community.wowza.com/t/can-not-get-netgroup-list-in-smil-file/45540 "2015-08-27T16:06:33Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Nicolas\_Hoppenot](https://avatars.discourse-cdn.com/v4/letter/n/48db29/32.png) [@Nicolas\_Hoppenot](https://community.wowza.com/u/Nicolas_Hoppenot)
#### Post date: [August 27, 2015, 4:06pm UTC](https://community.wowza.com/t/can-not-get-netgroup-list-in-smil-file/45540/1 "2015-08-27T16:06:33Z")

</div>

Hello,

I have setuped a default transcoder template with a group all.

The source and the 160p incoming streams are available (and tested with the test player).

When I try to acces to http://${wowza\_ip}:1935/live/ngrp:${SourceStreamName}\_all/jwplayer.smil, nothing is returned and I’m getting this error in the logs :

```auto
HTTPProviderMediaList.onHTTPRequest: MediaList not found: live/_definst_/ngrp:${SourceStreamName}_all

```

Do you know what could be wrong ?

I have a developer license of Wowza server 4.2.0 with Transcoder addon activated (no specific license for that addon), could it be a reason (eg. [https://www.wowza.com/forums/showthread.php?32549-Transcoder-Addon-Problem](https://www.wowza.com/forums/showthread.php?32549-Transcoder-Addon-Problem)).

Thanks in advance.

Here is the configuration file extract :

```auto
<?xml version="1.0" encoding="UTF-8"?>
<Root version="1">
        <Transcode>
                <Description>Default transrate.xml file</Description>
                <Encodes>
                        <!-- Example Encode block for source, not required unless Member of StreamNameGroup. -->
                        <Encode>
                                <Enable>true</Enable>
                                <Name>source</Name>
                                <StreamName>mp4:${SourceStreamName}_source</StreamName>
                                <Video>
                                        <!-- H.263, H.264, H.265, VP8, VP9, PassThru, Disable -->
                                        <Codec>PassThru</Codec>
                                        <Bitrate>${SourceVideoBitrate}</Bitrate>
                                        <Parameters></Parameters>
                                        <Implementation></Implementation>
                                        <GPUID>-1</GPUID>
                                        <Profile></Profile>
                                        <KeyFrameInterval>
                                                <FollowSource>false</FollowSource>
                                                <Interval>0</Interval>
                                        </KeyFrameInterval>
                                        <FrameSize>
                                                <FitMode></FitMode>
                                                <Width>0</Width>
                                                <Height>0</Height>
                                                <Crop></Crop>
                                                <SourceRectangle></SourceRectangle>
                                        </FrameSize>
                                </Video>
                                <Audio>
                                        <!-- AAC, Vorbis, Opus, PassThru, Disable -->
                                        <Codec>PassThru</Codec>
                                        <Bitrate>${SourceAudioBitrate}</Bitrate>
                                        <Parameters></Parameters>
                                </Audio>
                                <Properties>
                                </Properties>
                                <Description></Description>
                        </Encode>
...
                        <!-- Setup for 160p, low bandwith, baseline profile for 3G mobile devices such as iOS, Android, Blackberry -->
                        <Encode>
                                <Enable>true</Enable>
                                <Name>160p</Name>
                                <StreamName>mp4:${SourceStreamName}_160p</StreamName>
                                <Video>
                                        <!-- H.263, H.264, H.265, VP8, VP9, PassThru, Disable -->
                                        <Codec>H.264</Codec>
                                        <!-- default, QuickSync, CUDA, NVENC -->
                                        <Implementation>default</Implementation>
                                        <GPUID>-1</GPUID>
                                        <FrameSize>
                                                <!-- letterbox, fit-width, fit-height, crop, stretch, match-source -->
                                                <FitMode>fit-height</FitMode>
                                                <Width>284</Width>
                                                <Height>160</Height>
                                                <!-- <Crop>0,0,0,0</Crop> -->
                                                <!-- <SourceRectangle>0,0,320,240</SourceRectangle> -->
                                        </FrameSize>
                                        <!-- baseline, main, high -->
                                        <Profile>baseline</Profile>
                                        <Bitrate>200000</Bitrate>
                                        <KeyFrameInterval>
                                                <FollowSource>true</FollowSource>
                                                <Interval>60</Interval>
                                        </KeyFrameInterval>
                                        <Overlays>
                                                <Overlay>
                                                        <Enable>false</Enable>
                                                        <Name>WowzaLogo</Name>
                                                        <Index>0</Index>
                                                        <ImagePath>${com.wowza.wms.context.VHostConfigHome}/content/wowzalogo.png</ImagePath>
                                                        <CheckForUpdates>false</CheckForUpdates>
                                                        <Opacity>100</Opacity>
                                                        <Location>
                                                                <X>4</X>
                                                                <Y>4</Y>
                                                                <Width>${ImageWidth}</Width>
                                                                <Height>${ImageHeight}</Height>
                                                                <!-- horiz: left, right, hcenter - vert: top, bottom, vcenter -->
                                                                <Align>left,top</Align>
                                                        </Location>
                                                </Overlay>
                                        </Overlays>
                                        <Parameters></Parameters>
                                </Video>
                               <Audio>
                                        <!-- AAC, Vorbis, Opus, PassThru, Disable -->
                                        <Codec>PassThru</Codec>
                                        <Bitrate>${SourceAudioBitrate}</Bitrate>
                                        <Parameters></Parameters>
                                </Audio>
                                <Properties>
                                </Properties>
                        </Encode>
...
                <StreamNameGroups>
                        <!-- Note: Play stream using stream name ngrp:[stream-name] -->
                        <StreamNameGroup>
                                <Name>all</Name>
                                <StreamName>${SourceStreamName}_all</StreamName>
                                <Members>
                                        <Member>
                                                <MemberName>source</MemberName>
                                                <EncodeName>source</EncodeName>
                                                <MediaListRendition>
                                                        <WowzaVideoOnly>false</WowzaVideoOnly>
                                                        <WowzaAudioOnly>false</WowzaAudioOnly>
                                                </MediaListRendition>
                                        </Member>
                                </Members>
                                <Description></Description>
                        </StreamNameGroup>
                </StreamNameGroups>
                <Properties>
                </Properties>
        </Transcode>
</Root>

```

---

<div class="post-metadata">

### Author: ![Zoran](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/zoran/32/385_2.png) [@Zoran](https://community.wowza.com/u/Zoran)
#### Post date: [August 27, 2015, 7:52pm UTC](https://community.wowza.com/t/can-not-get-netgroup-list-in-smil-file/45540/2 "2015-08-27T19:52:20Z")

</div>

Hi,

Is your live stream published and the transcoding process started at the time you are trying to access the Stream Name Group?

Can you access each of the transcoded output streams individually? (yourStreamName\_source and yourStreamName\_160p)

Zoran

---

<div class="post-metadata">

### Author: ![sal\_jefferson](https://avatars.discourse-cdn.com/v4/letter/s/6de8d8/32.png) [@sal\_jefferson](https://community.wowza.com/u/sal_jefferson)
#### Post date: [October 8, 2015, 8:20am UTC](https://community.wowza.com/t/can-not-get-netgroup-list-in-smil-file/45540/3 "2015-10-08T08:20:23Z")

</div>

Thanks for the update, glad to hear this is working for you now.

Regards,

Salvadore

---

<div class="post-metadata">

### Author: ![Nicolas\_Hoppenot](https://avatars.discourse-cdn.com/v4/letter/n/48db29/32.png) [@Nicolas\_Hoppenot](https://community.wowza.com/u/Nicolas_Hoppenot)
#### Post date: [September 2, 2015, 10:20am UTC](https://community.wowza.com/t/can-not-get-netgroup-list-in-smil-file/45540/4 "2015-09-02T10:20:45Z")

</div>

Hello,

The transocding process started when I tried to access the Stream Name Group.

I can access to each of the transcoded incoming stream via the integrated test player (Adobe RTMP for example). Both yourStreamName\_source and yourStreamName\_160p are working is the test player.

Thanks
