saving stream as mp3 not flv

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

  1. #1

    Default saving stream as mp3 not flv

    Hi All,

    I'm building a simple record app that will record a sound from a user and
    let it avaliable to other users in the server.

    I'm using this code to save a stream:

    myNC = new NetConnection();
    myNC.connect("RTMP://xxx.xx.xx.xx/rodrigo")

    out_ns = new NetStream(myNC);
    out_ns.onStatus = function(info){
    for(var prop in info) {
    trace("netstream :"+prop +":"+info[prop]);
    }
    }

    nome = _root.nomeUser.text;

    out_ns.attachAudio(mic);
    out_ns.publish("/rodrigoi/"+nome, "record");


    It works, but it saves the file as an FLV not MP3, I want to know if it's
    possible do that using only flash com 1.5. I guess that the file is saved as
    flv by default.


    thanks,
    rodrigo.

    --
    Rodrigo Augusto Guerra
    Alumni e-Learning Team
    [email]rodrigo@alumni.org.br[/email]
    (11) 5644-9792
    [url]www.alumni.org.br[/url]

    Antes de imprimir, pense em sua responsabilidade e compromisso com o MEIO
    AMBIENTE!

    O conteúdo dessa mensagem é exclusivo a seus destinatários e pode conter
    informações confidenciais protegidas por sigilo profissional ou cuja
    divulgação seja proibida por lei. Caso essa mensagem lhe tenha sido enviada
    por engano, notifique o remetente e descarte a mensagem.

    The content of this message is confidential and is intended only for the use
    of the individual or entity to which it is addressed. If you are not the
    intended recipient of this message, please do not disseminate, distribute or
    copy this communication or its attachments by e-mail or otherwise. Instead,
    please notify us immediately and delete it from your computer.


    Rodrigo Guerra Guest

  2. Similar Questions and Discussions

    1. Handling Object Stream / Cross Ref stream in PDF 1.4
      Hi, My PDF Application handles only PDF spec 1.4 and when my Application process a PDF file generated with Acrobat ~ PDF 1.6, I see some Cross...
    2. How to Stream FLV with FMS
      Hello! Have installed FMS 2.0 on windows. I now want to load some flv files that I want to stream via rtmp:// How do I go about doing this? Where...
    3. can stream LIVE, but can't stream FLV -=
      Hi there. Pulling out my hair...and i'm bald enough already! I built a FLA that streams live from the FME - works great. Cannot for the life...
    4. How to stream an mp3 ?
      Hi, I'm a Flash beginner. I've an mp3 file and I would like to incorporate it in an html page in DreamWaver as a streaming sound. What should I do...
    5. Saving Images While Saving ASP Pages !
      Dear Friends Hope you all doing great. I have this problem. When I try to save any ASP page, I get the message that "The page will not save...
  3. #2

    Default Re: saving stream as mp3 not flv

    Yes, FMS only saves files as FLV unfortunately.
    Graeme Bull 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