Audio Stream distorted when passing audio streams to/from mac andpc

Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default Audio Stream distorted when passing audio streams to/from mac andpc

    We are having the oddest problem. We have a video conference room of
    sorts, where a main moderator has video/audio to all other users. All
    other users can press a button and use an audio stream to talk with the
    moderator and others. This works perfectly when using pc to pc. But if
    we have the moderator as a mac, or users as macs, the audio stream
    becomes distorted when recieved by the mac.

    It sounds as if the sample rate is being changed on the mac to a lower
    sample rate (as if "satan" is talking back to you).

    Has anyone every encountered this?

    We are using FCS 1.5, Flash 8, no components, just a normal netstream
    publish.

    So:
    PC to PC = fine
    Mac to PC = the devil
    PC to Mac = the devil

    Thanks,

    BackBayChef
    [url]www.how2dance.com[/url]
    [url]www.cultureshocked.net[/url]
    BackBayChef Guest

  2. Similar Questions and Discussions

    1. Mix audio streams?
      I am building a live video/audio interview application. Is it possible to record from stream1 video + audio and mix it with the audio from stream2?
    2. Problems Recording Audio Streams
      Hello, I have a simple app that records audio from the user's microphone. The problem I am having is inconsistency with the recording and...
    3. Audio mxing streams in flash
      How do I mix audio streams in my flash audio recorder ? Basically if I have a some instrument on one stream , I want to add voice to it through my...
    4. Sync of Recording Audio with an Audio Stream
      Hello, I badly need advice/ views/pointers to information on how one can record through the MIC and maintain syncronization with another file...
    5. Audio streams, but no video on FMS2
      We just installed Flash Media Server 2 over our Flash Communication Server 1.5. We built files for Flash Comm Server and are using bwcheck to send...
  3. #2

    Default Re: Audio Stream distorted when passing audio streamsto/from mac and pc

    Macs have a problem with the default audio rate, 8 I believe. Use setRate() on
    the microphone to change the rate. Just bump it to 11 for example. You'll use
    a little more bandwidth but will have better audio quality and no distortion on
    the macs.

    cmowers Guest

  4. #3

    Default Re: Audio Stream distorted when passing audio streams to/from macand pc

    cmowers wrote:
    > Macs have a problem with the default audio rate, 8 I believe. Use setRate() on
    > the microphone to change the rate. Just bump it to 11 for example. You'll use
    > a little more bandwidth but will have better audio quality and no distortion on
    > the macs.
    >
    would this account for why their stream comes in sounding weird when
    they are on a pc sending audio to the mac? I mean wouldn't their audio
    sound normal then?

    Thanks again,

    BackBayChef
    [url]www.how2dance.com[/url]
    [url]www.cultureshocked.net[/url]
    BackBayChef Guest

  5. #4

    Default Re: Audio Stream distorted when passing audio streamsto/from mac and pc

    This is a known bug in Flash Player 8 on the mac. cmowers is correct, use setRate(5) or setRate(11) and that should clear things up.

    Cheers,
    FlashTastic
    FlashTastic Guest

  6. #5

    Default Re: Audio Stream distorted when passing audio streamsto/from mac and pc

    Hi there, I've been having exactly the same problem. The only problem now....
    How do I implement your solution? Where do I change the setRate() for
    the microphone? Is it in a component? I'm new to this!
    Thanks... Ronnie

    Ronnie Johnston Guest

  7. #6

    Default Re: Audio Stream distorted when passing audio streamsto/from mac and pc

    Are you having exactly the same problem?
    >>using FCS 1.5, Flash 8, no components, just a normal netstream
    >>publish.
    Normally, when creating a communications app without using components, you'd
    have some lines of code to set up the microphone, camera, etc. and that's where
    you'd implement this solution.

    //get the microphone
    var user_mic:Microphone = Microphone.get()
    //set the audio transmission to 11khz
    user_mic.setRate(11)



    Cheers,
    FlashTastic


    FlashTastic Guest

  8. #7

    Default Re: Audio Stream distorted when passing audio streamsto/from mac and pc

    Thanks for that, You're right! Slightly different scenario. Flash media
    server2, and a video chat app using components, but the results between PC's
    and macs exactly as described. Since I posted, a friend has fixed the app
    although I don't know how he did it. Thanks for you help.

    Ronnie

    Ronnie Johnston Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139