I'm trying to pick up an audio-only transcoded stream from my Wowza server in JWPlayer.
At the moment, I know that the normal ( non-transcoded ) stream is making it through the server and back to my JWPlayer client - what I can't figure out is why I can't reach the audio-only stream.
JWPlayer code as follows:
var PlayerInstance = jwplayer('jwcontainer').setup({
image: '/resource/javascript/jwplayer/background.png',
height: '420',
width: '420',
skin: 'stormtrooper',
autostart: '1',
androidhls: true,
provider: 'rtmp',
playlist:
[{
sources:
[
{ file: 'http://SERVER:80/APPLICATION/flv:STREAM' },
{ file: 'http://SERVER:1935/APPLICATION/STREAM/playlist.m3u8' },
{ file: 'http://SERVER:1935/APPLICATION/STREAM/manifest.mpd' },
{ file: 'http://SERVER:1935/APPLICATION/STREAM/manifest.f4m' }
]
}],
rtmp:
{
bufferlength: 1,
securetoken: ''
}
});
I've tried providing JWPlayer 'STREAM_aac' ( as implied by the Wowza Transcoder configuration? ) as my stream name, and come back with an 'ID not found on server' error.
I've also tried giving it an AAC 'stream type' ( replacing the 'flv:' with 'aac:' ), as well as MP3 ( just for kicks ) to no avail.
Any suggestions? Am I missing something?
Does anyone have a Working example of JWPlayer receiving a Wowza transcoded stream?