Hi there,
I am trying to play some audio files I created for a tour. 20 - 40 second sound bytes.
Here is the simple script I'm using.
llParcelMediaCommandList([
PARCEL_MEDIA_COMMAND_TYPE, "audio/mpeg",
PARCEL_MEDIA_COMMAND_AGENT, llDetectedKey(0),
PARCEL_MEDIA_COMMAND_URL, "http://blah/blah.mp3",
PARCEL_MEDIA_COMMAND_PLAY]);
Which works just fine. It has been suggested that streaming the audio would be a better approach than downloading. Our IT folks have provided me with urls for streaming and downloading. But if I try:
llParcelMediaCommandList([
PARCEL_MEDIA_COMMAND_TYPE, "audio/mpeg",
PARCEL_MEDIA_COMMAND_AGENT, llDetectedKey(0),
PARCEL_MEDIA_COMMAND_URL, "rtsp://blah/blah.mp3",
PARCEL_MEDIA_COMMAND_PLAY]);
it doesn't seem to play.
Any thoughts? Is streaming better for this application?
Thanks,
Doug