Hi Team,
As there is no fallback of * AudioContext() *for IE I am trying to add
support for sound in IE using Flashback but unable to do so.
*In Chrome and Firefox during WebSocket connection I get the following
stream :-*
>
> 5.audio,1.1,31.audio/L16;rate=44100,channels=2;10.filesystem,1.0,12.Shared
> Drive;4.size,1.0,4.1920,3.546;4.name
> ,11.172.16.1.75;4.size,2.-1,2.11,2.16;3.img,1.3,2.12,2.-1,9.image/png,1.0,1.0;4.blob,1.3,232.iVBORw0KGgoAAAANSUhEUgAAAAsAAAAQCAYAAADAvYV+AAAABmJLR0QA/wD/AP+gvaeTAAAAYklEQVQokY2RQQ4AIQgDW+L/v9y9qCEsIJ4QZggoJAnDYwAwFQwASI4EO8FEMH95CRYTnfCDOyGFK6GEM6GFo7AqKI4sSSsCJH1X+roFkKdjueABX/On77lz2uGtr6pj9okfTeJQAYVaxnMAAAAASUVORK5CYII=;3.end,1.3;6.cursor,1.0,1.0,2.-1,1.0,1.0,2.11,2.16;
*In IE I get the following stream :- *
>
> "10.filesystem,1.0,12.Shared Drive;4.size,1.0,4.1920,3.516;4.name
> ,11.172.16.1.75;4.size,2.-1,2.11,2.16;3.img,1.3,2.12,2.-1,9.image/png,1.0,1.0;4.blob,1.3,232.iVBORw0KGgoAAAANSUhEUgAAAAsAAAAQCAYAAADAvYV+AAAABmJLR0QA/wD/AP+gvaeTAAAAYklEQVQokY2RQQ4AIQgDW+L/v9y9qCEsIJ4QZggoJAnDYwAwFQwASI4EO8FEMH95CRYTnfCDOyGFK6GEM6GFo7AqKI4sSSsCJH1X+roFkKdjueABX/On77lz2uGtr6pj9okfTeJQAYVaxnMAAAAASUVORK5CYII=;3.end,1.3;6.cursor,1.0,1.0,2.-1,1.0,1.0,2.11,2.16;"
Why there is *no audio* coming from the back end in IE ?
Does the back end code depends on the browser ?
Where I could possible look to resolve this issue?
I looked the guacamole-common code where context == null is set.
I want the ArrayBuffer of audio stream so that I can send it to Flash to
play sound.
reader.ondata = function playReceivedAudio(data) {
> * // NO DATA is coming* even if I handle the following code :-
> }
I have handled it to get the stream and mimetype and send ACK "OK" but it
never reaches here in IE as no audio in message stream. No audio handler is
there.
if (!audioPlayer)
> audioPlayer = Guacamole.AudioPlayer.getInstance(stream,
> mimetype);
> // If we have successfully retrieved an audio player, send
> success response
> if (audioPlayer) {
> audioPlayers[stream_index] = audioPlayer;
> guac_client.sendAck(stream_index, "OK", 0x0000);
> }
Please help me out to resolve the above issue or guide me where to scratch.
Thanks and Regards,
Amarjeet Singh